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
@Connor1996 It seems that fixing it or not does not affect the correctness of tikv/titan. O^O !
Filenumber/offset/length is encoded using varints. Due to the nature of varints, only when the value is 0 will the encoded byte contain 0. Due to the file header, filenumber/offset/length in titan cannot be 0. I encountered this error because I added something else in blobIndex in my version ~~
titan/src/compaction_filter.h
Line 73 in ecaa9ec
Slice(const char* s) will step foward util met '\0', it will broken the the blob index and DecodeFrom will be failed.
The text was updated successfully, but these errors were encountered: