We are using jdbc batching and I noticed the bottleneck was these queries which were executed too often: select nextval ('hsearch_outbox_event_generator') Then I’ve looked a bit in the code and found this entity mapping: in org.hibernate.search.mapper.orm.coordination.outboxpolling.event.impl.OutboxPollingOutboxEventAdditionalJaxbMappingProducer
In order to make less calls we can increase the following value: {{ <param name=\"increment_size\">1</param>\n"}} Is it possible to make this configurable? Thx in advance, Yasin |