logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

Search::Elasticsearch::Client::7_0::Direct - Thin client with full support for Elasticsearch 7.x APIs

Author

       Enrico Zimuel <enrico.zimuel@elastic.co>

Bulk Document Crud Methods

       The bulk document CRUD methods are used for running multiple CRUD actions within a  single  request.   By
       reducing the number of network requests that need to be made, bulk requests greatly improve performance.

   "bulk()"
           $response = $e->bulk(
               index   => 'index_name',        # required if type specified
               type    => 'type_name',         # optional

               body    => [ actions ]          # required
           );

       See  Search::Elasticsearch::Client::7_0::Bulk  and  "bulk_helper()"  for  a helper module that makes bulk
       indexing simpler to use.

       The "bulk()" method can perform multiple "index()", "create()", "delete()" or "update()" actions  with  a
       single request. The "body" parameter expects an array containing the list of actions to perform.

       An  action  consists  of  an  initial  metadata  hash ref containing the action type, plus the associated
       metadata, eg :

           { delete => { _index => 'index', _type => 'type', _id => 123 }}

       The "index" and "create" actions then expect a hashref containing the document itself:

           { create => { _index => 'index', _type => 'type', _id => 123 }},
           { title => "A newly created document" }

       And the "update" action expects a hashref containing the update commands, eg:

           { update => { _index => 'index', _type => 'type', _id => 123 }},
           { script => "ctx._source.counter+=1" }

       Each action can include the same parameters that you would pass to the equivalent "index()",  "create()",
       "delete()"  or  "update()"  request,  except  that "_index", "_type" and "_id" must be specified with the
       preceding underscore. All other parameters can be specified with or without the underscore.

       For instance:

           $response = $e->bulk(
               index   => 'index_name',        # default index name
               type    => 'type_name',         # default type name
               body    => [

                   # create action
                   { create => {
                       _index => 'not_the_default_index',
                       _type  => 'not_the_default_type',
                       _id    => 123
                   }},
                   { title => 'Foo' },

                   # index action
                   { index => { _id => 124 }},
                   { title => 'Foo' },

                   # delete action
                   { delete => { _id => 126 }},

                   # update action
                   { update => { _id => 126 }},
                   { script => "ctx._source.counter+1" }
               ]
           );

       Each action is performed separately. One failed action will not cause the others to fail as well.

       Query string parameters:
           "_source",
           "_source_excludes",
           "_source_includes",
           "error_trace",
           "fields",
           "human",
           "pipeline",
           "refresh",
           "routing",
           "timeout",
           "wait_for_active_shards"

       See the  bulk  docs  <http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-bulk.html>  for
       more information.

   "bulk_helper()"
           $bulk_helper = $e->bulk_helper( @args );

       Returns   a  new  instance  of  the  class  specified  in  the  "bulk_helper_class",  which  defaults  to
       Search::Elasticsearch::Client::7_0::Bulk.

   "mget()"
           $results = $e->mget(
               index   => 'default_index',     # optional, required when type specified
               type    => 'default_type',      # optional

               body    => { docs or ids }      # required
           );

       The "mget()" method will retrieve multiple documents with a single request.  The "body"  consists  of  an
       array of documents to retrieve:

           $results = $e->mget(
               index   => 'default_index',
               type    => 'default_type',
               body    => {
                   docs => [
                       { _id => 1},
                       { _id => 2, _type => 'not_the_default_type' }
                   ]
               }
           );

       You can also pass any of the other parameters that the "get()" request accepts.

       If you have specified an "index" and "type", you can just include the "ids" of the documents to retrieve:

           $results = $e->mget(
               index   => 'default_index',
               type    => 'default_type',
               body    => {
                   ids => [ 1, 2, 3]
               }
           );

       Query string parameters:
           "_source",
           "_source_excludes",
           "_source_includes",
           "error_trace",
           "human",
           "preference",
           "realtime",
           "refresh",
           "routing",
           "stored_fields"

       See  the  mget  docs <http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-multi-get.html>
       for more information.

   "mtermvectors()"
           $results = $e->mtermvectors(
               index   => $index,          # required if type specified
               type    => $type,           # optional

               body    => { }              # optional
           )

       Runs multiple "termvector()" requests in a single request, eg:

           $results = $e->mtermvectors(
               index   => 'test',
               body    => {
                   docs => [
                       { _type => 'test', _id => 1, fields => ['text'] },
                       { _type => 'test', _id => 2, payloads => 1 },
                   ]
               }
           );

       Query string parameters:
           "error_trace",
           "field_statistics",
           "fields",
           "human",
           "ids",
           "offsets",
           "parent",
           "payloads",
           "positions",
           "preference",
           "realtime",
           "routing",
           "term_statistics",
           "version",
           "version_type"

       See  the  mtermvectors  docs  <http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-multi-
       termvectors.html> for more information.

