Skip to content

Commit

Permalink
Merge 23899db into a08b40f
Browse files Browse the repository at this point in the history
  • Loading branch information
marcocitus committed Apr 7, 2016
2 parents a08b40f + 23899db commit 9866619
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/README.md
Expand Up @@ -158,7 +158,7 @@ For example, we could split an input file (`input.csv`) into chunks and load eac
```
mkdir chunks
split -nl/64 input.csv chunks/
ls chunks | xargs -t -n1 -P64 -I% copy_to_distributed_table -C % users
find chunks -type f | xargs -t -n1 -P64 -I% copy_to_distributed_table -C % users
```

Note that the above example loads the contents of `input.csv` using 64 processes. The optimal value will vary depending on factors such as cluster size and hardware.
Expand Down

0 comments on commit 9866619

Please sign in to comment.