I learned and understood that Elasticsearch, Apache Solr and Hibernate Search are based on the Apache Lucene library. They provide fast full-text search and all of them either use JPA annotations, implement the JPA and/or define custom annotations. They are mostly used in addition to RDBMS/NoSQL data storage. The indexed and searchable data is present in the form of documents.
I am totally okay that someone poses the question Solr vs Hibernate Search - Which to choose and When? or even 'Elasticsearch vs Solr' or 'Elasticsearch vs Hibernate Search' But then there is this Hibernate Search/Elasticsearch connector as an approach to use Hibernate Search and Elasticsearch alongside or this post asking "How to integrate Hibernate and Solr together?" with the answer how to integrate Hibernate Search and Solr together, which for me is something different, right?
Assuming the above summary is correct and given the linked posts confused me: Why do people consider to or do use Elasticsearch or Solr in addition to Hibernate Search? Isn't this redundant? Or does Hibernate Search provide any interface for Solr/Elasticsearch which Hibernate ORM does not and thus is only used as some sort of adapter?