Configuration

"bulk_helper_class"
       The class to use for the "bulk_helper()" method. Defaults to Search::Elasticsearch::Client::7_0::Bulk.

   "scroll_helper_class"
       The      class      to      use      for      the      "scroll_helper()"      method.     Defaults     to
       Search::Elasticsearch::Client::7_0::Scroll.

Conventions

Parameterpassing
       Parameters  can  be  passed  to  any  request  method as a list or as a hash reference. The following two
       statements are equivalent:

           $e->search( size => 10 );
           $e->search({size => 10});

   Pathparameters
       Any values that should be included in the URL path, eg "/{index}/{type}" should be passed  as  top  level
       parameters:

           $e->search( index => 'my_index', type => 'my_type' );

       Alternatively, you can specify a "path" parameter directly:

           $e->search( path => '/my_index/my_type' );

   Query-stringparameters
       Any values that should be included in the query string should be passed as top level parameters:

           $e->search( size => 10 );

       If  you  pass  in  a "\%params" hash, then it will be included in the query string parameters without any
       error checking. The following:

           $e->search( size => 10, params => { from => 6, size => 6 })

       would result in this query string:

           ?from=6&size=10

   Bodyparameter
       The request body should be passed in the "body" key:

           $e->search(
               body => {
                   query => {...}
               }
           );

       The body can also be a UTF8-decoded string, which will be converted into UTF-8 bytes and passed as is:

           $e->indices->analyze( body => "The quick brown fox");

   Booleanparameters
       Elasticsearch 7.0.0 and above no longer accepts truthy and falsey values for booleans.  Instead, it  will
       accept only a JSON "true" or "false", or the string equivalents "true" or "false".

       In the Perl client, you can use the following values:

       •   True: "true", "\1", or a JSON::PP::Boolean object.

       •   False: "false", "\0", or a JSON::PP::Boolean object.

   Filterpathparameter
       Any  API  which  returns a JSON body accepts a "filter_path" parameter which will filter the JSON down to
       only the specified paths.  For instance, if you are running a search request and only  want  the  "total"
       hits and the "_source" field for each hit (without the "_id", "_index" etc), you can do:

           $e->search(
               query => {...},
               filter_paths => [ 'hits.total', 'hits.hits._source' ]
           );

   Ignoreparameter
       Normally,  any  HTTP  status  code  outside  the  200-299 range will result in an error being thrown.  To
       suppress these errors, you can specify which status codes to ignore in the "ignore" parameter.

           $e->indices->delete(
               index  => 'my_index',
               ignore => 404
           );

       This is most useful for Missing errors, which are triggered by a 404  status  code  when  some  requested
       resource does not exist.

       Multiple error codes can be specified with an array:

           $e->indices->delete(
               index  => 'my_index',
               ignore => [404,409]
           );

Crud-By-Query Methods

