We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When my .db file reaches 512 MB, every update/insert query creates an SQL logic error.
.db
SQL logic error
The text was updated successfully, but these errors were encountered:
Hi!
This is the current default size limit for the db.
You can open the database with the max_db_size parameter, like this:
max_db_size
'file:data.db?branches=on&max_db_size=1073741824'
The size must be a multiple of the OS memory page size.
It is related to the LMDB's mdb_env_set_mapsize function
Sorry, something went wrong.
Just for documentation: since commit 8a9446 it will return database or disk is full instead
database or disk is full
No branches or pull requests
When my
.db
file reaches 512 MB, every update/insert query creates anSQL logic error
.The text was updated successfully, but these errors were encountered: