-
Notifications
You must be signed in to change notification settings - Fork 305
New issue
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
io.objectbox.exception.FileCorruptException: Corrupt DB, min key size violated: 0 #1143
Comments
That's a little problematic to work with because the stacktrace doesn't help us in this case. If you see some way to reproduce, please let us know. Otherwise, a next upcoming version will provide validation for this error type, which might be helpful. Edit: See also related #1090. |
i get this error also,in my case ,i found another problem,some data can't been query by isNull, after that i get this error in bugly |
here is the stackTrace,user already unistall the app,so i can't provide more infomation for this io.objectbox.exception.FileCorruptException Corrupt DB, min key size violated: 0 io.objectbox.query.Query.nativeFind(Native Method) |
We have released version A new key/value validation option This can be used if the above exception is thrown to re-open the store with additional validation to get more details:
|
FileCorruptException: io.objectbox.exception.FileCorruptException: KV validation failed; key is empty (KV pair number: 40753, key size: 0, data size: 3145) |
@linge123 Thanks for this! If possible, can you send use the corrupted database file? (We have some example code on how to ask users to do this for a production app.) Also to everyone, would it be helpful if ObjectBox included a repair mode that would delete corrupted keys and values (basically affected objects)? |
Add a repair mode, that would be great。 The database contains user private information, which is best not to do so |
how many data when crash happens ? i guess it may assosiate with data size , in my case it was about 50W data in one table |
hello in my app always
Basic info (please complete the following information):
ObjectBox version : :3.5.1
Reproducibility: occurred once only
Devices: android
init boxStore code:
BoxStoreBuilder storeBuilder = MyObjectBox.builder()
.validateOnOpen(ValidateOnOpenMode.WithLeaves) // Additional DB page validation
.validateOnOpenPageLimit(20)
.androidContext(context.getApplicationContext())
queryData code:
getBox().query().equal(Db_.userId, "4229047", QueryBuilder.StringOrder.CASE_INSENSITIVE).build().find();
Logs, stack traces:
io.objectbox.exception.FileCorruptException: Corrupt DB, min key size violated: 0
at io.objectbox.query.Query.nativeFind(Native Method)
at io.objectbox.query.Query.lambda$find$2$io-objectbox-query-Query(Query.java:252)
at io.objectbox.query.Query$$ExternalSyntheticLambda4.call(Unknown Source:2)
at io.objectbox.BoxStore.callInReadTx(BoxStore.java:940)
at io.objectbox.BoxStore.callInReadTxWithRetry(BoxStore.java:886)
at io.objectbox.query.Query.callInReadTx(Query.java:368)
at io.objectbox.query.Query.find(Query.java:251)
The text was updated successfully, but these errors were encountered: