1 | #
|
---|
2 | # Note: These options are applied when the journal and the triple store are
|
---|
3 | # first created.
|
---|
4 |
|
---|
5 | ##
|
---|
6 | ## Journal options.
|
---|
7 | ##
|
---|
8 |
|
---|
9 | # The backing file.
|
---|
10 | com.bigdata.journal.AbstractJournal.file=/data2/bigdata.jnl
|
---|
11 |
|
---|
12 | # The persistence engine. Use 'Disk' for the WORM or 'DiskRW' for the RWStore.
|
---|
13 | com.bigdata.journal.AbstractJournal.bufferMode=DiskRW
|
---|
14 |
|
---|
15 | com.bigdata.btree.writeRetentionQueue.capacity=4000
|
---|
16 | com.bigdata.btree.BTree.branchingFactor=128
|
---|
17 |
|
---|
18 | # Bump up the branching factor for the statement indices on the default kb.
|
---|
19 | com.bigdata.namespace.kb.spo.com.bigdata.btree.BTree.branchingFactor=400
|
---|
20 | # Bump up the branching factor for the lexicon indices on the default kb.
|
---|
21 | com.bigdata.namespace.kb.lex.com.bigdata.btree.BTree.branchingFactor=1024
|
---|
22 |
|
---|
23 | # 200M initial extent.
|
---|
24 | com.bigdata.journal.AbstractJournal.initialExtent=209715200
|
---|
25 | com.bigdata.journal.AbstractJournal.maximumExtent=209715200
|
---|
26 |
|
---|
27 | ##
|
---|
28 | ## Setup for QUADS mode without the full text index.
|
---|
29 | ##
|
---|
30 | com.bigdata.rdf.sail.truthMaintenance=false
|
---|
31 | com.bigdata.rdf.store.AbstractTripleStore.quads=false
|
---|
32 | com.bigdata.rdf.store.AbstractTripleStore.statementIdentifiers=false
|
---|
33 | com.bigdata.rdf.store.AbstractTripleStore.textIndex=false
|
---|
34 | com.bigdata.rdf.store.AbstractTripleStore.axiomsClass=com.bigdata.rdf.axioms.NoAxioms
|
---|
35 | #com.bigdata.rdf.store.AbstractTripleStore.inlineDateTimes=true
|
---|
36 |
|
---|
37 | com.bigdata.rdf.sail.BigdataSail.bufferCapacity=100000
|
---|
38 | com.bigdata.btree.BTree.branchingFactor=256
|
---|
39 | com.bigdata.rdf.store.AbstractTripleStore.bloomFilter=false
|
---|
40 | com.bigdata.rdf.store.AbstractTripleStore.termidBitsToReverse=0
|
---|
41 | com.bigdata.rdf.store.AbstractTripleStore.quads=false
|
---|
42 | com.bigdata.rdf.store.AbstractTripleStore.forceOnCommit=no
|
---|
43 | com.bigdata.rdf.store.AbstractTripleStore.vocabularyClass=com.bigdata.rdf.vocab.NoVocabulary
|
---|