Fork me on GitHub
#xtdb
<
2021-02-22
>
tobias13:02:16

If I use rocksdb for all 3 of index-store, document-store, and tx-log, is it prudent to use separate instances of rocks db for each of those? It seems that way it would be easier to rebuild the indices if needed or to swap out rocksdb for an alternative in the future.

Steven Deobald15:02:42

@jtlocsei Yes, exactly. It's always advisable to use 3 separate instances. This is another good question we can answer with the upcoming simplest-possible-config doc. 🙂 Thanks for highlighting it again.

âž• 6
tobias22:02:23

Great, thank you. And if I want to rebuild the indices, is it as simple as shutting down the node, deleting the contents of the directory that held the rocksdb indices, and starting the node again?