MongoDb for insertion and search using elastic search
Run tests
Run locally
Useful Links
Swagger UI: http://localhost:8080/swagger-ui.html
Actuator Endpoint: http://localhost:8080/actuator
Prometheus: http://localhost:9090/
Grafana: http://localhost:3000/ (admin/admin)
Kibana: http://localhost:5601/app/kibana#/dev_tools/console?_g=()
Elasticsearch : http://localhost:9200/
MongoExpress : http://localhost:8081
Mongodb Notes
Transactions with ReactiveMongoTransactionManager
Elastic Search Notes
UseFull ElasticSearch Commands
Count http://localhost:9200/restaurant/_count
Search http://localhost:9200/restaurant/_search
Mapping http://localhost:9200/restaurant/_mapping
Reference
https://medium.com/geekculture/elastic-search-queries-hands-on-examples-fe5b2bc10c0e
Exceptions & Resolutions
When using reactive elasticeSearch is we get below issue like raiseLimitException then solution should be to raise the memory using property
To fix this set spring.elasticsearch.webclient.max-in-memory-size=-1
for unlimited memory
Last updated