The ipfs add command has the following flag:
ipfs add
-s, --chunker string - Chunking algorithm to use.
What chunking algorithms are available?
The text was updated successfully, but these errors were encountered:
See here. The default is to use a block size of DefaultBlockSize int64 = 1024 * 256. Another block size can be specified using size-*. There's also the rabin-* chunker which uses rabin-[min]-[avg]-[max].
DefaultBlockSize int64 = 1024 * 256
size-*
rabin-*
rabin-[min]-[avg]-[max]
Sorry, something went wrong.
As far as I can tell, the Rabin chunker is a "Content Defined Chunker" to improve deduplication. See here.
ipfs add -s
This issue has been moved to https://discuss.ipfs.io/t/which-chunking-algorithms-are-available/363.
No branches or pull requests
JustinDrake commentedDec 22, 2016
The
ipfs addcommand has the following flag:What chunking algorithms are available?
The text was updated successfully, but these errors were encountered: