mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-04-24 18:59:34 +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
|
||
|
)
|