opensearch

Open source distributed and RESTful search engine

brewmacoslinux
Try with needOr install directly
Source

About

Open source distributed and RESTful search engine

Commands

opensearch

Examples

Start the OpenSearch server with default configuration$ opensearch
Query OpenSearch cluster health status via REST API$ curl -X GET 'http://localhost:9200/_cluster/health?pretty'
Create and index a document in OpenSearch$ curl -X POST 'http://localhost:9200/my-index/_doc' -H 'Content-Type: application/json' -d '{"name":"example"}'