Skip to content

Commit ac514f3

Browse files
committed
remove blob storage config option
1 parent e01c435 commit ac514f3

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/main/scala/com/scalableminds/fossildb/db/RocksDBStore.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ class RocksDBManager(dataDir: Path, columnFamilies: List[String], optionsFilePat
2222
.setArenaBlockSize(4L * 1024 * 1024) // 4MB
2323
.setTargetFileSizeBase(1024L * 1024 * 1024) // 1GB
2424
.setMaxBytesForLevelBase(10L * 1024 * 1024 * 1024) // 10GB
25-
.setEnableBlobFiles(true)
26-
.setMinBlobSize(1024L * 1024) // 1MB
2725
val options = new DBOptions()
2826
val cfListRef: mutable.Buffer[ColumnFamilyDescriptor] = mutable.Buffer()
2927
optionsFilePathOpt.foreach { optionsFilePath =>

0 commit comments

Comments
 (0)