"delete_by_query()"
           $response = $e->delete_by_query(
               index   => 'index' | \@indices,     # optional
               type    => 'type'  | \@types,       # optional,
               body    => { delete-by-query }      # required
           );

       The "delete_by_query()" method deletes all documents which match the specified query.

       Query string parameters:
           "_source",
           "_source_excludes",
           "_source_includes",
           "allow_no_indices",
           "analyze_wildcard",
           "analyzer",
           "conflicts",
           "default_operator",
           "df",
           "error_trace",
           "expand_wildcards",
           "from",
           "human",
           "ignore_unavailable",
           "lenient",
           "preference",
           "q",
           "refresh",
           "request_cache",
           "requests_per_second",
           "routing",
           "scroll",
           "scroll_size",
           "search_timeout",
           "search_type",
           "size",
           "slices",
           "sort",
           "stats",
           "terminate_after",
           "version",
           "timeout",
           "wait_for_active_shards",
           "wait_for_completion"

       See   the   delete-by-query  docs  <https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-
       delete-by-query.html> for more information.

   "delete_by_query_rethrottle()"
           $response = $e->delete_by_query_rethrottle(
               task_id             => 'id'         # required
               requests_per_second => num
           );

       The "delete_by_query_rethrottle()" API is used to dynamically update the throtting of an existing delete-
       by-query request, identified by "task_id".

       Query string parameters:
           "error_trace",
           "filter_path",
           "human",
           "requests_per_second"

       See                       the                       delete-by-query-rethrottle                       docs
       <https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete-by-query.html>    for   more
       information.

   "reindex()"
           $response = $e->reindex(
               body => { reindex }     # required
           );

       The "reindex()" API is used to index documents from one index or multiple indices to a new index.

       Query string parameters:
           "error_trace",
           "human",
           "refresh",
           "requests_per_second",
           "slices",
           "timeout",
           "wait_for_active_shards",
           "wait_for_completion"

       See the reindex docs  <https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-reindex.html>
       for more information.

   "reindex_rethrottle()"
           $response = $e->delete_by_query_rethrottle(
               task_id => 'id',            # required
               requests_per_second => num
           );

       The  "reindex_rethrottle()"  API  is  used  to  dynamically  update  the throtting of an existing reindex
       request, identified by "task_id".

       Query string parameters:
           "error_trace",
           "filter_path",
           "human",
           "requests_per_second"

       See the  reindex-rethrottle  docs  <https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-
       reindex.html> for more information.

   "update_by_query()"
           $response = $e->update_by_query(
               index   => 'index' | \@indices,     # optional
               type    => 'type'  | \@types,       # optional,
               body    => { update-by-query }      # optional
           );

       The  "update_by_query()"  API is used to bulk update documents from one index or multiple indices using a
       script.

       Query string parameters:
           "_source",
           "_source_excludes",
           "_source_includes",
           "allow_no_indices",
           "analyze_wildcard",
           "analyzer",
           "conflicts",
           "default_operator",
           "df",
           "error_trace",
           "expand_wildcards",
           "from",
           "human",
           "ignore_unavailable",
           "lenient",
           "pipeline",
           "preference",
           "q",
           "refresh",
           "request_cache",
           "requests_per_second",
           "routing",
           "scroll",
           "scroll_size",
           "search_timeout",
           "search_type",
           "size",
           "slices",
           "sort",
           "stats",
           "terminate_after",
           "timeout",
           "version",
           "version_type",
           "wait_for_active_shards",
           "wait_for_completion"

       See  the  update_by_query   docs   <https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-
       update-by-query.html> for more information.

   "update_by_query_rethrottle()"
           $response = $e->update_by_query_rethrottle(
               task_id             => 'id'         # required
               requests_per_second => num
           );

       The "update_by_query_rethrottle()" API is used to dynamically update the throtting of an existing update-
       by-query request, identified by "task_id".

       Query string parameters:
           "error_trace",
           "filter_path",
           "human",
           "requests_per_second"

       See                       the                       update-by-query-rethrottle                       docs
       <https://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update-by-query.html>   for    more
       information.

Description

       The Search::Elasticsearch::Client::7_0::Direct class provides the Elasticsearch 7.x compatible client
       returned by:

           $e = Search::Elasticsearch->new(
               client => "7_0::Direct"  # default
           );

       It is intended to be as close as possible to the native REST API that Elasticsearch uses, so that it is
       easy to translate the Elasticsearch reference documentation <http://www.elasticsearch/guide> for an API
       to the equivalent in this client.

       This class provides the methods for document CRUD, bulk document CRUD and search.  It also provides
       access to clients for managing indices and the cluster.

