Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
main
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
JIHONG MIN
main
Commits
70fe14b0
Commit
70fe14b0
authored
2 weeks ago
by
TYLER CARAZA-HARTER
Browse files
Options
Downloads
Patches
Plain Diff
clarify test inputs
parent
48e40712
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
p3/README.md
+6
-4
6 additions, 4 deletions
p3/README.md
with
6 additions
and
4 deletions
p3/README.md
+
6
−
4
View file @
70fe14b0
...
...
@@ -15,7 +15,7 @@ Learning objectives:
*
Implement logic for uploading and processing CSV and Parquet files
*
Perform computations like summing values from specific columns
*
Manage concurrency with locking in a multi-threaded server
n
Before starting, please review the
[
general project directions
](
../projects.md
)
.
## Clarifications/Corrections
...
...
@@ -101,9 +101,11 @@ docker run --name=server -d -m 512m -p 127.0.0.1:5440:5440 -v ./inputs:/inputs p
docker exec server python3 upload.py /inputs/test1.csv # client
```
Note that we are using a volume mount to share make input data visible
inside your container so that we can
`exec`
clients inside your
container with that data.
Note that you don't need to have an
`inputs/test1.csv`
file, as the
autograder will populate your inputs directory with that or whatever
other test inputs are needed. As you can also see, we're using a
volume mount to make the input directory visible inside your container
so that we can
`exec`
clients inside your container with that data.
You may also wish to use volume mounts to speed up your development
process. For example, if you volume mount your server code (on your
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment