mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-12-12 00:19:14 +08:00
9 lines
215 B
Go
9 lines
215 B
Go
|
package erasure_coding
|
||
|
|
||
|
const (
|
||
|
DataShardsCount = 10
|
||
|
ParityShardsCount = 4
|
||
|
ErasureCodingLargeBlockSize = 1024 * 1024 * 1024 // 1GB
|
||
|
ErasureCodingSmallBlockSize = 1024 * 1024 // 1MB
|
||
|
)
|