Document Crud Methods

       These methods allow you to perform create, index, update and delete requests for single documents:

   "index()"
           $response = $e->index(
               index   => 'index_name',        # required
               type    => 'type_name',         # required
               id      => 'doc_id',            # optional, otherwise auto-generated

               body    => { document }         # required
           );

       The "index()" method is used to index a new document or to reindex an existing document.

       Query string parameters:
           "error_trace",
           "human",
           "if_primary_term",
           "if_seq_no",
           "op_type",
           "parent",
           "pipeline",
           "refresh",
           "routing",
           "timeout",
           "version",
           "version_type",
           "wait_for_active_shards"

       See the index docs <http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-index_.html>  for
       more information.

   "create()"
           $response = $e->create(
               index   => 'index_name',        # required
               type    => 'type_name',         # required
               id      => 'doc_id',            # required

               body    => { document }         # required
           );

       The  "create()"  method  works  exactly like the "index()" method, except that it will throw a "Conflict"
       error if a document with the same "index", "type" and "id" already exists.

       Query string parameters:
           "consistency",
           "error_trace",
           "human",
           "op_type",
           "parent",
           "refresh",
           "routing",
           "timeout",
           "version",
           "version_type"

       See the create docs <http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-create.html> for
       more information.

   "get()"
           $response = $e->get(
               index   => 'index_name',        # required
               type    => 'type_name',         # required
               id      => 'doc_id',            # required
           );

       The "get()" method will retrieve the document with the specified "index", "type" and "id", or will  throw
       a "Missing" error.

       Query string parameters:
           "_source",
           "_source_excludes",
           "_source_includes",
           "error_trace",
           "human",
           "parent",
           "preference",
           "realtime",
           "refresh",
           "routing",
           "stored_fields",
           "version",
           "version_type"

       See  the get docs <http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html> for more
       information.

   "get_source()"
           $response = $e->get_source(
               index   => 'index_name',        # required
               type    => 'type_name',         # required
               id      => 'doc_id',            # required
           );

       The "get_source()" method works just like the "get()" method except that it returns  just  the  "_source"
       field  (the  value  of  the  "body" parameter in the "index()" method) instead of returning the "_source"
       field plus the document metadata, ie the "_index", "_type" etc.

       Query string parameters:
           "_source",
           "_source_excludes",
           "_source_includes",
           "error_trace",
           "human",
           "parent",
           "preference",
           "realtime",
           "refresh",
           "routing",
           "version",
           "version_type"

       See the  get_source  docs  <http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html>
       for more information.

   "exists()"
           $response = $e->exists(
               index   => 'index_name',        # required
               type    => 'type_name',         # required
               id      => 'doc_id',            # required
           );

       The  "exists()"  method returns 1 if a document with the specified "index", "type" and "id" exists, or an
       empty string if it doesn't.

       Query string parameters:
           "_source",
           "_source_excludes",
           "_source_includes",
           "error_trace",
           "human",
           "parent",
           "preference",
           "realtime",
           "refresh",
           "routing",
           "version",
           "version_type"

       See the exists  docs  <http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-get.html>  for
       more information.

   "delete()"
           $response = $e->delete(
               index   => 'index_name',        # required
               type    => 'type_name',         # required
               id      => 'doc_id',            # required
           );

       The "delete()" method will delete the document with the specified "index", "type" and "id", or will throw
       a "Missing" error.

       Query string parameters:
           "error_trace",
           "human",
           "if_primary_term",
           "if_seq_no",
           "parent",
           "refresh",
           "routing",
           "timeout",
           "version",
           "version_type",
           "wait_for_active_shards"

       See the delete docs <http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-delete.html> for
       more information.

   "update()"
           $response = $e->update(
               index   => 'index_name',        # required
               type    => 'type_name',         # required
               id      => 'doc_id',            # required

               body    => { update }           # required
           );

       The  "update()"  method  updates a document with the corresponding "index", "type" and "id" if it exists.
       Updates can be performed either by:

       •   providing a partial document to be merged in to the existing document:

               $response = $e->update(
                   ...,
                   body => {
                       doc => { new_field => 'new_value'},
                   }
               );

       •   with an inline script:

               $response = $e->update(
                   ...,
                   body => {
                       script => {
                           source => "ctx._source.counter += incr",
                           params => { incr => 6 }
                       }
                   }
               );

       •   with an indexed script:

               $response = $e->update(
                   ...,
                   body => {
                       script => {
                           id     => $id,
                           lang   => 'painless',
                           params => { incr => 6 }
                       }
                   }
               );

           See   indexed    scripts    <https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-
           scripting.html#_indexed_scripts> for more information.

       •   with a script stored as a file:

               $response = $e->update(
                   ...,
                   body => {
                       script => {
                           file   => 'counter',
                           lang   => 'painless',
                           params => { incr => 6 }
                       }
                   }
               );

           See    scripting    docs    <https://www.elastic.co/guide/en/elasticsearch/reference/current/modules-
           scripting.html> for more information.

       Query string parameters:
           "_source",
           "_source_excludes",
           "_source_includes",
           "error_trace",
           "fields",
           "human",
           "if_primary_term",
           "if_seq_no",
           "lang",
           "parent",
           "refresh",
           "retry_on_conflict",
           "routing",
           "timeout",
           "version",
           "version_type",
           "wait_for_active_shards"

       See the update docs <http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html> for
       more information.

   "termvectors()"
           $results = $e->termvectors(
               index   => $index,          # required
               type    => $type,           # required

               id      => $id,             # optional
               body    => {...}            # optional
           )

       The "termvectors()" method retrieves term and field statistics, positions, offsets and payloads  for  the
       specified document, assuming that termvectors have been enabled.

       Query string parameters:
           "error_trace",
           "field_statistics",
           "fields",
           "human",
           "offsets",
           "parent",
           "payloads",
           "positions",
           "preference",
           "realtime",
           "routing",
           "term_statistics",
           "version",
           "version_type"

       See    the    termvector    docs    <http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-
       termvectors.html> for more information.

