seaweedfs/weed/storage/erasure_coding/ec_encoder.go

9 lines
215 B
Go
Raw Normal View History

2019-05-15 16:02:00 +08:00
package erasure_coding
const (
DataShardsCount = 10
ParityShardsCount = 4
ErasureCodingLargeBlockSize = 1024 * 1024 * 1024 // 1GB
ErasureCodingSmallBlockSize = 1024 * 1024 // 1MB
)