Diese Seite ist in Ihrer lokalen Sprache noch nicht verfügbar. Wir arbeiten daran, weitere Sprachversionen hinzuzufügen. Vielen Dank für Ihre Unterstützung.

On this page

Show all

Help Center/ Cloud Search Service/ FAQs/ Using CSS Cluster Search Engines/ How Do I Clear Elasticsearch Cache in CSS?

How Do I Clear Elasticsearch Cache in CSS?

Updated on 2024-12-02 GMT+08:00
  • Clear the fielddata

    During aggregation and sorting, data are converted to the fielddata structure, which occupies a large amount of memory.

    1. Run the following command on Kibana to query the fielddata cache status:
      GET /_cat/nodes?v&h=name,fielddataMemory
    2. If the memory usage of fielddata is too high, you can run the following command to clear the fielddata cache of a specified index or all indexes:
      POST /test/_cache/clear?fielddata=true

      In the preceding command, test indicates the name of the index whose fielddata occupies a large amount of memory.

      POST /_cache/clear?fielddata=true
  • Clear segments

    The FST structure of each segment is loaded to the memory and will not be cleared. If the number of index segments is too large, the memory usage will be high. You are advised to periodically clear the segments.

    1. Run the following command on Kibana to check the number of segments and their memory usage on each node:
      GET /_cat/nodes?v&h=segments.count,segments.memory&s=segments.memory:desc
    2. If the memory usage of segments is too high, you can delete or disable unnecessary indexes, or periodically combine indexes that are not updated.
  • Clear the cache

    Run the following command on Kibana to clear the cache:

    POST /_cache/clear
Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback