thanks for reporting, I think this might be already fixed in trunk relating to HSEARCH-480
could you verify?
Quote:
What's odd is that the process I'm running is inserting (not deleting) records, and from this stack trace it appears that Search is trying to remove entities from the index
I guess the entities you're inserting are having @IndexedEmbedded or @ContainedIn, which as of latest hibernate versions does generate "update collections" events even before the entity is persist, so in that case the identifier is still null and the update operation is mapped to "
delete and insert".