You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
215 B

  1. package erasure_coding
  2. const (
  3. DataShardsCount = 10
  4. ParityShardsCount = 4
  5. ErasureCodingLargeBlockSize = 1024 * 1024 * 1024 // 1GB
  6. ErasureCodingSmallBlockSize = 1024 * 1024 // 1MB
  7. )