Elasticsearch: Difference between revisions

From DWIKI
(2 intermediate revisions by the same user not shown)
Line 19: Line 19:
*Old GC is processed quickly (within 1 second).
*Old GC is processed quickly (within 1 second).
*Old GC is not frequently executed (once per 10 minutes or more).
*Old GC is not frequently executed (once per 10 minutes or more).
=HOWTO=
==Adjust log rotation==
Is done in '''/etc/elasticsearch/log4j.properties'''
===Number of logfiles to keep===
appender.rolling.strategy.max


=Monitoring elasticsearch=
=Monitoring elasticsearch=
Line 52: Line 59:
==Percolation==
==Percolation==
https://spinscale.de/posts/2021-09-15-understanding-elasticsearch-percolate-query.html
https://spinscale.de/posts/2021-09-15-understanding-elasticsearch-percolate-query.html
==now throttling indexing for shard: segment writing can't keep up==
*[https://opster.com/analysis/elasticsearch-now-throttling-indexing-for-shard-segment-writing-can-t-keep-up/ one doc about this]


=FAQ=
=FAQ=
Line 61: Line 72:
  /usr/share/elasticsearch/bin/elasticsearch-plugin remove ingest-attachment
  /usr/share/elasticsearch/bin/elasticsearch-plugin remove ingest-attachment
  /usr/share/elasticsearch/bin/elasticsearch-plugin install ingest-attachment
  /usr/share/elasticsearch/bin/elasticsearch-plugin install ingest-attachment
==Get version of active elasticsearch==
wget -q -O - http://localhost:9200/_cluster/stats

Revision as of 14:59, 1 March 2024

Links

Documentation

Configuration

Heap

Garbage collection

Ideally:

  • Young GC is processed quickly (within 50 ms).
  • Young GC is not frequently executed (about 10 seconds).
  • Old GC is processed quickly (within 1 second).
  • Old GC is not frequently executed (once per 10 minutes or more).

HOWTO

Adjust log rotation

Is done in /etc/elasticsearch/log4j.properties

Number of logfiles to keep

appender.rolling.strategy.max 

Monitoring elasticsearch

Things to monitor

heap size

  • node jvm.mem.heap_used_percent

garbage collection

Something like

node.jvm.uptime_in_millis/node.jvm.gc.collectors.young.collection_count

Query the web interface

Installing Elasticsearch

On Debian

deb https://artifacts.elastic.co/packages/oss-6.x/apt stable main

packages is called elasticsearch-oss now?

Terminology

shards

"blocks" of index data distributed over the nodes

Percolation

https://spinscale.de/posts/2021-09-15-understanding-elasticsearch-percolate-query.html


now throttling indexing for shard: segment writing can't keep up

FAQ

Status is yellow

and look for unassigned shards

Update ingest-attachment

/usr/share/elasticsearch/bin/elasticsearch-plugin remove ingest-attachment
/usr/share/elasticsearch/bin/elasticsearch-plugin install ingest-attachment


Get version of active elasticsearch

wget -q -O - http://localhost:9200/_cluster/stats