elasticsearch-api 6.0.1 → 7.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/Gemfile +23 -0
- data/LICENSE.txt +199 -10
- data/README.md +3 -3
- data/Rakefile +31 -2
- data/elasticsearch-api.gemspec +21 -4
- data/lib/elasticsearch/api/actions/abort_benchmark.rb +17 -0
- data/lib/elasticsearch/api/actions/benchmark.rb +23 -3
- data/lib/elasticsearch/api/actions/bulk.rb +38 -18
- data/lib/elasticsearch/api/actions/cat/aliases.rb +30 -14
- data/lib/elasticsearch/api/actions/cat/allocation.rb +31 -15
- data/lib/elasticsearch/api/actions/cat/count.rb +30 -9
- data/lib/elasticsearch/api/actions/cat/fielddata.rb +32 -11
- data/lib/elasticsearch/api/actions/cat/health.rb +31 -10
- data/lib/elasticsearch/api/actions/cat/help.rb +25 -3
- data/lib/elasticsearch/api/actions/cat/indices.rb +33 -13
- data/lib/elasticsearch/api/actions/cat/master.rb +30 -9
- data/lib/elasticsearch/api/actions/cat/nodeattrs.rb +30 -8
- data/lib/elasticsearch/api/actions/cat/nodes.rb +31 -10
- data/lib/elasticsearch/api/actions/cat/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/cat/pending_tasks.rb +30 -9
- data/lib/elasticsearch/api/actions/cat/plugins.rb +30 -8
- data/lib/elasticsearch/api/actions/cat/recovery.rb +30 -10
- data/lib/elasticsearch/api/actions/cat/repositories.rb +30 -8
- data/lib/elasticsearch/api/actions/cat/segments.rb +30 -8
- data/lib/elasticsearch/api/actions/cat/shards.rb +31 -12
- data/lib/elasticsearch/api/actions/cat/snapshots.rb +30 -10
- data/lib/elasticsearch/api/actions/cat/tasks.rb +31 -11
- data/lib/elasticsearch/api/actions/cat/templates.rb +31 -10
- data/lib/elasticsearch/api/actions/cat/thread_pool.rb +32 -12
- data/lib/elasticsearch/api/actions/clear_scroll.rb +21 -6
- data/lib/elasticsearch/api/actions/cluster/allocation_explain.rb +25 -4
- data/lib/elasticsearch/api/actions/cluster/get_settings.rb +27 -6
- data/lib/elasticsearch/api/actions/cluster/health.rb +35 -13
- data/lib/elasticsearch/api/actions/cluster/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/cluster/pending_tasks.rb +25 -4
- data/lib/elasticsearch/api/actions/cluster/put_settings.rb +26 -3
- data/lib/elasticsearch/api/actions/cluster/remote_info.rb +17 -0
- data/lib/elasticsearch/api/actions/cluster/reroute.rb +29 -3
- data/lib/elasticsearch/api/actions/cluster/state.rb +31 -14
- data/lib/elasticsearch/api/actions/cluster/stats.rb +25 -5
- data/lib/elasticsearch/api/actions/count.rb +44 -34
- data/lib/elasticsearch/api/actions/create.rb +17 -0
- data/lib/elasticsearch/api/actions/delete.rb +38 -18
- data/lib/elasticsearch/api/actions/delete_by_query.rb +40 -21
- data/lib/elasticsearch/api/actions/delete_by_rethrottle.rb +46 -0
- data/lib/elasticsearch/api/actions/delete_script.rb +28 -11
- data/lib/elasticsearch/api/actions/exists.rb +37 -19
- data/lib/elasticsearch/api/actions/exists_source.rb +68 -0
- data/lib/elasticsearch/api/actions/explain.rb +54 -40
- data/lib/elasticsearch/api/actions/field_caps.rb +28 -10
- data/lib/elasticsearch/api/actions/get.rb +45 -29
- data/lib/elasticsearch/api/actions/get_script.rb +28 -5
- data/lib/elasticsearch/api/actions/get_source.rb +53 -27
- data/lib/elasticsearch/api/actions/index.rb +37 -15
- data/lib/elasticsearch/api/actions/indices/analyze.rb +30 -24
- data/lib/elasticsearch/api/actions/indices/clear_cache.rb +31 -14
- data/lib/elasticsearch/api/actions/indices/close.rb +29 -10
- data/lib/elasticsearch/api/actions/indices/create.rb +38 -20
- data/lib/elasticsearch/api/actions/indices/delete.rb +28 -9
- data/lib/elasticsearch/api/actions/indices/delete_alias.rb +25 -3
- data/lib/elasticsearch/api/actions/indices/delete_template.rb +25 -3
- data/lib/elasticsearch/api/actions/indices/exists.rb +29 -11
- data/lib/elasticsearch/api/actions/indices/exists_alias.rb +27 -10
- data/lib/elasticsearch/api/actions/indices/exists_template.rb +26 -4
- data/lib/elasticsearch/api/actions/indices/exists_type.rb +27 -10
- data/lib/elasticsearch/api/actions/indices/flush.rb +28 -8
- data/lib/elasticsearch/api/actions/indices/flush_synced.rb +26 -7
- data/lib/elasticsearch/api/actions/indices/forcemerge.rb +36 -15
- data/lib/elasticsearch/api/actions/indices/freeze.rb +40 -0
- data/lib/elasticsearch/api/actions/indices/get.rb +37 -23
- data/lib/elasticsearch/api/actions/indices/get_alias.rb +31 -20
- data/lib/elasticsearch/api/actions/indices/get_field_mapping.rb +37 -23
- data/lib/elasticsearch/api/actions/indices/get_mapping.rb +36 -21
- data/lib/elasticsearch/api/actions/indices/get_settings.rb +38 -28
- data/lib/elasticsearch/api/actions/indices/get_template.rb +30 -6
- data/lib/elasticsearch/api/actions/indices/open.rb +35 -21
- data/lib/elasticsearch/api/actions/indices/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/indices/put_alias.rb +27 -4
- data/lib/elasticsearch/api/actions/indices/put_mapping.rb +37 -32
- data/lib/elasticsearch/api/actions/indices/put_settings.rb +36 -28
- data/lib/elasticsearch/api/actions/indices/put_template.rb +32 -6
- data/lib/elasticsearch/api/actions/indices/recovery.rb +25 -6
- data/lib/elasticsearch/api/actions/indices/refresh.rb +30 -19
- data/lib/elasticsearch/api/actions/indices/rollover.rb +31 -12
- data/lib/elasticsearch/api/actions/indices/segments.rb +32 -21
- data/lib/elasticsearch/api/actions/indices/shard_stores.rb +27 -8
- data/lib/elasticsearch/api/actions/indices/shrink.rb +27 -13
- data/lib/elasticsearch/api/actions/indices/split.rb +59 -0
- data/lib/elasticsearch/api/actions/indices/stats.rb +51 -29
- data/lib/elasticsearch/api/actions/indices/unfreeze.rb +39 -0
- data/lib/elasticsearch/api/actions/indices/update_aliases.rb +28 -5
- data/lib/elasticsearch/api/actions/indices/upgrade.rb +34 -17
- data/lib/elasticsearch/api/actions/indices/validate_query.rb +45 -36
- data/lib/elasticsearch/api/actions/info.rb +17 -0
- data/lib/elasticsearch/api/actions/ingest/delete_pipeline.rb +25 -4
- data/lib/elasticsearch/api/actions/ingest/get_pipeline.rb +23 -3
- data/lib/elasticsearch/api/actions/ingest/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/ingest/processor_grok.rb +29 -0
- data/lib/elasticsearch/api/actions/ingest/put_pipeline.rb +25 -4
- data/lib/elasticsearch/api/actions/ingest/simulate.rb +23 -3
- data/lib/elasticsearch/api/actions/mget.rb +37 -25
- data/lib/elasticsearch/api/actions/msearch.rb +36 -9
- data/lib/elasticsearch/api/actions/msearch_template.rb +33 -4
- data/lib/elasticsearch/api/actions/mtermvectors.rb +52 -33
- data/lib/elasticsearch/api/actions/nodes/hot_threads.rb +31 -11
- data/lib/elasticsearch/api/actions/nodes/info.rb +40 -19
- data/lib/elasticsearch/api/actions/nodes/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/nodes/reload_secure_settings.rb +54 -0
- data/lib/elasticsearch/api/actions/nodes/shutdown.rb +25 -5
- data/lib/elasticsearch/api/actions/nodes/stats.rb +39 -39
- data/lib/elasticsearch/api/actions/nodes/usage.rb +31 -0
- data/lib/elasticsearch/api/actions/params_registry.rb +59 -0
- data/lib/elasticsearch/api/actions/ping.rb +17 -0
- data/lib/elasticsearch/api/actions/put_script.rb +32 -14
- data/lib/elasticsearch/api/actions/rank_eval.rb +53 -0
- data/lib/elasticsearch/api/actions/reindex.rb +38 -18
- data/lib/elasticsearch/api/actions/reindex_rethrottle.rb +46 -0
- data/lib/elasticsearch/api/actions/remote/info.rb +17 -0
- data/lib/elasticsearch/api/actions/render_search_template.rb +24 -4
- data/lib/elasticsearch/api/actions/scripts_painless_execute.rb +38 -0
- data/lib/elasticsearch/api/actions/scroll.rb +30 -8
- data/lib/elasticsearch/api/actions/search.rb +46 -20
- data/lib/elasticsearch/api/actions/search_shards.rb +29 -8
- data/lib/elasticsearch/api/actions/search_template.rb +51 -27
- data/lib/elasticsearch/api/actions/snapshot/create.rb +25 -5
- data/lib/elasticsearch/api/actions/snapshot/create_repository.rb +27 -6
- data/lib/elasticsearch/api/actions/snapshot/delete.rb +23 -5
- data/lib/elasticsearch/api/actions/snapshot/delete_repository.rb +25 -6
- data/lib/elasticsearch/api/actions/snapshot/get.rb +28 -8
- data/lib/elasticsearch/api/actions/snapshot/get_repository.rb +25 -6
- data/lib/elasticsearch/api/actions/snapshot/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/snapshot/restore.rb +25 -6
- data/lib/elasticsearch/api/actions/snapshot/status.rb +27 -6
- data/lib/elasticsearch/api/actions/snapshot/verify_repository.rb +25 -7
- data/lib/elasticsearch/api/actions/tasks/cancel.rb +30 -17
- data/lib/elasticsearch/api/actions/tasks/get.rb +27 -6
- data/lib/elasticsearch/api/actions/tasks/list.rb +35 -22
- data/lib/elasticsearch/api/actions/tasks/params_registry.rb +61 -0
- data/lib/elasticsearch/api/actions/termvectors.rb +65 -43
- data/lib/elasticsearch/api/actions/update.rb +50 -21
- data/lib/elasticsearch/api/actions/update_by_query.rb +49 -46
- data/lib/elasticsearch/api/actions/update_by_query_rethrottle.rb +46 -0
- data/lib/elasticsearch/api/namespace/cat.rb +17 -0
- data/lib/elasticsearch/api/namespace/cluster.rb +17 -0
- data/lib/elasticsearch/api/namespace/common.rb +19 -2
- data/lib/elasticsearch/api/namespace/indices.rb +17 -0
- data/lib/elasticsearch/api/namespace/ingest.rb +17 -0
- data/lib/elasticsearch/api/namespace/nodes.rb +17 -0
- data/lib/elasticsearch/api/namespace/remote.rb +17 -0
- data/lib/elasticsearch/api/namespace/snapshot.rb +17 -0
- data/lib/elasticsearch/api/namespace/tasks.rb +17 -0
- data/lib/elasticsearch/api/utils.rb +17 -0
- data/lib/elasticsearch/api/version.rb +18 -1
- data/lib/elasticsearch/api.rb +20 -0
- data/lib/elasticsearch-api.rb +17 -0
- data/spec/elasticsearch/api/actions/abort_benchmark_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/benchmark_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/bulk_spec.rb +139 -0
- data/spec/elasticsearch/api/actions/cat/aliases_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/allocation_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/count_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/fielddata_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/cat/health_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/help_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/indices_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/master_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/nodeattrs_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/nodes_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/pending_tasks_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/plugins_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/recovery_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/repositories_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/segments_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/cat/shards_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/snapshot_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/tasks_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/templates_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cat/thread_pool_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/clear_scroll_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/cluster/allocation_explain_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/get_settings_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/health_spec.rb +69 -0
- data/spec/elasticsearch/api/actions/cluster/pending_tasks_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/put_settings_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/remote_info_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/cluster/reroute_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/cluster/state_spec.rb +52 -0
- data/spec/elasticsearch/api/actions/cluster/stats_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/count_spec.rb +66 -0
- data/spec/elasticsearch/api/actions/create_document_spec.rb +82 -0
- data/spec/elasticsearch/api/actions/delete_by_query_spec.rb +72 -0
- data/spec/elasticsearch/api/actions/delete_document_spec.rb +110 -0
- data/spec/elasticsearch/api/actions/delete_script_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/exists_document_spec.rb +126 -0
- data/spec/elasticsearch/api/actions/explain_document_spec.rb +99 -0
- data/spec/elasticsearch/api/actions/field_caps_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/get_document_source_spec.rb +98 -0
- data/spec/elasticsearch/api/actions/get_document_spec.rb +123 -0
- data/spec/elasticsearch/api/actions/get_script_spec.rb +49 -0
- data/{test/unit/hashie_test.rb → spec/elasticsearch/api/actions/hashie_spec.rb} +28 -17
- data/spec/elasticsearch/api/actions/index_document_spec.rb +145 -0
- data/spec/elasticsearch/api/actions/indices/analyze_spec.rb +73 -0
- data/spec/elasticsearch/api/actions/indices/clear_cache_spec.rb +84 -0
- data/spec/elasticsearch/api/actions/indices/close_spec.rb +85 -0
- data/spec/elasticsearch/api/actions/indices/create_spec.rb +85 -0
- data/spec/elasticsearch/api/actions/indices/delete_alias_spec.rb +83 -0
- data/spec/elasticsearch/api/actions/indices/delete_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/delete_template_spec.rb +86 -0
- data/spec/elasticsearch/api/actions/indices/exists_alias_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/exists_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/exists_template_spec.rb +93 -0
- data/spec/elasticsearch/api/actions/indices/exists_type_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/flush_spec.rb +91 -0
- data/spec/elasticsearch/api/actions/indices/flush_synced_spec.rb +90 -0
- data/spec/elasticsearch/api/actions/indices/forcemerge_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/freeze_spec.rb +68 -0
- data/spec/elasticsearch/api/actions/indices/get_alias_spec.rb +61 -0
- data/spec/elasticsearch/api/actions/indices/get_field_mapping_spec.rb +61 -0
- data/spec/elasticsearch/api/actions/indices/get_mapping_spec.rb +83 -0
- data/spec/elasticsearch/api/actions/indices/get_settings_spec.rb +72 -0
- data/spec/elasticsearch/api/actions/indices/get_spec.rb +65 -0
- data/spec/elasticsearch/api/actions/indices/open_spec.rb +65 -0
- data/spec/elasticsearch/api/actions/indices/put_alias_spec.rb +89 -0
- data/spec/elasticsearch/api/actions/indices/put_mapping_spec.rb +102 -0
- data/spec/elasticsearch/api/actions/indices/put_settings_spec.rb +108 -0
- data/spec/elasticsearch/api/actions/indices/put_template_spec.rb +107 -0
- data/spec/elasticsearch/api/actions/indices/recovery_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/refresh_spec.rb +91 -0
- data/spec/elasticsearch/api/actions/indices/rollover_spec.rb +58 -0
- data/spec/elasticsearch/api/actions/indices/segments_spec.rb +91 -0
- data/spec/elasticsearch/api/actions/indices/shard_stores_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/shrink_spec.rb +42 -0
- data/spec/elasticsearch/api/actions/indices/split_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/stats_spec.rb +125 -0
- data/spec/elasticsearch/api/actions/indices/unfreeze_spec.rb +68 -0
- data/spec/elasticsearch/api/actions/indices/update_aliases_spec.rb +67 -0
- data/spec/elasticsearch/api/actions/indices/upgrade_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/indices/validate_query_spec.rb +128 -0
- data/spec/elasticsearch/api/actions/info_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/ingest/delete_pipeline_spec.rb +60 -0
- data/spec/elasticsearch/api/actions/ingest/get_pipeline_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/ingest/put_pipeline_spec.rb +60 -0
- data/spec/elasticsearch/api/actions/ingest/simulate_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/json_builders_spec.rb +85 -0
- data/spec/elasticsearch/api/actions/mget_spec.rb +102 -0
- data/spec/elasticsearch/api/actions/msearch_spec.rb +169 -0
- data/spec/elasticsearch/api/actions/msearch_template_spec.rb +94 -0
- data/spec/elasticsearch/api/actions/mtermvectors_spec.rb +45 -0
- data/spec/elasticsearch/api/actions/nodes/hot_threads_spec.rb +61 -0
- data/spec/elasticsearch/api/actions/nodes/info_spec.rb +102 -0
- data/spec/elasticsearch/api/actions/nodes/reload_secure_settings_spec.rb +87 -0
- data/spec/elasticsearch/api/actions/nodes/shutdown_spec.rb +76 -0
- data/spec/elasticsearch/api/actions/nodes/stats_spec.rb +76 -0
- data/spec/elasticsearch/api/actions/ping_spec.rb +75 -0
- data/spec/elasticsearch/api/actions/put_script_spec.rb +49 -0
- data/spec/elasticsearch/api/actions/reindex_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/remote/info_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/render_search_template_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/scoll_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/search_shards_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/search_spec.rb +148 -0
- data/spec/elasticsearch/api/actions/search_template_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/snapshot/create_repository_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/create_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/delete_repository_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/snapshot/delete_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/get_repository_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/snapshot/get_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/restore_spec.rb +51 -0
- data/spec/elasticsearch/api/actions/snapshot/status_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/snapshot/verify_repository_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/tasks/cancel_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/tasks/get_spec.rb +35 -0
- data/spec/elasticsearch/api/actions/tasks/list_spec.rb +50 -0
- data/spec/elasticsearch/api/actions/termvectors_spec.rb +67 -0
- data/spec/elasticsearch/api/actions/update_by_query_spec.rb +34 -0
- data/spec/elasticsearch/api/actions/update_document_spec.rb +125 -0
- data/spec/elasticsearch/api/api_spec.rb +43 -0
- data/spec/elasticsearch/api/client_spec.rb +46 -0
- data/spec/elasticsearch/api/utils_spec.rb +430 -0
- data/spec/spec_helper.rb +79 -0
- data/test/integration/yaml_test_runner.rb +91 -44
- data/test/test_helper.rb +62 -13
- data/utils/Gemfile +17 -0
- data/utils/Thorfile +17 -0
- data/utils/thor/generate_api.rb +17 -0
- data/utils/thor/generate_source.rb +23 -2
- data/utils/thor/lister.rb +17 -0
- data/utils/thor/templates/ruby/method.erb +17 -0
- data/utils/thor/templates/ruby/test.erb +17 -0
- data/utils/thor/templates/ruby/test_helper.rb +17 -1
- metadata +290 -323
- data/lib/elasticsearch/api/actions/count_percolate.rb +0 -78
- data/lib/elasticsearch/api/actions/delete_template.rb +0 -21
- data/lib/elasticsearch/api/actions/field_stats.rb +0 -32
- data/lib/elasticsearch/api/actions/get_template.rb +0 -27
- data/lib/elasticsearch/api/actions/indices/delete_mapping.rb +0 -26
- data/lib/elasticsearch/api/actions/indices/delete_warmer.rb +0 -32
- data/lib/elasticsearch/api/actions/indices/get_aliases.rb +0 -34
- data/lib/elasticsearch/api/actions/indices/get_warmer.rb +0 -60
- data/lib/elasticsearch/api/actions/indices/optimize.rb +0 -74
- data/lib/elasticsearch/api/actions/indices/put_warmer.rb +0 -64
- data/lib/elasticsearch/api/actions/indices/seal.rb +0 -24
- data/lib/elasticsearch/api/actions/indices/snapshot_index.rb +0 -43
- data/lib/elasticsearch/api/actions/indices/status.rb +0 -60
- data/lib/elasticsearch/api/actions/list_benchmarks.rb +0 -27
- data/lib/elasticsearch/api/actions/mlt.rb +0 -128
- data/lib/elasticsearch/api/actions/mpercolate.rb +0 -59
- data/lib/elasticsearch/api/actions/percolate.rb +0 -71
- data/lib/elasticsearch/api/actions/put_template.rb +0 -25
- data/lib/elasticsearch/api/actions/search_exists.rb +0 -59
- data/lib/elasticsearch/api/actions/suggest.rb +0 -46
- data/test/unit/abort_benchmark_test.rb +0 -26
- data/test/unit/api_test.rb +0 -28
- data/test/unit/benchmark_test.rb +0 -26
- data/test/unit/bulk_test.rb +0 -133
- data/test/unit/cat/aliases_test.rb +0 -26
- data/test/unit/cat/allocation_test.rb +0 -26
- data/test/unit/cat/count_test.rb +0 -26
- data/test/unit/cat/fielddata_test.rb +0 -38
- data/test/unit/cat/health_test.rb +0 -26
- data/test/unit/cat/help_test.rb +0 -26
- data/test/unit/cat/indices_test.rb +0 -26
- data/test/unit/cat/master_test.rb +0 -26
- data/test/unit/cat/nodeattrs_test.rb +0 -26
- data/test/unit/cat/nodes_test.rb +0 -26
- data/test/unit/cat/pending_tasks_test.rb +0 -26
- data/test/unit/cat/plugins_test.rb +0 -26
- data/test/unit/cat/recovery_test.rb +0 -26
- data/test/unit/cat/repositories_test.rb +0 -26
- data/test/unit/cat/segments_test.rb +0 -26
- data/test/unit/cat/shards_test.rb +0 -26
- data/test/unit/cat/snapshots_test.rb +0 -26
- data/test/unit/cat/tasks_test.rb +0 -26
- data/test/unit/cat/templates_test.rb +0 -26
- data/test/unit/cat/thread_pool_test.rb +0 -26
- data/test/unit/clear_scroll_test.rb +0 -38
- data/test/unit/client_test.rb +0 -31
- data/test/unit/cluster/allocation_explain_test.rb +0 -26
- data/test/unit/cluster/get_settings_test.rb +0 -26
- data/test/unit/cluster/health_test.rb +0 -47
- data/test/unit/cluster/pending_tasks_test.rb +0 -26
- data/test/unit/cluster/put_settings_test.rb +0 -26
- data/test/unit/cluster/remote_info_test.rb +0 -26
- data/test/unit/cluster/reroute_test.rb +0 -38
- data/test/unit/cluster/state_test.rb +0 -46
- data/test/unit/cluster/stats_test.rb +0 -26
- data/test/unit/count_percolate_test.rb +0 -26
- data/test/unit/count_test.rb +0 -46
- data/test/unit/create_document_test.rb +0 -56
- data/test/unit/delete_by_query_test.rb +0 -51
- data/test/unit/delete_document_test.rb +0 -85
- data/test/unit/delete_script_test.rb +0 -26
- data/test/unit/delete_template_test.rb +0 -26
- data/test/unit/exists_document_test.rb +0 -90
- data/test/unit/explain_document_test.rb +0 -73
- data/test/unit/field_caps_test.rb +0 -26
- data/test/unit/field_stats_test.rb +0 -26
- data/test/unit/get_document_source_test.rb +0 -71
- data/test/unit/get_document_test.rb +0 -85
- data/test/unit/get_script_test.rb +0 -26
- data/test/unit/get_template_test.rb +0 -41
- data/test/unit/index_document_test.rb +0 -92
- data/test/unit/indices/analyze_test.rb +0 -76
- data/test/unit/indices/clear_cache_test.rb +0 -54
- data/test/unit/indices/close_test.rb +0 -51
- data/test/unit/indices/create_test.rb +0 -51
- data/test/unit/indices/delete_alias_test.rb +0 -47
- data/test/unit/indices/delete_mapping_test.rb +0 -56
- data/test/unit/indices/delete_template_test.rb +0 -51
- data/test/unit/indices/delete_test.rb +0 -69
- data/test/unit/indices/delete_warmer_test.rb +0 -68
- data/test/unit/indices/exists_alias_test.rb +0 -73
- data/test/unit/indices/exists_template_test.rb +0 -59
- data/test/unit/indices/exists_test.rb +0 -71
- data/test/unit/indices/exists_type_test.rb +0 -73
- data/test/unit/indices/flush_synced_test.rb +0 -41
- data/test/unit/indices/flush_test.rb +0 -54
- data/test/unit/indices/forcemerge_test.rb +0 -26
- data/test/unit/indices/get_alias_test.rb +0 -44
- data/test/unit/indices/get_aliases_test.rb +0 -54
- data/test/unit/indices/get_field_mapping_test.rb +0 -44
- data/test/unit/indices/get_mapping_test.rb +0 -62
- data/test/unit/indices/get_settings_test.rb +0 -54
- data/test/unit/indices/get_template_test.rb +0 -43
- data/test/unit/indices/get_test.rb +0 -45
- data/test/unit/indices/get_warmer_test.rb +0 -44
- data/test/unit/indices/open_test.rb +0 -51
- data/test/unit/indices/optimize_test.rb +0 -54
- data/test/unit/indices/put_alias_test.rb +0 -59
- data/test/unit/indices/put_mapping_test.rb +0 -60
- data/test/unit/indices/put_settings_test.rb +0 -68
- data/test/unit/indices/put_template_test.rb +0 -57
- data/test/unit/indices/put_warmer_test.rb +0 -65
- data/test/unit/indices/recovery_test.rb +0 -26
- data/test/unit/indices/refresh_test.rb +0 -64
- data/test/unit/indices/rollover_test.rb +0 -38
- data/test/unit/indices/seal_test.rb +0 -25
- data/test/unit/indices/segments_test.rb +0 -64
- data/test/unit/indices/shard_stores_test.rb +0 -26
- data/test/unit/indices/shrink_test.rb +0 -33
- data/test/unit/indices/snapshot_index_test.rb +0 -64
- data/test/unit/indices/stats_test.rb +0 -76
- data/test/unit/indices/status_test.rb +0 -72
- data/test/unit/indices/update_aliases_test.rb +0 -42
- data/test/unit/indices/upgrade_test.rb +0 -26
- data/test/unit/indices/validate_query_test.rb +0 -84
- data/test/unit/info_test.rb +0 -26
- data/test/unit/ingest/delete_pipeline_test.rb +0 -41
- data/test/unit/ingest/get_pipeline_test.rb +0 -35
- data/test/unit/ingest/put_pipeline_test.rb +0 -46
- data/test/unit/ingest/simulate_test.rb +0 -35
- data/test/unit/json_builders_test.rb +0 -64
- data/test/unit/list_benchmarks_test.rb +0 -26
- data/test/unit/mget_test.rb +0 -79
- data/test/unit/mlt_test.rb +0 -89
- data/test/unit/mpercolate_test.rb +0 -51
- data/test/unit/msearch_template_test.rb +0 -60
- data/test/unit/msearch_test.rb +0 -129
- data/test/unit/mtermvectors_test.rb +0 -38
- data/test/unit/nodes/hot_threads_test.rb +0 -44
- data/test/unit/nodes/info_test.rb +0 -75
- data/test/unit/nodes/shutdown_test.rb +0 -45
- data/test/unit/nodes/stats_test.rb +0 -65
- data/test/unit/percolate_test.rb +0 -56
- data/test/unit/ping_test.rb +0 -53
- data/test/unit/put_script_test.rb +0 -26
- data/test/unit/put_template_test.rb +0 -26
- data/test/unit/reindex_test.rb +0 -26
- data/test/unit/remote/info_test.rb +0 -26
- data/test/unit/render_search_template_test.rb +0 -25
- data/test/unit/scroll_test.rb +0 -26
- data/test/unit/search_exists_test.rb +0 -26
- data/test/unit/search_shards_test.rb +0 -26
- data/test/unit/search_template_test.rb +0 -26
- data/test/unit/search_test.rb +0 -116
- data/test/unit/snapshot/create_repository_test.rb +0 -38
- data/test/unit/snapshot/create_test.rb +0 -38
- data/test/unit/snapshot/delete_repository_test.rb +0 -35
- data/test/unit/snapshot/delete_test.rb +0 -38
- data/test/unit/snapshot/get_repository_test.rb +0 -26
- data/test/unit/snapshot/get_test.rb +0 -38
- data/test/unit/snapshot/restore_test.rb +0 -38
- data/test/unit/snapshot/status_test.rb +0 -38
- data/test/unit/snapshot/verify_repository_test.rb +0 -26
- data/test/unit/suggest_test.rb +0 -64
- data/test/unit/tasks/cancel_test.rb +0 -38
- data/test/unit/tasks/get_test.rb +0 -26
- data/test/unit/tasks/list_test.rb +0 -38
- data/test/unit/termvectors_test.rb +0 -47
- data/test/unit/update_by_query_test.rb +0 -26
- data/test/unit/update_document_test.rb +0 -85
- data/test/unit/utils_test.rb +0 -310
@@ -1,3 +1,20 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module API
|
3
20
|
module Nodes
|
@@ -43,37 +60,41 @@ module Elasticsearch
|
|
43
60
|
def info(arguments={})
|
44
61
|
arguments = arguments.clone
|
45
62
|
metric = arguments.delete(:metric)
|
46
|
-
|
47
|
-
valid_parts = [
|
48
|
-
:_all,
|
49
|
-
:http,
|
50
|
-
:jvm,
|
51
|
-
:network,
|
52
|
-
:os,
|
53
|
-
:plugins,
|
54
|
-
:process,
|
55
|
-
:settings,
|
56
|
-
:thread_pool,
|
57
|
-
:transport,
|
58
|
-
:timeout ]
|
59
|
-
|
60
|
-
valid_params = [ :flat_settings, :timeout ]
|
61
|
-
|
62
63
|
method = HTTP_GET
|
63
|
-
|
64
64
|
if metric
|
65
65
|
parts = metric
|
66
66
|
else
|
67
|
-
parts = Utils.__extract_parts arguments,
|
67
|
+
parts = Utils.__extract_parts arguments, ParamsRegistry.get(:info_parts)
|
68
68
|
end
|
69
69
|
|
70
70
|
path = Utils.__pathify '_nodes', Utils.__listify(arguments[:node_id]), Utils.__listify(parts)
|
71
71
|
|
72
|
-
params = Utils.__validate_and_extract_params arguments,
|
72
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(:info_params)
|
73
73
|
body = nil
|
74
74
|
|
75
75
|
perform_request(method, path, params, body).body
|
76
76
|
end
|
77
|
+
|
78
|
+
# Register this action with its valid params when the module is loaded.
|
79
|
+
#
|
80
|
+
# @since 6.1.1
|
81
|
+
ParamsRegistry.register(:info_params, [ :flat_settings, :timeout ].freeze)
|
82
|
+
|
83
|
+
# Register this action with its valid parts when the module is loaded.
|
84
|
+
#
|
85
|
+
# @since 6.1.1
|
86
|
+
ParamsRegistry.register(:info_parts, [
|
87
|
+
:_all,
|
88
|
+
:http,
|
89
|
+
:jvm,
|
90
|
+
:network,
|
91
|
+
:os,
|
92
|
+
:plugins,
|
93
|
+
:process,
|
94
|
+
:settings,
|
95
|
+
:thread_pool,
|
96
|
+
:transport,
|
97
|
+
:timeout ].freeze)
|
77
98
|
end
|
78
99
|
end
|
79
100
|
end
|
@@ -0,0 +1,61 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
module Elasticsearch
|
19
|
+
module API
|
20
|
+
module Nodes
|
21
|
+
module Actions
|
22
|
+
module ParamsRegistry
|
23
|
+
|
24
|
+
extend self
|
25
|
+
|
26
|
+
# A Mapping of all the actions to their list of valid params.
|
27
|
+
#
|
28
|
+
# @since 6.1.1
|
29
|
+
PARAMS = {}
|
30
|
+
|
31
|
+
# Register an action with its list of valid params.
|
32
|
+
#
|
33
|
+
# @example Register the action.
|
34
|
+
# ParamsRegistry.register(:benchmark, [ :verbose ])
|
35
|
+
#
|
36
|
+
# @param [ Symbol ] action The action to register.
|
37
|
+
# @param [ Array[Symbol] ] valid_params The list of valid params.
|
38
|
+
#
|
39
|
+
# @since 6.1.1
|
40
|
+
def register(action, valid_params)
|
41
|
+
PARAMS[action.to_sym] = valid_params
|
42
|
+
end
|
43
|
+
|
44
|
+
# Get the list of valid params for a given action.
|
45
|
+
#
|
46
|
+
# @example Get the list of valid params.
|
47
|
+
# ParamsRegistry.get(:benchmark)
|
48
|
+
#
|
49
|
+
# @param [ Symbol ] action The action.
|
50
|
+
#
|
51
|
+
# @return [ Array<Symbol> ] The list of valid params for the action.
|
52
|
+
#
|
53
|
+
# @since 6.1.1
|
54
|
+
def get(action)
|
55
|
+
PARAMS.fetch(action, [])
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
60
|
+
end
|
61
|
+
end
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
module Elasticsearch
|
19
|
+
module API
|
20
|
+
module Nodes
|
21
|
+
module Actions
|
22
|
+
|
23
|
+
# Re-read the local node's encrypted keystore. Specifically, it will prompt the keystore
|
24
|
+
# decryption and reading across the cluster.
|
25
|
+
#
|
26
|
+
# @example Reload secure settings for all nodes
|
27
|
+
#
|
28
|
+
# client.nodes.reload_secure_settings
|
29
|
+
#
|
30
|
+
# @example Reload secure settings for a list of nodes
|
31
|
+
#
|
32
|
+
# client.nodes.reload_secure_settings(node_id: 'foo,bar')
|
33
|
+
#
|
34
|
+
# @option arguments [ Array ] :node_id A comma-separated list of node IDs or names to perform the operation on
|
35
|
+
# @option arguments [ String ] :timeout Explicit operation timeout
|
36
|
+
#
|
37
|
+
# @see http://elasticsearch.org/guide/reference/api/cluster-nodes-reload-secure-settings
|
38
|
+
#
|
39
|
+
def reload_secure_settings(arguments={})
|
40
|
+
valid_params = [
|
41
|
+
:timeout ]
|
42
|
+
|
43
|
+
method = HTTP_POST
|
44
|
+
path = Utils.__pathify '_nodes', Utils.__listify(arguments[:node_id]), 'reload_secure_settings'
|
45
|
+
|
46
|
+
params = Utils.__validate_and_extract_params arguments, valid_params
|
47
|
+
body = nil
|
48
|
+
|
49
|
+
perform_request(method, path, params, body).body
|
50
|
+
end
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
@@ -1,3 +1,20 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module API
|
3
20
|
module Nodes
|
@@ -18,18 +35,21 @@ module Elasticsearch
|
|
18
35
|
# @see http://elasticsearch.org/guide/reference/api/admin-cluster-nodes-shutdown/
|
19
36
|
#
|
20
37
|
def shutdown(arguments={})
|
21
|
-
valid_params = [
|
22
|
-
:delay,
|
23
|
-
:exit ]
|
24
|
-
|
25
38
|
method = HTTP_POST
|
26
39
|
path = Utils.__pathify '_cluster/nodes', Utils.__listify(arguments[:node_id]), '_shutdown'
|
27
40
|
|
28
|
-
params = Utils.__validate_and_extract_params arguments,
|
41
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
29
42
|
body = nil
|
30
43
|
|
31
44
|
perform_request(method, path, params, body).body
|
32
45
|
end
|
46
|
+
|
47
|
+
# Register this action with its valid params when the module is loaded.
|
48
|
+
#
|
49
|
+
# @since 6.1.1
|
50
|
+
ParamsRegistry.register(:shutdown, [
|
51
|
+
:delay,
|
52
|
+
:exit ].freeze)
|
33
53
|
end
|
34
54
|
end
|
35
55
|
end
|
@@ -1,3 +1,20 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module API
|
3
20
|
module Nodes
|
@@ -13,52 +30,22 @@ module Elasticsearch
|
|
13
30
|
#
|
14
31
|
# client.nodes.stats metric: 'indices', index_metric: 'fielddata', fields: '*', human: true
|
15
32
|
#
|
16
|
-
# @option arguments [List] :metric Limit the information returned to the specified metrics
|
17
|
-
#
|
18
|
-
#
|
19
|
-
# @option arguments [List] :
|
20
|
-
#
|
21
|
-
#
|
22
|
-
# (options: _all, completion, docs, fielddata, filter_cache, flush, get,
|
23
|
-
# id_cache, indexing, merge, percolate, refresh, search, segments, store,
|
24
|
-
# warmer)
|
25
|
-
# @option arguments [List] :node_id A comma-separated list of node IDs or names to limit
|
26
|
-
# the returned information; use `_local` to return information
|
27
|
-
# from the node you're connecting to, leave empty to get information
|
28
|
-
# from all nodes
|
29
|
-
# @option arguments [List] :completion_fields A comma-separated list of fields for `fielddata` and `suggest`
|
30
|
-
# index metrics (supports wildcards)
|
31
|
-
# @option arguments [List] :fielddata_fields A comma-separated list of fields for `fielddata` index metric
|
32
|
-
# (supports wildcards)
|
33
|
-
# @option arguments [List] :fields A comma-separated list of fields for `fielddata` and `completion` index
|
34
|
-
# metrics (supports wildcards)
|
35
|
-
# @option arguments [Boolean] :include_segment_file_sizes Whether to report the aggregated disk usage of each one of the Lucene index files. Only applies if segment stats are requested. (default: false)
|
33
|
+
# @option arguments [List] :metric Limit the information returned to the specified metrics (options: _all,breaker,fs,http,indices,jvm,os,process,thread_pool,transport,discovery)
|
34
|
+
# @option arguments [List] :index_metric Limit the information returned for `indices` metric to the specific index metrics. Isn't used if `indices` (or `all`) metric isn't specified. (options: _all,completion,docs,fielddata,query_cache,flush,get,indexing,merge,request_cache,refresh,search,segments,store,warmer,suggest)
|
35
|
+
# @option arguments [List] :node_id A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
|
36
|
+
# @option arguments [List] :completion_fields A comma-separated list of fields for `fielddata` and `suggest` index metric (supports wildcards)
|
37
|
+
# @option arguments [List] :fielddata_fields A comma-separated list of fields for `fielddata` index metric (supports wildcards)
|
38
|
+
# @option arguments [List] :fields A comma-separated list of fields for `fielddata` and `completion` index metric (supports wildcards)
|
36
39
|
# @option arguments [Boolean] :groups A comma-separated list of search groups for `search` index metric
|
37
|
-
# @option arguments [
|
38
|
-
# @option arguments [String] :level Specify the level for aggregating indices stats
|
39
|
-
# (options: node, indices, shards)
|
40
|
+
# @option arguments [String] :level Return indices stats aggregated at index, node or shard level (options: indices, node, shards)
|
40
41
|
# @option arguments [List] :types A comma-separated list of document types for the `indexing` index metric
|
41
42
|
# @option arguments [Time] :timeout Explicit operation timeout
|
43
|
+
# @option arguments [Boolean] :include_segment_file_sizes Whether to report the aggregated disk usage of each one of the Lucene index files (only applies if segment stats are requested)
|
42
44
|
#
|
43
45
|
# @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/cluster-nodes-stats.html
|
44
46
|
#
|
45
47
|
def stats(arguments={})
|
46
48
|
arguments = arguments.clone
|
47
|
-
|
48
|
-
valid_params = [
|
49
|
-
:metric,
|
50
|
-
:index_metric,
|
51
|
-
:node_id,
|
52
|
-
:completion_fields,
|
53
|
-
:fielddata_fields,
|
54
|
-
:fields,
|
55
|
-
:include_segment_file_sizes,
|
56
|
-
:groups,
|
57
|
-
:human,
|
58
|
-
:level,
|
59
|
-
:types,
|
60
|
-
:timeout ]
|
61
|
-
|
62
49
|
node_id = arguments.delete(:node_id)
|
63
50
|
|
64
51
|
path = Utils.__pathify '_nodes',
|
@@ -67,7 +54,7 @@ module Elasticsearch
|
|
67
54
|
Utils.__listify(arguments.delete(:metric)),
|
68
55
|
Utils.__listify(arguments.delete(:index_metric))
|
69
56
|
|
70
|
-
params = Utils.__validate_and_extract_params arguments,
|
57
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
71
58
|
|
72
59
|
[:completion_fields, :fielddata_fields, :fields, :groups, :types].each do |key|
|
73
60
|
params[key] = Utils.__listify(params[key]) if params[key]
|
@@ -77,6 +64,19 @@ module Elasticsearch
|
|
77
64
|
|
78
65
|
perform_request(HTTP_GET, path, params, body).body
|
79
66
|
end
|
67
|
+
|
68
|
+
# Register this action with its valid params when the module is loaded.
|
69
|
+
#
|
70
|
+
# @since 6.1.1
|
71
|
+
ParamsRegistry.register(:stats, [
|
72
|
+
:completion_fields,
|
73
|
+
:fielddata_fields,
|
74
|
+
:fields,
|
75
|
+
:groups,
|
76
|
+
:level,
|
77
|
+
:types,
|
78
|
+
:timeout,
|
79
|
+
:include_segment_file_sizes ].freeze)
|
80
80
|
end
|
81
81
|
end
|
82
82
|
end
|
@@ -0,0 +1,31 @@
|
|
1
|
+
module Elasticsearch
|
2
|
+
module API
|
3
|
+
module Nodes
|
4
|
+
module Actions
|
5
|
+
|
6
|
+
# The cluster nodes usage API allows to retrieve information on the usage of features for each node.
|
7
|
+
#
|
8
|
+
# @option arguments [List] :metric Limit the information returned to the specified metrics (options: _all,rest_actions)
|
9
|
+
# @option arguments [List] :node_id A comma-separated list of node IDs or names to limit the returned information; use `_local` to return information from the node you're connecting to, leave empty to get information from all nodes
|
10
|
+
# @option arguments [Time] :timeout Explicit operation timeout
|
11
|
+
#
|
12
|
+
# @see http://www.elastic.co/guide/en/elasticsearch/reference/current/cluster-nodes-usage.html
|
13
|
+
#
|
14
|
+
def usage(arguments={})
|
15
|
+
method = Elasticsearch::API::HTTP_GET
|
16
|
+
path = "_nodes/usage"
|
17
|
+
params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
18
|
+
body = nil
|
19
|
+
|
20
|
+
perform_request(method, path, params, body).body
|
21
|
+
end
|
22
|
+
|
23
|
+
# Register this action with its valid params when the module is loaded.
|
24
|
+
#
|
25
|
+
# @since 6.2.0
|
26
|
+
ParamsRegistry.register(:usage, [
|
27
|
+
:timeout ].freeze)
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
@@ -0,0 +1,59 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
module Elasticsearch
|
19
|
+
module API
|
20
|
+
module Actions
|
21
|
+
module ParamsRegistry
|
22
|
+
|
23
|
+
extend self
|
24
|
+
|
25
|
+
# A Mapping of all the actions to their list of valid params.
|
26
|
+
#
|
27
|
+
# @since 6.1.1
|
28
|
+
PARAMS = {}
|
29
|
+
|
30
|
+
# Register an action with its list of valid params.
|
31
|
+
#
|
32
|
+
# @example Register the action.
|
33
|
+
# ParamsRegistry.register(:benchmark, [ :verbose ])
|
34
|
+
#
|
35
|
+
# @param [ Symbol ] action The action to register.
|
36
|
+
# @param [ Array[Symbol] ] valid_params The list of valid params.
|
37
|
+
#
|
38
|
+
# @since 6.1.1
|
39
|
+
def register(action, valid_params)
|
40
|
+
PARAMS[action.to_sym] = valid_params
|
41
|
+
end
|
42
|
+
|
43
|
+
# Get the list of valid params for a given action.
|
44
|
+
#
|
45
|
+
# @example Get the list of valid params.
|
46
|
+
# ParamsRegistry.get(:benchmark)
|
47
|
+
#
|
48
|
+
# @param [ Symbol ] action The action.
|
49
|
+
#
|
50
|
+
# @return [ Array<Symbol> ] The list of valid params for the action.
|
51
|
+
#
|
52
|
+
# @since 6.1.1
|
53
|
+
def get(action)
|
54
|
+
PARAMS.fetch(action, [])
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -1,3 +1,20 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module API
|
3
20
|
module Actions
|
@@ -1,3 +1,20 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
1
18
|
module Elasticsearch
|
2
19
|
module API
|
3
20
|
module Actions
|
@@ -19,33 +36,34 @@ module Elasticsearch
|
|
19
36
|
# }
|
20
37
|
#
|
21
38
|
# @option arguments [String] :id Script ID (*Required*)
|
22
|
-
# @option arguments [String] :
|
23
|
-
# @option arguments [Hash]
|
24
|
-
# @option arguments [
|
25
|
-
# @option arguments [
|
26
|
-
# @option arguments [String] :
|
39
|
+
# @option arguments [String] :context Script context
|
40
|
+
# @option arguments [Hash] :body The document (*Required*)
|
41
|
+
# @option arguments [Time] :timeout Explicit operation timeout
|
42
|
+
# @option arguments [Time] :master_timeout Specify timeout for connection to master
|
43
|
+
# @option arguments [String] :context Context name to compile script against
|
27
44
|
#
|
28
45
|
# @see http://www.elasticsearch.org/guide/en/elasticsearch/reference/master/modules-scripting.html#_indexed_scripts
|
29
46
|
#
|
30
47
|
def put_script(arguments={})
|
31
48
|
raise ArgumentError, "Required argument 'id' missing" unless arguments[:id]
|
32
|
-
raise ArgumentError, "Required argument 'lang' missing" unless arguments[:lang]
|
33
49
|
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
34
|
-
|
35
|
-
valid_params = [
|
36
|
-
:op_type,
|
37
|
-
:version,
|
38
|
-
:version_type ]
|
39
|
-
|
40
50
|
method = HTTP_PUT
|
41
|
-
path = "_scripts/#{arguments.delete(:lang)}
|
51
|
+
path = "_scripts/#{arguments.has_key?(:lang) ? "#{arguments.delete(:lang)}/" : ''}#{arguments[:id]}"
|
42
52
|
|
43
|
-
params = Utils.__validate_and_extract_params arguments,
|
53
|
+
params = Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
44
54
|
|
45
55
|
body = arguments[:body]
|
46
56
|
|
47
57
|
perform_request(method, path, params, body).body
|
48
58
|
end
|
59
|
+
|
60
|
+
# Register this action with its valid params when the module is loaded.
|
61
|
+
#
|
62
|
+
# @since 6.1.1
|
63
|
+
ParamsRegistry.register(:put_script, [
|
64
|
+
:timeout,
|
65
|
+
:master_timeout,
|
66
|
+
:context ].freeze)
|
49
67
|
end
|
50
68
|
end
|
51
69
|
end
|
@@ -0,0 +1,53 @@
|
|
1
|
+
# Licensed to Elasticsearch B.V. under one or more contributor
|
2
|
+
# license agreements. See the NOTICE file distributed with
|
3
|
+
# this work for additional information regarding copyright
|
4
|
+
# ownership. Elasticsearch B.V. licenses this file to you under
|
5
|
+
# the Apache License, Version 2.0 (the "License"); you may
|
6
|
+
# not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing,
|
12
|
+
# software distributed under the License is distributed on an
|
13
|
+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
14
|
+
# KIND, either express or implied. See the License for the
|
15
|
+
# specific language governing permissions and limitations
|
16
|
+
# under the License.
|
17
|
+
|
18
|
+
module Elasticsearch
|
19
|
+
module API
|
20
|
+
module Actions
|
21
|
+
|
22
|
+
# The ranking evaluation API allows to evaluate the quality of ranked search results over a set of typical search queries.
|
23
|
+
# Given this set of queries and a list of manually rated documents, the _rank_eval endpoint calculates and
|
24
|
+
# returns typical information retrieval metrics like mean reciprocal rank, precision or discounted cumulative gain.
|
25
|
+
#
|
26
|
+
# @option arguments [List] :index A comma-separated list of index names to search; use `_all` or empty string to perform the operation on all indices
|
27
|
+
# @option arguments [Hash] :body The ranking evaluation search definition, including search requests, document ratings and ranking metric definition. (*Required*)
|
28
|
+
# @option arguments [Boolean] :ignore_unavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
|
29
|
+
# @option arguments [Boolean] :allow_no_indices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
|
30
|
+
# @option arguments [String] :expand_wildcards Whether to expand wildcard expression to concrete indices that are open, closed or both. (options: open, closed, none, all)
|
31
|
+
#
|
32
|
+
# @see https://www.elastic.co/guide/en/elasticsearch/reference/current/search-rank-eval.html
|
33
|
+
#
|
34
|
+
def rank_eval(arguments={})
|
35
|
+
raise ArgumentError, "Required argument 'body' missing" unless arguments[:body]
|
36
|
+
method = Elasticsearch::API::HTTP_GET
|
37
|
+
path = "_rank_eval"
|
38
|
+
params = Elasticsearch::API::Utils.__validate_and_extract_params arguments, ParamsRegistry.get(__method__)
|
39
|
+
body = arguments[:body]
|
40
|
+
|
41
|
+
perform_request(method, path, params, body).body
|
42
|
+
end
|
43
|
+
|
44
|
+
# Register this action with its valid params when the module is loaded.
|
45
|
+
#
|
46
|
+
# @since 6.2.0
|
47
|
+
ParamsRegistry.register(:rank_eval, [
|
48
|
+
:ignore_unavailable,
|
49
|
+
:allow_no_indices,
|
50
|
+
:expand_wildcards ].freeze)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
end
|