noqqe » blog | sammelsurium | photos | projects | about

Elasticsearch

2016-03-02 @ elasticsearch, Software

Cluster

  • Cluster bauen findet über Multicast im Netz statt (furchtbar)
  • Man kann unicast statt multicast benutzen.
  • master wird gewählt

Informationen eines CLUSTERS anzeigen

curl -XGET 'http://localhost:9200/_cluster/health?pretty=true'

Informationen eines HOST anzeigen

curl localhost:9200/_nodes/stats/process?pretty

Alle Indices anzeigen

curl localhost:9200/_aliases

Einen Index löschen

http --auth elastic:xxx DELETE 'http://localhost:9200/beat-2017.08.19'