LMDB Store and syncing to disk #5056
Unanswered
hmottestad
asked this question in
Q&A
Replies: 1 comment 2 replies
-
It always uses MDB_NOSYNC if force sync is not activated in the configuration. Maybe we should change this as it might be unsafe for production environments. @hmottestad Have you noticed performance issues with the LMDB store? One issue might be that I've separated the values and the triple store into two LMDB databases. If the RAM starts getting füll and the memory pressure grows then it might be the case that both databases influence each other by forcing the OS to swap pages. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Does the LMDB Store use MDB_NOSYNC for transactions with NONE as isolation level?
If not then maybe this can be used to improve performance for bulk loading data.
Beta Was this translation helpful? Give feedback.
All reactions