{ "cells": [ { "cell_type": "markdown", "metadata": { "lc_cell_meme": { "current": "9530584e-1509-11e7-b31a-0242ac12000d", "history": [ { "current": "9530584e-1509-11e7-b31a-0242ac12000d", "next": "95305a9c-1509-11e7-b31a-0242ac12000d", "previous": null } ], "next": "95307b62-1509-11e7-b31a-0242ac12000d", "previous": null } }, "source": [ "# Force Merge操作\n", "----\n", "ディスクの使用量を削減するために、強制的な Merge操作によってセグメント数を減らします。" ] }, { "cell_type": "markdown", "metadata": { "lc_cell_meme": { "current": "95307b62-1509-11e7-b31a-0242ac12000d", "history": [ { "current": "95307b62-1509-11e7-b31a-0242ac12000d", "next": "95307d2e-1509-11e7-b31a-0242ac12000d", "previous": "953079a0-1509-11e7-b31a-0242ac12000d" } ], "next": "95307d2e-1509-11e7-b31a-0242ac12000d", "previous": "9530584e-1509-11e7-b31a-0242ac12000d" } }, "source": [ "ElasticsearchのDELETE APIを使用したレコードの削除処理は、削除対象レコードに対して削除フラグを設定し、検索対象から除外されるだけとなります。 \n", "そのため実データは残留し、リソースを使用したままになります。" ] }, { "cell_type": "markdown", "metadata": { "lc_cell_meme": { "current": "95307d2e-1509-11e7-b31a-0242ac12000d", "history": [ { "current": "95307d2e-1509-11e7-b31a-0242ac12000d", "next": "95307efa-1509-11e7-b31a-0242ac12000d", "previous": "95307b62-1509-11e7-b31a-0242ac12000d" } ], "next": "95305a9c-1509-11e7-b31a-0242ac12000d", "previous": "95307b62-1509-11e7-b31a-0242ac12000d" } }, "source": [ "Force Merge APIは、削除フラグが設定されたレコードの実データを完全削除し、インデックスの最適化を行い、シャードのセグメント数を削減します。 \n", "これにより、ディスク使用量を削減することができます。 \n", "\n", "付随して、完全削除されたドキュメントの持っていたドキュメントIDも解放されます。\n", "\n", "詳細はElasticsearch Referenceの[Force Merge](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-forcemerge.html)を参照してください。 " ] }, { "cell_type": "markdown", "metadata": { "heading_collapsed": true, "lc_cell_meme": { "current": "95305a9c-1509-11e7-b31a-0242ac12000d", "history": [ { "current": "95305a9c-1509-11e7-b31a-0242ac12000d", "next": "95305cae-1509-11e7-b31a-0242ac12000d", "previous": "9530584e-1509-11e7-b31a-0242ac12000d" }, { "current": "95305a9c-1509-11e7-b31a-0242ac12000d", "next": "95305cae-1509-11e7-b31a-0242ac12000d", "previous": "95307efa-1509-11e7-b31a-0242ac12000d" } ], "next": "95305cae-1509-11e7-b31a-0242ac12000d", "previous": "95307d2e-1509-11e7-b31a-0242ac12000d" } }, "source": [ "## 準備\n", "本章のコマンドを実行するための設定を行います。 " ] }, { "cell_type": "markdown", "metadata": { "hidden": true, "lc_cell_meme": { "current": "95305cae-1509-11e7-b31a-0242ac12000d", "next": "95305e8e-1509-11e7-b31a-0242ac12000d", "previous": "95305a9c-1509-11e7-b31a-0242ac12000d" } }, "source": [ "セットアップ済みの環境のうちコマンドを送る先であるCoordinating(Client) Nodeのホストアドレスを、次のセルに記入して実行し、保存してください。" ] }, { "cell_type": "code", "execution_count": 1, "metadata": { "hidden": true, "lc_cell_meme": { "current": "95305e8e-1509-11e7-b31a-0242ac12000d", "next": "9530606e-1509-11e7-b31a-0242ac12000d", "previous": "95305cae-1509-11e7-b31a-0242ac12000d" }, "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "env: ES_HOST=XXX.XXX.XXX.231:9200\n" ] } ], "source": [ "%env ES_HOST=XXX.XXX.XXX.231:9200" ] }, { "cell_type": "markdown", "metadata": { "hidden": true, "lc_cell_meme": { "current": "9530606e-1509-11e7-b31a-0242ac12000d", "next": "95306244-1509-11e7-b31a-0242ac12000d", "previous": "95305e8e-1509-11e7-b31a-0242ac12000d" } }, "source": [ "また、データを蓄積する先のインデックスとタイプを、次のセルを実行して保存してください。 " ] }, { "cell_type": "code", "execution_count": 2, "metadata": { "hidden": true, "lc_cell_meme": { "current": "95306244-1509-11e7-b31a-0242ac12000d", "history": [ { "current": "95306244-1509-11e7-b31a-0242ac12000d", "next": "9530642e-1509-11e7-b31a-0242ac12000d", "previous": "9530606e-1509-11e7-b31a-0242ac12000d" } ], "next": "953079a0-1509-11e7-b31a-0242ac12000d", "previous": "9530606e-1509-11e7-b31a-0242ac12000d" }, "scrolled": false }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "env: INDEX=meteorological-data-*\n" ] } ], "source": [ "%env INDEX=meteorological-data-*" ] }, { "cell_type": "markdown", "metadata": { "lc_cell_meme": { "current": "953079a0-1509-11e7-b31a-0242ac12000d", "history": [ { "current": "953079a0-1509-11e7-b31a-0242ac12000d", "next": "95307b62-1509-11e7-b31a-0242ac12000d", "previous": "953077ca-1509-11e7-b31a-0242ac12000d" }, { "current": "953079a0-1509-11e7-b31a-0242ac12000d", "next": "95307b62-1509-11e7-b31a-0242ac12000d", "previous": "95306244-1509-11e7-b31a-0242ac12000d" } ], "next": "953080c6-1509-11e7-b31a-0242ac12000d", "previous": "95306244-1509-11e7-b31a-0242ac12000d" } }, "source": [ "## 削除可能なデータ件数の確認\n", "削除フラグがonの状態のデータが何件あるか、Indices Statsで確認します。" ] }, { "cell_type": "markdown", "metadata": { "lc_cell_meme": { "current": "953080c6-1509-11e7-b31a-0242ac12000d", "history": [ { "current": "953080c6-1509-11e7-b31a-0242ac12000d", "next": "95308292-1509-11e7-b31a-0242ac12000d", "previous": "95307efa-1509-11e7-b31a-0242ac12000d" }, { "current": "953080c6-1509-11e7-b31a-0242ac12000d", "next": "95308292-1509-11e7-b31a-0242ac12000d", "previous": "953079a0-1509-11e7-b31a-0242ac12000d" } ], "next": "9530845e-1509-11e7-b31a-0242ac12000d", "previous": "953079a0-1509-11e7-b31a-0242ac12000d" } }, "source": [ "次のコマンドを発行してください。 \n", "コマンドの詳細はElasticsearch Referenceの[Indices Stats](https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html)を参照してください。" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "lc_cell_meme": { "current": "9530845e-1509-11e7-b31a-0242ac12000d", "history": [ { "current": "9530845e-1509-11e7-b31a-0242ac12000d", "next": "95308634-1509-11e7-b31a-0242ac12000d", "previous": "95308292-1509-11e7-b31a-0242ac12000d" } ], "next": "95308634-1509-11e7-b31a-0242ac12000d", "previous": "953080c6-1509-11e7-b31a-0242ac12000d" }, "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{\n", " \"_shards\" : {\n", " \"total\" : 140,\n", " \"successful\" : 140,\n", " \"failed\" : 0\n", " },\n", " \"_all\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 365,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 860512,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 365,\n", " \"index_time_in_millis\" : 8281,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 36,\n", " \"query_time_in_millis\" : 173,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 1,\n", " \"fetch_time_in_millis\" : 9,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 1468006400\n", " },\n", " \"refresh\" : {\n", " \"total\" : 65,\n", " \"total_time_in_millis\" : 2609\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 135,\n", " \"total_time_in_millis\" : 126\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 71,\n", " \"memory_in_bytes\" : 316319,\n", " \"terms_memory_in_bytes\" : 189909,\n", " \"stored_fields_memory_in_bytes\" : 22152,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 4544,\n", " \"points_memory_in_bytes\" : 13726,\n", " \"doc_values_memory_in_bytes\" : 85988,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 365,\n", " \"size_in_bytes\" : 254589\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 730,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 1657963,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 659,\n", " \"index_time_in_millis\" : 11710,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 70,\n", " \"query_time_in_millis\" : 346,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 3,\n", " \"fetch_time_in_millis\" : 31,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 2936012800\n", " },\n", " \"refresh\" : {\n", " \"total\" : 114,\n", " \"total_time_in_millis\" : 4598\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 266,\n", " \"total_time_in_millis\" : 230\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 134,\n", " \"memory_in_bytes\" : 608298,\n", " \"terms_memory_in_bytes\" : 360760,\n", " \"stored_fields_memory_in_bytes\" : 41808,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 8576,\n", " \"points_memory_in_bytes\" : 25938,\n", " \"doc_values_memory_in_bytes\" : 171216,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 730,\n", " \"size_in_bytes\" : 509178\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"indices\" : {\n", " \"meteorological-data-2015.10\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 31,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 63696,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 31,\n", " \"index_time_in_millis\" : 572,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 2,\n", " \"query_time_in_millis\" : 10,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 5,\n", " \"total_time_in_millis\" : 122\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 1\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 5,\n", " \"memory_in_bytes\" : 23246,\n", " \"terms_memory_in_bytes\" : 13606,\n", " \"stored_fields_memory_in_bytes\" : 1560,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 320,\n", " \"points_memory_in_bytes\" : 956,\n", " \"doc_values_memory_in_bytes\" : 6804,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 31,\n", " \"size_in_bytes\" : 21565\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 62,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 127392,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 51,\n", " \"index_time_in_millis\" : 859,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 24,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 9,\n", " \"total_time_in_millis\" : 344\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 20,\n", " \"total_time_in_millis\" : 9\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 10,\n", " \"memory_in_bytes\" : 46492,\n", " \"terms_memory_in_bytes\" : 27212,\n", " \"stored_fields_memory_in_bytes\" : 3120,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 640,\n", " \"points_memory_in_bytes\" : 1912,\n", " \"doc_values_memory_in_bytes\" : 13608,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 62,\n", " \"size_in_bytes\" : 43130\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2017.04\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 0,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 650,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 0,\n", " \"index_time_in_millis\" : 0,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 3,\n", " \"query_time_in_millis\" : 12,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 5,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 0,\n", " \"memory_in_bytes\" : 0,\n", " \"terms_memory_in_bytes\" : 0,\n", " \"stored_fields_memory_in_bytes\" : 0,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 0,\n", " \"points_memory_in_bytes\" : 0,\n", " \"doc_values_memory_in_bytes\" : 0,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 0,\n", " \"size_in_bytes\" : 215\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 0,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 1300,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 0,\n", " \"index_time_in_millis\" : 0,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 20,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 2\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 0,\n", " \"memory_in_bytes\" : 0,\n", " \"terms_memory_in_bytes\" : 0,\n", " \"stored_fields_memory_in_bytes\" : 0,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 0,\n", " \"points_memory_in_bytes\" : 0,\n", " \"doc_values_memory_in_bytes\" : 0,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 0,\n", " \"size_in_bytes\" : 430\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2015.09\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 30,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 97249,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 30,\n", " \"index_time_in_millis\" : 942,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 4,\n", " \"query_time_in_millis\" : 19,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 6,\n", " \"total_time_in_millis\" : 243\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 11,\n", " \"total_time_in_millis\" : 20\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 9,\n", " \"memory_in_bytes\" : 35774,\n", " \"terms_memory_in_bytes\" : 23250,\n", " \"stored_fields_memory_in_bytes\" : 2808,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 576,\n", " \"points_memory_in_bytes\" : 1752,\n", " \"doc_values_memory_in_bytes\" : 7388,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 30,\n", " \"size_in_bytes\" : 21031\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 60,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 170360,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 51,\n", " \"index_time_in_millis\" : 1260,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 25,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 337\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 21,\n", " \"total_time_in_millis\" : 23\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 15,\n", " \"memory_in_bytes\" : 62253,\n", " \"terms_memory_in_bytes\" : 39566,\n", " \"stored_fields_memory_in_bytes\" : 4680,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 960,\n", " \"points_memory_in_bytes\" : 2907,\n", " \"doc_values_memory_in_bytes\" : 14140,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 60,\n", " \"size_in_bytes\" : 42062\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2015.08\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 31,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 73880,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 31,\n", " \"index_time_in_millis\" : 558,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 1,\n", " \"query_time_in_millis\" : 5,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 6,\n", " \"total_time_in_millis\" : 247\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 11,\n", " \"total_time_in_millis\" : 3\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 6,\n", " \"memory_in_bytes\" : 27228,\n", " \"terms_memory_in_bytes\" : 16074,\n", " \"stored_fields_memory_in_bytes\" : 1872,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 384,\n", " \"points_memory_in_bytes\" : 1194,\n", " \"doc_values_memory_in_bytes\" : 7704,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 31,\n", " \"size_in_bytes\" : 21624\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 62,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 139475,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 53,\n", " \"index_time_in_millis\" : 851,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 26,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 363\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 21,\n", " \"total_time_in_millis\" : 10\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 11,\n", " \"memory_in_bytes\" : 51099,\n", " \"terms_memory_in_bytes\" : 29674,\n", " \"stored_fields_memory_in_bytes\" : 3432,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 704,\n", " \"points_memory_in_bytes\" : 2189,\n", " \"doc_values_memory_in_bytes\" : 15100,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 62,\n", " \"size_in_bytes\" : 43248\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2015.07\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 31,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 65598,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 31,\n", " \"index_time_in_millis\" : 576,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 2,\n", " \"query_time_in_millis\" : 10,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 5,\n", " \"total_time_in_millis\" : 170\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 16\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 5,\n", " \"memory_in_bytes\" : 23418,\n", " \"terms_memory_in_bytes\" : 13595,\n", " \"stored_fields_memory_in_bytes\" : 1560,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 320,\n", " \"points_memory_in_bytes\" : 995,\n", " \"doc_values_memory_in_bytes\" : 6948,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 31,\n", " \"size_in_bytes\" : 21637\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 62,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 131196,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 55,\n", " \"index_time_in_millis\" : 865,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 25,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 9,\n", " \"total_time_in_millis\" : 233\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 20,\n", " \"total_time_in_millis\" : 21\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 10,\n", " \"memory_in_bytes\" : 46836,\n", " \"terms_memory_in_bytes\" : 27190,\n", " \"stored_fields_memory_in_bytes\" : 3120,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 640,\n", " \"points_memory_in_bytes\" : 1990,\n", " \"doc_values_memory_in_bytes\" : 13896,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 62,\n", " \"size_in_bytes\" : 43274\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2015.06\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 30,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 73474,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 30,\n", " \"index_time_in_millis\" : 542,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 2,\n", " \"query_time_in_millis\" : 12,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 6,\n", " \"total_time_in_millis\" : 76\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 11,\n", " \"total_time_in_millis\" : 3\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 6,\n", " \"memory_in_bytes\" : 26993,\n", " \"terms_memory_in_bytes\" : 16079,\n", " \"stored_fields_memory_in_bytes\" : 1872,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 384,\n", " \"points_memory_in_bytes\" : 1194,\n", " \"doc_values_memory_in_bytes\" : 7464,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 30,\n", " \"size_in_bytes\" : 20947\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 60,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 138851,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 55,\n", " \"index_time_in_millis\" : 843,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 27,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 123\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 21,\n", " \"total_time_in_millis\" : 7\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 11,\n", " \"memory_in_bytes\" : 50954,\n", " \"terms_memory_in_bytes\" : 29689,\n", " \"stored_fields_memory_in_bytes\" : 3432,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 704,\n", " \"points_memory_in_bytes\" : 2189,\n", " \"doc_values_memory_in_bytes\" : 14940,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 60,\n", " \"size_in_bytes\" : 41894\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2015.05\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 31,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 87395,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 31,\n", " \"index_time_in_millis\" : 900,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 25,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 5,\n", " \"total_time_in_millis\" : 180\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 59\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 8,\n", " \"memory_in_bytes\" : 33025,\n", " \"terms_memory_in_bytes\" : 21509,\n", " \"stored_fields_memory_in_bytes\" : 2496,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 512,\n", " \"points_memory_in_bytes\" : 1436,\n", " \"doc_values_memory_in_bytes\" : 7072,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 31,\n", " \"size_in_bytes\" : 21619\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 62,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 158852,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 54,\n", " \"index_time_in_millis\" : 1254,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 25,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 9,\n", " \"total_time_in_millis\" : 321\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 20,\n", " \"total_time_in_millis\" : 77\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 14,\n", " \"memory_in_bytes\" : 59486,\n", " \"terms_memory_in_bytes\" : 37829,\n", " \"stored_fields_memory_in_bytes\" : 4368,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 896,\n", " \"points_memory_in_bytes\" : 2513,\n", " \"doc_values_memory_in_bytes\" : 13880,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 62,\n", " \"size_in_bytes\" : 43238\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2015.04\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 30,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 70336,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 30,\n", " \"index_time_in_millis\" : 695,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 2,\n", " \"query_time_in_millis\" : 11,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 6,\n", " \"total_time_in_millis\" : 161\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 11,\n", " \"total_time_in_millis\" : 6\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 6,\n", " \"memory_in_bytes\" : 25267,\n", " \"terms_memory_in_bytes\" : 15591,\n", " \"stored_fields_memory_in_bytes\" : 1872,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 384,\n", " \"points_memory_in_bytes\" : 1116,\n", " \"doc_values_memory_in_bytes\" : 6304,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 30,\n", " \"size_in_bytes\" : 20922\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 60,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 134069,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 58,\n", " \"index_time_in_millis\" : 950,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 27,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 374\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 21,\n", " \"total_time_in_millis\" : 11\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 11,\n", " \"memory_in_bytes\" : 48442,\n", " \"terms_memory_in_bytes\" : 29190,\n", " \"stored_fields_memory_in_bytes\" : 3432,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 704,\n", " \"points_memory_in_bytes\" : 2072,\n", " \"doc_values_memory_in_bytes\" : 13044,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 60,\n", " \"size_in_bytes\" : 41844\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2015.03\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 31,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 64847,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 31,\n", " \"index_time_in_millis\" : 682,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 0,\n", " \"query_time_in_millis\" : 0,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 5,\n", " \"total_time_in_millis\" : 71\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 2\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 5,\n", " \"memory_in_bytes\" : 23556,\n", " \"terms_memory_in_bytes\" : 13357,\n", " \"stored_fields_memory_in_bytes\" : 1560,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 320,\n", " \"points_memory_in_bytes\" : 995,\n", " \"doc_values_memory_in_bytes\" : 7324,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 31,\n", " \"size_in_bytes\" : 21523\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 62,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 129694,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 59,\n", " \"index_time_in_millis\" : 919,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 28,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 1,\n", " \"fetch_time_in_millis\" : 11,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 9,\n", " \"total_time_in_millis\" : 130\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 20,\n", " \"total_time_in_millis\" : 7\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 10,\n", " \"memory_in_bytes\" : 47112,\n", " \"terms_memory_in_bytes\" : 26714,\n", " \"stored_fields_memory_in_bytes\" : 3120,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 640,\n", " \"points_memory_in_bytes\" : 1990,\n", " \"doc_values_memory_in_bytes\" : 14648,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 62,\n", " \"size_in_bytes\" : 43046\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2014.12\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 1,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 9776,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 1,\n", " \"index_time_in_millis\" : 99,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 19,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 1,\n", " \"total_time_in_millis\" : 95\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 6,\n", " \"total_time_in_millis\" : 3\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 1,\n", " \"memory_in_bytes\" : 3382,\n", " \"terms_memory_in_bytes\" : 2715,\n", " \"stored_fields_memory_in_bytes\" : 312,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 64,\n", " \"points_memory_in_bytes\" : 199,\n", " \"doc_values_memory_in_bytes\" : 92,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 1,\n", " \"size_in_bytes\" : 904\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 2,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 19552,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 2,\n", " \"index_time_in_millis\" : 113,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 19,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 2,\n", " \"total_time_in_millis\" : 108\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 12,\n", " \"total_time_in_millis\" : 8\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 2,\n", " \"memory_in_bytes\" : 6764,\n", " \"terms_memory_in_bytes\" : 5430,\n", " \"stored_fields_memory_in_bytes\" : 624,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 128,\n", " \"points_memory_in_bytes\" : 398,\n", " \"doc_values_memory_in_bytes\" : 184,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 2,\n", " \"size_in_bytes\" : 1808\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2015.02\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 28,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 61645,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 28,\n", " \"index_time_in_millis\" : 672,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 4,\n", " \"query_time_in_millis\" : 20,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 1,\n", " \"fetch_time_in_millis\" : 9,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 5,\n", " \"total_time_in_millis\" : 359\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 3\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 5,\n", " \"memory_in_bytes\" : 22981,\n", " \"terms_memory_in_bytes\" : 13349,\n", " \"stored_fields_memory_in_bytes\" : 1560,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 320,\n", " \"points_memory_in_bytes\" : 956,\n", " \"doc_values_memory_in_bytes\" : 6796,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 28,\n", " \"size_in_bytes\" : 19429\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 56,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 123290,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 54,\n", " \"index_time_in_millis\" : 940,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 24,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 1,\n", " \"fetch_time_in_millis\" : 9,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 9,\n", " \"total_time_in_millis\" : 719\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 20,\n", " \"total_time_in_millis\" : 16\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 10,\n", " \"memory_in_bytes\" : 45962,\n", " \"terms_memory_in_bytes\" : 26698,\n", " \"stored_fields_memory_in_bytes\" : 3120,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 640,\n", " \"points_memory_in_bytes\" : 1912,\n", " \"doc_values_memory_in_bytes\" : 13592,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 56,\n", " \"size_in_bytes\" : 38858\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2015.01\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 31,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 63859,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 31,\n", " \"index_time_in_millis\" : 703,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 2,\n", " \"query_time_in_millis\" : 10,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 5,\n", " \"total_time_in_millis\" : 183\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 1\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 5,\n", " \"memory_in_bytes\" : 23802,\n", " \"terms_memory_in_bytes\" : 13592,\n", " \"stored_fields_memory_in_bytes\" : 1560,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 320,\n", " \"points_memory_in_bytes\" : 982,\n", " \"doc_values_memory_in_bytes\" : 7348,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 31,\n", " \"size_in_bytes\" : 21481\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 62,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 127718,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 58,\n", " \"index_time_in_millis\" : 914,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 24,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 1,\n", " \"fetch_time_in_millis\" : 11,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 9,\n", " \"total_time_in_millis\" : 258\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 20,\n", " \"total_time_in_millis\" : 6\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 10,\n", " \"memory_in_bytes\" : 47604,\n", " \"terms_memory_in_bytes\" : 27184,\n", " \"stored_fields_memory_in_bytes\" : 3120,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 640,\n", " \"points_memory_in_bytes\" : 1964,\n", " \"doc_values_memory_in_bytes\" : 14696,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 62,\n", " \"size_in_bytes\" : 42962\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2015.12\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 30,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 64326,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 30,\n", " \"index_time_in_millis\" : 679,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 2,\n", " \"query_time_in_millis\" : 10,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 5,\n", " \"total_time_in_millis\" : 356\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 5\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 5,\n", " \"memory_in_bytes\" : 23913,\n", " \"terms_memory_in_bytes\" : 13594,\n", " \"stored_fields_memory_in_bytes\" : 1560,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 320,\n", " \"points_memory_in_bytes\" : 995,\n", " \"doc_values_memory_in_bytes\" : 7444,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 30,\n", " \"size_in_bytes\" : 20847\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 60,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 128652,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 55,\n", " \"index_time_in_millis\" : 985,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 25,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 9,\n", " \"total_time_in_millis\" : 637\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 20,\n", " \"total_time_in_millis\" : 17\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 10,\n", " \"memory_in_bytes\" : 47826,\n", " \"terms_memory_in_bytes\" : 27188,\n", " \"stored_fields_memory_in_bytes\" : 3120,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 640,\n", " \"points_memory_in_bytes\" : 1990,\n", " \"doc_values_memory_in_bytes\" : 14888,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 60,\n", " \"size_in_bytes\" : 41694\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " },\n", " \"meteorological-data-2015.11\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : 30,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 63781,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 30,\n", " \"index_time_in_millis\" : 661,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 2,\n", " \"query_time_in_millis\" : 10,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 104857600\n", " },\n", " \"refresh\" : {\n", " \"total\" : 5,\n", " \"total_time_in_millis\" : 346\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 10,\n", " \"total_time_in_millis\" : 4\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 5,\n", " \"memory_in_bytes\" : 23734,\n", " \"terms_memory_in_bytes\" : 13598,\n", " \"stored_fields_memory_in_bytes\" : 1560,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 320,\n", " \"points_memory_in_bytes\" : 956,\n", " \"doc_values_memory_in_bytes\" : 7300,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 30,\n", " \"size_in_bytes\" : 20845\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " },\n", " \"total\" : {\n", " \"docs\" : {\n", " \"count\" : 60,\n", " \"deleted\" : 0\n", " },\n", " \"store\" : {\n", " \"size_in_bytes\" : 127562,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"indexing\" : {\n", " \"index_total\" : 54,\n", " \"index_time_in_millis\" : 957,\n", " \"index_current\" : 0,\n", " \"index_failed\" : 0,\n", " \"delete_total\" : 0,\n", " \"delete_time_in_millis\" : 0,\n", " \"delete_current\" : 0,\n", " \"noop_update_total\" : 0,\n", " \"is_throttled\" : false,\n", " \"throttle_time_in_millis\" : 0\n", " },\n", " \"get\" : {\n", " \"total\" : 0,\n", " \"time_in_millis\" : 0,\n", " \"exists_total\" : 0,\n", " \"exists_time_in_millis\" : 0,\n", " \"missing_total\" : 0,\n", " \"missing_time_in_millis\" : 0,\n", " \"current\" : 0\n", " },\n", " \"search\" : {\n", " \"open_contexts\" : 0,\n", " \"query_total\" : 5,\n", " \"query_time_in_millis\" : 27,\n", " \"query_current\" : 0,\n", " \"fetch_total\" : 0,\n", " \"fetch_time_in_millis\" : 0,\n", " \"fetch_current\" : 0,\n", " \"scroll_total\" : 0,\n", " \"scroll_time_in_millis\" : 0,\n", " \"scroll_current\" : 0,\n", " \"suggest_total\" : 0,\n", " \"suggest_time_in_millis\" : 0,\n", " \"suggest_current\" : 0\n", " },\n", " \"merges\" : {\n", " \"current\" : 0,\n", " \"current_docs\" : 0,\n", " \"current_size_in_bytes\" : 0,\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0,\n", " \"total_docs\" : 0,\n", " \"total_size_in_bytes\" : 0,\n", " \"total_stopped_time_in_millis\" : 0,\n", " \"total_throttled_time_in_millis\" : 0,\n", " \"total_auto_throttle_in_bytes\" : 209715200\n", " },\n", " \"refresh\" : {\n", " \"total\" : 9,\n", " \"total_time_in_millis\" : 651\n", " },\n", " \"flush\" : {\n", " \"total\" : 0,\n", " \"total_time_in_millis\" : 0\n", " },\n", " \"warmer\" : {\n", " \"current\" : 0,\n", " \"total\" : 20,\n", " \"total_time_in_millis\" : 16\n", " },\n", " \"query_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"total_count\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0,\n", " \"cache_size\" : 0,\n", " \"cache_count\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"fielddata\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0\n", " },\n", " \"completion\" : {\n", " \"size_in_bytes\" : 0\n", " },\n", " \"segments\" : {\n", " \"count\" : 10,\n", " \"memory_in_bytes\" : 47468,\n", " \"terms_memory_in_bytes\" : 27196,\n", " \"stored_fields_memory_in_bytes\" : 3120,\n", " \"term_vectors_memory_in_bytes\" : 0,\n", " \"norms_memory_in_bytes\" : 640,\n", " \"points_memory_in_bytes\" : 1912,\n", " \"doc_values_memory_in_bytes\" : 14600,\n", " \"index_writer_memory_in_bytes\" : 0,\n", " \"version_map_memory_in_bytes\" : 0,\n", " \"fixed_bit_set_memory_in_bytes\" : 0,\n", " \"max_unsafe_auto_id_timestamp\" : -1,\n", " \"file_sizes\" : { }\n", " },\n", " \"translog\" : {\n", " \"operations\" : 60,\n", " \"size_in_bytes\" : 41690\n", " },\n", " \"request_cache\" : {\n", " \"memory_size_in_bytes\" : 0,\n", " \"evictions\" : 0,\n", " \"hit_count\" : 0,\n", " \"miss_count\" : 0\n", " },\n", " \"recovery\" : {\n", " \"current_as_source\" : 0,\n", " \"current_as_target\" : 0,\n", " \"throttle_time_in_millis\" : 0\n", " }\n", " }\n", " }\n", " }\n", "}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " % Total % Received % Xferd Average Speed Time Time Time Current\n", " Dload Upload Total Spent Left Speed\n", "\r", " 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\r", "100 99k 100 99k 0 0 1321k 0 --:--:-- --:--:-- --:--:-- 1326k\n" ] } ], "source": [ "%%bash\n", "curl -XGET \"http://$ES_HOST/$INDEX/_stats?pretty\"" ] }, { "cell_type": "raw", "metadata": { "lc_cell_meme": { "current": "95308634-1509-11e7-b31a-0242ac12000d", "next": "95308828-1509-11e7-b31a-0242ac12000d", "previous": "9530845e-1509-11e7-b31a-0242ac12000d" } }, "source": [ "例.\n", "<略>\n", "\"_all\" : {\n", " \"primaries\" : {\n", " \"docs\" : {\n", " \"count\" : XXXXXXX,\n", " \"deleted\" : 0\n", " },\n", "<略>" ] }, { "cell_type": "markdown", "metadata": { "lc_cell_meme": { "current": "95308828-1509-11e7-b31a-0242ac12000d", "history": [ { "current": "95308828-1509-11e7-b31a-0242ac12000d", "next": "953089f4-1509-11e7-b31a-0242ac12000d", "previous": "95308634-1509-11e7-b31a-0242ac12000d" } ], "next": "cc8215ba-183a-11e7-b31a-0242ac12000d", "previous": "95308634-1509-11e7-b31a-0242ac12000d" } }, "source": [ "\"deleted\"に表示されている件数が削除フラグが設定されているドキュメントの数(=ディスク上から削減可能なデータの数)になります。" ] }, { "cell_type": "markdown", "metadata": { "lc_cell_meme": { "current": "cc8215ba-183a-11e7-b31a-0242ac12000d", "next": "953089f4-1509-11e7-b31a-0242ac12000d", "previous": "95308828-1509-11e7-b31a-0242ac12000d" } }, "source": [ "## Force Merge APIの発行\n", "実際にAPIを発行します。" ] }, { "cell_type": "markdown", "metadata": { "lc_cell_meme": { "current": "953089f4-1509-11e7-b31a-0242ac12000d", "history": [ { "current": "953089f4-1509-11e7-b31a-0242ac12000d", "next": "95308bc0-1509-11e7-b31a-0242ac12000d", "previous": "95308828-1509-11e7-b31a-0242ac12000d" } ], "next": "95308bc0-1509-11e7-b31a-0242ac12000d", "previous": "cc8215ba-183a-11e7-b31a-0242ac12000d" } }, "source": [ "次のコマンドを実行してください。" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "lc_cell_meme": { "current": "95308bc0-1509-11e7-b31a-0242ac12000d", "history": [ { "current": "95308bc0-1509-11e7-b31a-0242ac12000d", "next": null, "previous": "953089f4-1509-11e7-b31a-0242ac12000d" } ], "next": "8613b854-1a6f-11e7-b31a-0242ac12000d", "previous": "953089f4-1509-11e7-b31a-0242ac12000d" }, "scrolled": true }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ "{\n", " \"_shards\" : {\n", " \"total\" : 140,\n", " \"successful\" : 140,\n", " \"failed\" : 0\n", " }\n", "}\n" ] }, { "name": "stderr", "output_type": "stream", "text": [ " % Total % Received % Xferd Average Speed Time Time Time Current\n", " Dload Upload Total Spent Left Speed\n", "\r", " 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\r", "100 84 100 84 0 0 404 0 --:--:-- --:--:-- --:--:-- 405\n" ] } ], "source": [ "%%bash\n", "curl -XPOST \"http://$ES_HOST/$INDEX/_forcemerge?pretty\"" ] }, { "cell_type": "code", "execution_count": null, "metadata": { "collapsed": true, "lc_cell_meme": { "current": "8613b854-1a6f-11e7-b31a-0242ac12000d", "next": null, "previous": "95308bc0-1509-11e7-b31a-0242ac12000d" } }, "outputs": [], "source": [] } ], "metadata": { "anaconda-cloud": {}, "kernelspec": { "display_name": "Python 2", "language": "python", "name": "python2" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 2 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython2", "version": "2.7.9" }, "lc_notebook_meme": { "current": "9530542a-1509-11e7-b31a-0242ac12000d", "lc_server_signature": { "history": [] } }, "toc": { "colors": { "hover_highlight": "#DAA520", "navigate_num": "#000000", "navigate_text": "#333333", "running_highlight": "#FF0000", "selected_highlight": "#FFD700", "sidebar_border": "#EEEEEE", "wrapper_background": "#FFFFFF" }, "moveMenuLeft": true, "nav_menu": { "height": "154px", "width": "252px" }, "navigate_menu": true, "number_sections": true, "sideBar": true, "threshold": 4, "toc_cell": false, "toc_position": { "height": "754px", "left": "0px", "right": "1088px", "top": "106px", "width": "248px" }, "toc_section_display": "block", "toc_window_display": true, "widenNotebook": false } }, "nbformat": 4, "nbformat_minor": 1 }