-
Notifications
You must be signed in to change notification settings - Fork 2.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement ElasticSearch module #4316
Comments
You read my mind, yesterday I was read a great post on ElasticSearch |
FYI this is a good article https://khalidabuhakmeh.com/search-experiences-for-your-aspnet-core-apps-with-elasticsearch |
Hi! I work for Elastic feel to to |
@Mpdreamz if you are interested you could start in the PR for this module |
The ElasticSearch module should leverage Nest for Queries. We have now Lucene Queries which uses the Lucene Query API but ElasticSearc has already this done with Nest. So we should end up with ElasticSearch Queries that should be quite the same than Lucene Queries with some small differences here and there since Nest for example can use Exists Queries. |
I think we need to first make a service to retrieve different Indexing Providers. And I think we should be able to still use Lucene and/or ElasticSearch at the same time. |
@Mpdreamz thanks for proposing to help us! |
+1 for this feature. 👏 |
Is there an interface(s) I can implement to integrate Elasticsearch ? |
@mickdelaney no special interface, just copy paste the lucene module and adapt to use elasticsearch instead. |
@sebastienros @jtkech @deanmarcussen @hishamco We have implemented ElasticSearch (Basics in place), Index(Create, Delete, Rebuild), Indexing and Query using DSL. There are couple of observations, though
Please guide how to proceed on this. The implementation is very basic/raw but does what is intended. |
@Sen-Gupta Cool ! @Skrypt is better placed to give you some feedbacks, as he is the Lucene expert Anyway, feel free to open a PR with your suggested code |
Well, first thing is to have a branch or PR to work with. Then, we can make the changes in that branch if needed. |
@Sen-Gupta is there a public repo to try out the elastic search module ? |
@giannik This should be pushed potentially tomorrow! Been stuck on another Solr Search Implementations! |
The PR can be seen here #9108 |
Can u make a tutorial for a step by step how to enable elastic search for orcahrd core? I am not able to enable elastic search UI on my admin interface |
Same as Lucene
The text was updated successfully, but these errors were encountered: