Merge pull request #6474 from filecoin-project/feat/splitstore-redux

Splitstore Enhanchements
This commit is contained in:
Łukasz Magiera
2021-07-13 12:43:57 +02:00
committed by GitHub
20 changed files with 2034 additions and 1107 deletions
+6 -7
View File
@@ -230,12 +230,9 @@ type Chainstore struct {
}
type Splitstore struct {
HotStoreType string
TrackingStoreType string
MarkSetType string
EnableFullCompaction bool
EnableGC bool // EXPERIMENTAL
Archival bool
ColdStoreType string
HotStoreType string
MarkSetType string
}
// // Full Node
@@ -306,7 +303,9 @@ func DefaultFullNode() *FullNode {
Chainstore: Chainstore{
EnableSplitstore: false,
Splitstore: Splitstore{
HotStoreType: "badger",
ColdStoreType: "universal",
HotStoreType: "badger",
MarkSetType: "map",
},
},
}