elasticsearch/docs/plugins/filesystem.asciidoc
Rory Hunter 2bf2d649f1
Introduce quota-aware filesystem ES plugin (#63620)
Closes #61145.

This PR adds a quota-aware filesystem plugin to Elasticsearch. This plugin
offers a way to provide user quota limits (specifically, total quota size
and available quota size) to Elasticsearch, in an implementation-agnostic
manner.

As part of this work, this PR also introduces the concept of "bootstrap
only" plugins, which are excluded from the normal plugin loading process.

Finally, note that this implementation supports `createLink(...)`, since ES
/ Lucene use hard links where possible.
2020-10-28 19:57:54 +00:00

16 lines
395 B
Text

[[filesystem]]
== Filesystem Plugins
Filesystem plugins modify how {es} interacts with the host filesystem.
[discrete]
=== Core filesystem plugins
The core filesystem plugins are:
<<quota-aware-fs,Quota-aware Filesystem>>::
The Quota-aware Filesystem plugin adds an interface for telling Elasticsearch the disk-quota limits under which it is operating.
include::quota-aware-fs.asciidoc[]