What are zombie objects #345
Replies: 8 comments
-
The expression “Zombi-Object-ID” was coined some years ago for object ids that belonged to objects deleted from the storage files but still being referenced from another object in the storage files. This state was caused by a fixed error in the storage garbage collector that could cause a corrupted storage target. |
Beta Was this translation helpful? Give feedback.
-
Hm, I see.
|
Beta Was this translation helpful? Give feedback.
-
EclipseStore has a predecessor project: Microstream.
Yes, there should be an |
Beta Was this translation helpful? Give feedback.
-
I know, but we've never used that :)
Ah, I assumed it automatically did that. Due to the fact we use H2, this is already guaranteed for us. But we had a short timeframe in which we did not use H2 ... maybe it happened during that time. |
Beta Was this translation helpful? Give feedback.
-
So, is there any way to get rid of the zombie objects now or is the database a lost cause? Because this actually causes follow-up issues. |
Beta Was this translation helpful? Give feedback.
-
Without more details it’s hard to say if there is a chance to repair the storage, but most likely it’s broken. |
Beta Was this translation helpful? Give feedback.
-
Yeah, restarting made no difference. It's just one object, given it is always the same ID. It doesn't really contain anything critical and it happened on an internal database. I am just afraid it might happen for a customer 😓 |
Beta Was this translation helpful? Give feedback.
-
Zombie object references mean an object cannot be found in the storage. This can only happen if data is lost at the storage level. A file/blob has been deleted, or multiple processes have accessed the storage. This scenario can be prevented by ensuring that only one application has concurrent access to the underlying storage. One tool that helps to ensure this is Lock Files. If a critical storage needs repairing, this is a case for professional support. Please reach out to [email protected] |
Beta Was this translation helpful? Give feedback.
-
Hey
I have recently encountered a bug reported, where object IDs couldn't be found in the store.
The very same object IDs were however constantly being reported as Zombie objects in the commandline.
So I have some questions:
Maybe it would be nice to have a section in the official readme, if this is something that can be avoided by the user.
Beta Was this translation helpful? Give feedback.
All reactions