You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I just test transfer large data from another database to objectbox, where each record has about 3000 fields.
When I have put about 40000 records into objectbox, and the file objectbox/data.mdb reach about 1GB size, then it refuse to put any more new object.
Throw obx::DbException with wath() message: Could not put.
And print Storage error(code -30792)
Basic info (please complete the following information):
ObjectBox version: latest version 0.18.0
C++11, gcc 4.8.5
OS: centos 7.9
The text was updated successfully, but these errors were encountered:
The 1 GB is a default, which can be changed via options. In C++ there's an Option class for that and in C there are obx_opt_*() functions. These options have to be prepared before opening the store.
greenrobot
changed the title
The database file seems has limit of 1G, then trow exception when try put more object
The database file seems to have a limit of 1G, thens throws an exception when trying to put more objects
Aug 23, 2023
Describe the bug
I just test transfer large data from another database to objectbox, where each record has about 3000 fields.
When I have put about 40000 records into objectbox, and the file
objectbox/data.mdb
reach about 1GB size, then it refuse to put any more new object.Throw
obx::DbException
with wath() message: Could not put.And print Storage error(code -30792)
Basic info (please complete the following information):
The text was updated successfully, but these errors were encountered: