Skip to content

Commit

Permalink
Set default chunk size to 500MB
Browse files Browse the repository at this point in the history
  • Loading branch information
Guy Coates committed Nov 14, 2014
1 parent d88e6c4 commit 1f488e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pcp has a number of useful options; use pcp -h to see a description.
Chunking
--------

pcp will split files up into 100MB chunks, which can then be copied in
pcp will split files up into 500MB chunks, which can then be copied in
parallel. Files smaller than the chunk size will be copied in one go. You can
alter the chunk size with the -b flag. The size is in megabytes. For optimal
performance the chunk size should be a whole multiple of the lustre stripe size
Expand Down
2 changes: 1 addition & 1 deletion pcp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ machines as possible to prevent local network bottlenecks.

parser.add_argument("-b",
help="Copy files larger than C Mbytes in C Mbyte chunks",
default=50, type=int, metavar="C")
default=500, type=int, metavar="C")

parser.add_argument("-c", help="verify copy with checksum", default=False,
action="store_true")
Expand Down

0 comments on commit 1f488e9

Please sign in to comment.