Clear cache API

Clear cache API

New API reference

For the most up-to-date API details, refer to Searchable snapshots APIs.

This functionality is in technical preview and may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.

Clears indices and data streams from the shared cache for partially mounted indices.

Request

POST /_searchable_snapshots/cache/clear

POST /<target>/_searchable_snapshots/cache/clear

Prerequisites

If the Elasticsearch security features are enabled, you must have the manage cluster privilege to use this API. You must also have the manage index privileges for the target data stream, index, or alias.

Path parameters

<target>

(Optional, string) Comma-separated list of data streams, indices, and aliases to clear from the cache. Supports wildcards (*). To clear the entire cache, omit this parameter.

Examples

Clears the cache of the index my-index:

  1. resp = client.searchable_snapshots.clear_cache(
  2. index="my-index",
  3. )
  4. print(resp)
  1. response = client.searchable_snapshots.clear_cache(
  2. index: 'my-index'
  3. )
  4. puts response
  1. const response = await client.searchableSnapshots.clearCache({
  2. index: "my-index",
  3. });
  4. console.log(response);
  1. POST /my-index/_searchable_snapshots/cache/clear