Description
It would be great to be able to use Hibernate Search without a datasource but just to index data to Elasticsearch.
I'm persisting my entities to DynamoDB and I need to index them to Elasticsearch/Opensearch.
Right now I can't use Hibernate Search because it requires a datasource to persist entities before indexing them.
I could use an in-memory datasource like H2 and forget about it on shutdown (we are using AWS Lambda) but as we use Quarkus to improve our memory footprint it's really not the best approach :-/
Implementation ideas
No response