seaweedfs/weed/storage/erasure_coding/ec_encoder.go
2019-05-15 01:02:00 -07:00

9 lines
215 B
Go

package erasure_coding
const (
DataShardsCount = 10
ParityShardsCount = 4
ErasureCodingLargeBlockSize = 1024 * 1024 * 1024 // 1GB
ErasureCodingSmallBlockSize = 1024 * 1024 // 1MB
)