General Methods

"info()"
           $info = $e->info

       Returns information about the version of Elasticsearch that the responding node is running.

   "ping()"
           $e->ping

       Pings a node in the cluster and returns 1 if it receives a 200 response, otherwise it throws an error.

   "indices()"
           $indices_client = $e->indices;

       Returns a Search::Elasticsearch::Client::7_0::Direct::Indices object  which  can  be  used  for  managing
       indices, eg creating, deleting indices, managing mapping, index settings etc.

   "ingest()"
           $ingest_client = $e->ingest;

       Returns a Search::Elasticsearch::Client::7_0::Direct::Ingest object which can be used for managing ingest
       pipelines.

   "cluster()"
           $cluster_client = $e->cluster;

       Returns  a  Search::Elasticsearch::Client::7_0::Direct::Cluster object which can be used for managing the
       cluster, eg cluster-wide settings and cluster health.

   "nodes()"
           $node_client = $e->nodes;

       Returns a Search::Elasticsearch::Client::7_0::Direct::Nodes object which can be  used  to  retrieve  node
       info and stats.

   "snapshot()"
           $snapshot_client = $e->snapshot;

       Returns  a  Search::Elasticsearch::Client::7_0::Direct::Snapshot object which is used for managing backup
       repositories and creating and restoring snapshots.

   "tasks()"
           $tasks_client = $e->tasks;

       Returns a Search::Elasticsearch::Client::7_0::Direct::Tasks object which is used for accessing  the  task
       management API.

   "cat()"
           $cat_client = $e->cat;

       Returns  a Search::Elasticsearch::Client::7_0::Direct::Cat object which can be used to retrieve simple to
       read text info for debugging and monitoring an Elasticsearch cluster.

   "ccr()"
           $ccr_client = $e->ccr;

       Returns a Search::Elasticsearch::Client::7_0::Direct::CCR object which  can  be  used  to  handle  cross-
       cluster replication requests.

   "ilm()"
           $ilm_client = $e->ilm;

       Returns  a  Search::Elasticsearch::Client::7_0::Direct::ILM  object  which  can  be  used to handle index
       lifecycle management requests.

Indexed Script Methods

       Elasticsearch  allows  you to store scripts in the cluster state and reference them by id. The methods to
       manage indexed scripts are as follows:

   "put_script()"
           $result  = $e->put_script(
               id      => 'id',       # required
               context => $context,   # optional
               body    => { script }  # required
           );

       The "put_script()" method is used to store a script in the cluster state. For instance:

           $result  = $e->put_scripts(
               id   => 'hello_world',
               body => {
                 script => {
                   lang   => 'painless',
                   source => q(return "hello world")
                 }
               }
           );

       Query string parameters:
           "error_trace",
           "human"

       See the  indexed  scripts  docs  <http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-
       scripting.html#_indexed_scripts> for more.

   "get_script()"
           $script = $e->get_script(
               id   => 'id',       # required
           );

       Retrieve the indexed script from the cluster state.

       Query string parameters:
           "error_trace",
           "human",
           "master_timeout"

       See  the  indexed  scripts  docs <http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-
       scripting.html#_indexed_scripts> for more.

   "delete_script()"
           $script = $e->delete_script(
               id   => 'id',       # required
           );

       Delete the indexed script from the cluster state.

       Query string parameters:
           "error_trace",
           "human",
           "master_timeout",
           "timeout"

       See the  indexed  scripts  docs  <http://www.elastic.co/guide/en/elasticsearch/reference/current/modules-
       scripting.html#_indexed_scripts> for more.

   "scripts_painless_execute()"
           $result = $e->scripts_painless_execute(
               body => {...}   # required
           );

       The Painless execute API allows an arbitrary script to be executed and a result to be returned.

       Query string parameters:
           "error_trace",
           "filter_path",
           "human"

       See the painless execution docs <https://www.elastic.co/guide/en/elasticsearch/painless/current/painless-
       execute-api.html> for more.

Name

       Search::Elasticsearch::Client::7_0::Direct - Thin client with full support for Elasticsearch 7.x APIs

Previous Versions Of Elasticsearch

       This version of the client supports the Elasticsearch 7.0 branch, which is not backwards compatible with
       earlier branches.

       If you need to talk to a version of Elasticsearch before 7.0.0, please install one of the following
       modules:

       •   Search::Elasticsearch::Client::6_0

       •   Search::Elasticsearch::Client::5_0

       •   Search::Elasticsearch::Client::2_0

       •   Search::Elasticsearch::Client::1_0

       •   Search::Elasticsearch::Client::0_90

Synopsis

       Create a client:

           use Search::Elasticsearch;
           my $e = Search::Elasticsearch->new(
               client => '7_0::Direct'
           );

       Index a doc:

           $e->index(
               index   => 'my_index',
               type    => 'blog_post',
               id      => 123,
               body    => {
                   title   => "Elasticsearch clients",
                   content => "Interesting content...",
                   date    => "2013-09-23"
               }
           );

       Get a doc:

           $e->get(
               index   => 'my_index',
               type    => 'my_type',
               id      => 123
           );

       Search for docs:

           $results = $e->search(
               index   => 'my_index',
               body    => {
                   query => {
                       match => {
                           title => "elasticsearch"
                       }
                   }
               }
           );

       Index-level requests:

           $e->indices->create( index => 'my_index' );
           $e->indices->delete( index => 'my_index' )

       Ingest pipeline requests:

           $e->ingest->get_pipeline( id => 'apache-logs' );

       Cluster-level requests:

           $health = $e->cluster->health;

       Node-level requests:

           $info  = $e->nodes->info;
           $stats = $e->nodes->stats;

       Snapshot and restore:

           $e->snapshot->create_repository(
               repository => 'my_backups',
               type       => 'fs',
               settings   => {
                   location => '/mnt/backups'
               }
           );

           $e->snapshot->create(
               repository => 'my_backups',
               snapshot   => 'backup_2014'
           );

       Task management:

           $e->tasks->list;

       `cat` debugging:

           say $e->cat->allocation;
           say $e->cat->health;

       Cross-cluster replication requests:

           say $e->ccr->follow;

       Index lifecycle management requests:

           say $e->ilm->put_lifecycle;

Version

       version 7.715

See Also