From 560d76c4cc22a05a624e4a65aaf234bd37f3afe5 Mon Sep 17 00:00:00 2001 From: hardy Date: Mon, 6 Jan 2025 11:57:55 +0800 Subject: [PATCH 1/2] test: ci unit test --- .github/workflows/unit_test.yml | 65 +++++++++++++++++++ plugin/api/discover.go | 11 ++-- plugin/elastic/esinfo.go | 63 ++++++++++++++++-- plugin/elastic/esinfo_test.go | 3 +- .../metric/node_stats/node_stats_test.go | 11 ++-- 5 files changed, 138 insertions(+), 15 deletions(-) create mode 100644 .github/workflows/unit_test.yml diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml new file mode 100644 index 0000000..6a7ab2b --- /dev/null +++ b/.github/workflows/unit_test.yml @@ -0,0 +1,65 @@ +name: Unit Test + +on: + pull_request: + branches: [ "main" ] + +defaults: + run: + shell: bash + +jobs: + build: + runs-on: ubuntu-latest + env: + GO_VERSION: 1.23.4 + steps: + - name: Checkout current repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + path: agent + + - name: Checkout framework repository + uses: actions/checkout@v4 + with: + fetch-depth: 0 + repository: infinilabs/framework + path: framework + + - name: Checkout framework-vendor + uses: actions/checkout@v4 + with: + ref: main + fetch-depth: 0 + repository: infinilabs/framework-vendor + path: vendor + + - name: Set up go toolchain + uses: actions/setup-go@v5 + with: + go-version: ${{ env.GO_VERSION }} + check-latest: false + cache: true + + - name: Check go toolchain + run: go version + + - name: Unit test + run: | + echo Home path is $HOME + export WORKBASE=$HOME/go/src/infini.sh + export WORK=$WORKBASE/agent + + # for test workspace + mkdir -p $HOME/go/src/ + ln -s $GITHUB_WORKSPACE $WORKBASE + + # check work folder + ls -lrt $WORKBASE/ + ls -alrt $WORK + + # for unit test + cd $WORK + echo Testing code at $PWD ... + make config test \ No newline at end of file diff --git a/plugin/api/discover.go b/plugin/api/discover.go index 40ac32e..b74aadb 100644 --- a/plugin/api/discover.go +++ b/plugin/api/discover.go @@ -6,6 +6,8 @@ package api import ( "fmt" + "net/http" + log "github.com/cihub/seelog" "infini.sh/agent/lib/process" httprouter "infini.sh/framework/core/api/router" @@ -14,10 +16,9 @@ import ( "infini.sh/framework/core/env" "infini.sh/framework/core/global" "infini.sh/framework/core/util" - "net/http" ) -//local exists nodes, find new nodes in runtime +// local exists nodes, find new nodes in runtime func (handler *AgentAPI) getESNodes(w http.ResponseWriter, req *http.Request, params httprouter.Params) { var configs []elastic.ElasticsearchConfig appCfg, err := getAppConfig() @@ -50,11 +51,11 @@ func getAppConfig() (*config.Config, error) { configDir := global.Env().GetConfigDir() parentCfg, err := config.LoadFile(configFile) if err != nil { - return nil, fmt.Errorf("failed to load config file: ", err, ", path: ", configFile) + return nil, fmt.Errorf("failed to load config file: %v, path: %s", err, configFile) } childCfg, err := config.LoadPath(configDir) if err != nil { - return nil, fmt.Errorf("failed to load config dir: ", err, ", path: ", configDir) + return nil, fmt.Errorf("failed to load config dir: %v, path: %s", err, configDir) } err = parentCfg.Merge(childCfg) return parentCfg, nil @@ -68,7 +69,7 @@ func (handler *AgentAPI) getESNodeInfo(w http.ResponseWriter, req *http.Request, return } - if global.Env().IsDebug{ + if global.Env().IsDebug { log.Debug("esConfig: ", util.MustToJSON(esConfig)) } diff --git a/plugin/elastic/esinfo.go b/plugin/elastic/esinfo.go index 408c543..62cf984 100644 --- a/plugin/elastic/esinfo.go +++ b/plugin/elastic/esinfo.go @@ -2,11 +2,15 @@ package elastic import ( "bufio" - "github.com/shirou/gopsutil/v3/process" - "infini.sh/framework/core/util" + "net" "regexp" "runtime" + "strconv" "strings" + + log "github.com/cihub/seelog" + "github.com/shirou/gopsutil/v3/process" + "infini.sh/framework/core/util" ) type PathPort struct { @@ -71,7 +75,8 @@ func GetNodeInfoFromProcess() ([]*PathPort, error) { return pathPorts, nil } -/** +/* +* 从进程信息里,解析es配置文件路径 通过getProcessInfo()获取进程信息 */ @@ -154,6 +159,56 @@ func parseESPort(infos []string) []int { return getPortByPid(pid) } +func getPortByPid(pid string) []int { + pidInt, err := strconv.Atoi(pid) + if err != nil { + return []int{} + } + p, err := process.NewProcess(int32(pidInt)) // Create a new process instance by PID + if err != nil { + return []int{} + } + + // Get all network connections for this process (both listening and connected) + conns, err := p.Connections() + if err != nil { + return []int{} + } + + listeningPorts := make([]int, 0) // Initialize a slice to hold the listening ports + for _, conn := range conns { // Iterate through all connection stats + // Check if the connection is in "LISTEN" status + if conn.Status == "LISTEN" { + // Get the local IP and port + localAddr := conn.Laddr.IP + localPort := conn.Laddr.Port + + if localAddr == "0.0.0.0" { + // If listening on 0.0.0.0, it's listening on all interfaces, so include port + listeningPorts = append(listeningPorts, int(localPort)) + } else { + // If listening on a specific IP, we need to check if it's a local IP of this machine + addrs, err := net.InterfaceAddrs() + if err != nil { + log.Error("Error getting network interface addresses: %v", err) + continue // If an error occur get next connection info + } + + for _, addr := range addrs { + ipnet, ok := addr.(*net.IPNet) + // Check if this is a valid non-loopback local IP + if ok && !ipnet.IP.IsLoopback() && ipnet.IP.Equal(net.ParseIP(localAddr)) { + listeningPorts = append(listeningPorts, int(localPort)) + break // If local IP matches connection IP , add to the listening ports + } + } + } + + } + } + return listeningPorts +} + func parseESConfigPath(infos []string) string { for _, str := range infos { if strings.HasPrefix(str, "-Des.path.conf") { @@ -177,7 +232,7 @@ func RemoveCommentInFile(content string) string { return builder.String() } -//nodeInfo : 通过GET /_nodes/_local 获得的信息 +// nodeInfo : 通过GET /_nodes/_local 获得的信息 func ParseNodeInfo(nodeInfo string) map[string]string { result := make(map[string]string) diff --git a/plugin/elastic/esinfo_test.go b/plugin/elastic/esinfo_test.go index d0e4cd0..5e80766 100644 --- a/plugin/elastic/esinfo_test.go +++ b/plugin/elastic/esinfo_test.go @@ -7,8 +7,7 @@ import ( ) func TestESInfo(t *testing.T) { - //fmt.Println(parseClusterUUID("/Users/chengkai/Downloads")) - readFile("/Users/chengkai/Downloads/local-es-7.15.2_server1.json") + t.Skip() } func readFile(fname string) { diff --git a/plugin/elastic/metric/node_stats/node_stats_test.go b/plugin/elastic/metric/node_stats/node_stats_test.go index 72c64ce..a6990f2 100644 --- a/plugin/elastic/metric/node_stats/node_stats_test.go +++ b/plugin/elastic/metric/node_stats/node_stats_test.go @@ -4,10 +4,13 @@ package node_stats -import "testing" +import ( + "fmt" + "testing" +) func TestParseNodeStats(t *testing.T) { - jsonStr:="{\n \"_nodes\": {\n \"total\": 1,\n \"successful\": 1,\n \"failed\": 0\n },\n \"cluster_name\": \"easysearch\",\n \"nodes\": {\n \"-N1pmqLWQ-etRKI5B2L4yw\": {\n \"timestamp\": 1697081260449,\n \"name\": \"INFINI-4.local\",\n \"transport_address\": \"127.0.0.1:9300\",\n \"host\": \"127.0.0.1\",\n \"ip\": \"127.0.0.1:9300\",\n \"roles\": [\n \"data\",\n \"ingest\",\n \"master\",\n \"remote_cluster_client\"\n ],\n \"indices\": {\n \"docs\": {\n \"count\": 477612,\n \"deleted\": 12\n },\n \"store\": {\n \"size_in_bytes\": 467980247,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 449302,\n \"index_time_in_millis\": 161527,\n \"index_current\": 0,\n \"index_failed\": 1,\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\": 2012,\n \"time_in_millis\": 317,\n \"exists_total\": 2010,\n \"exists_time_in_millis\": 317,\n \"missing_total\": 2,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 1512087,\n \"query_time_in_millis\": 76202,\n \"query_current\": 0,\n \"fetch_total\": 1512087,\n \"fetch_time_in_millis\": 7409,\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\": 948,\n \"total_time_in_millis\": 104884,\n \"total_docs\": 2460771,\n \"total_size_in_bytes\": 4313348902,\n \"total_stopped_time_in_millis\": 0,\n \"total_throttled_time_in_millis\": 12307,\n \"total_auto_throttle_in_bytes\": 623930293\n },\n \"refresh\": {\n \"total\": 9549,\n \"total_time_in_millis\": 274975,\n \"external_total\": 9472,\n \"external_total_time_in_millis\": 288145,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 97,\n \"periodic\": 1,\n \"total_time_in_millis\": 9272\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 9441,\n \"total_time_in_millis\": 1215\n },\n \"query_cache\": {\n \"memory_size_in_bytes\": 1272464,\n \"total_count\": 300194,\n \"hit_count\": 45659,\n \"miss_count\": 254535,\n \"cache_size\": 640,\n \"cache_count\": 2945,\n \"evictions\": 2305\n },\n \"fielddata\": {\n \"memory_size_in_bytes\": 7790276,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 77,\n \"memory_in_bytes\": 1503900,\n \"terms_memory_in_bytes\": 497952,\n \"stored_fields_memory_in_bytes\": 39544,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 2176,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 964228,\n \"index_writer_memory_in_bytes\": 8423708,\n \"version_map_memory_in_bytes\": 204750,\n \"fixed_bit_set_memory_in_bytes\": 0,\n \"max_unsafe_auto_id_timestamp\": -1,\n \"file_sizes\": {\n \"doc\": {\n \"size_in_bytes\": 8538208,\n \"description\": \"Frequencies\"\n },\n \"fdm\": {\n \"size_in_bytes\": 12782,\n \"description\": \"Field Metadata\"\n },\n \"pos\": {\n \"size_in_bytes\": 696150,\n \"description\": \"Positions\"\n },\n \"tmd\": {\n \"size_in_bytes\": 156591,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdx\": {\n \"size_in_bytes\": 84884,\n \"description\": \"Field Index\"\n },\n \"tim\": {\n \"size_in_bytes\": 8857720,\n \"description\": \"Term Dictionary\"\n },\n \"kdi\": {\n \"size_in_bytes\": 433179,\n \"description\": \"Points Index\"\n },\n \"nvd\": {\n \"size_in_bytes\": 30898,\n \"description\": \"Norms\"\n },\n \"kdd\": {\n \"size_in_bytes\": 75845288,\n \"description\": \"Points\"\n },\n \"si\": {\n \"size_in_bytes\": 5312,\n \"description\": \"Segment Info\"\n },\n \"fnm\": {\n \"size_in_bytes\": 2099537,\n \"description\": \"Fields\"\n },\n \"dvd\": {\n \"size_in_bytes\": 97693364,\n \"description\": \"DocValues\"\n },\n \"kdm\": {\n \"size_in_bytes\": 638766,\n \"description\": \"Points Metadata\"\n },\n \"nvm\": {\n \"size_in_bytes\": 2564,\n \"description\": \"Norms Metadata\"\n },\n \"dvm\": {\n \"size_in_bytes\": 2125629,\n \"description\": \"DocValues Metadata\"\n },\n \"fdt\": {\n \"size_in_bytes\": 254174847,\n \"description\": \"Field Data\"\n },\n \"tip\": {\n \"size_in_bytes\": 136544,\n \"description\": \"Term Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 24396,\n \"size_in_bytes\": 43539580,\n \"uncommitted_operations\": 24396,\n \"uncommitted_size_in_bytes\": 43539580,\n \"earliest_last_modified_age\": 1546\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 1257881,\n \"evictions\": 0,\n \"hit_count\": 1159,\n \"miss_count\": 17312\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"shards\": {\n \".infini_credential\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 1,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 6369,\n \"reserved_in_bytes\": 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\": 7,\n \"time_in_millis\": 1,\n \"exists_total\": 7,\n \"exists_time_in_millis\": 1,\n \"missing_total\": 0,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 55,\n \"query_time_in_millis\": 5,\n \"query_current\": 0,\n \"fetch_total\": 55,\n \"fetch_time_in_millis\": 4,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 2684,\n \"terms_memory_in_bytes\": 1856,\n \"stored_fields_memory_in_bytes\": 488,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 128,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 212,\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 \"dvm\": {\n \"size_in_bytes\": 1107,\n \"description\": \"DocValues Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 1532,\n \"description\": \"Fields\"\n },\n \"kdi\": {\n \"size_in_bytes\": 69,\n \"description\": \"Points Index\"\n },\n \"kdd\": {\n \"size_in_bytes\": 92,\n \"description\": \"Points\"\n },\n \"dvd\": {\n \"size_in_bytes\": 137,\n \"description\": \"DocValues\"\n },\n \"kdm\": {\n \"size_in_bytes\": 200,\n \"description\": \"Points Metadata\"\n },\n \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"nvm\": {\n \"size_in_bytes\": 139,\n \"description\": \"Norms Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 294,\n \"description\": \"Term Dictionary\"\n },\n \"nvd\": {\n \"size_in_bytes\": 59,\n \"description\": \"Norms\"\n },\n \"doc\": {\n \"size_in_bytes\": 78,\n \"description\": \"Frequencies\"\n },\n \"tip\": {\n \"size_in_bytes\": 79,\n \"description\": \"Term Index\"\n },\n \"fdt\": {\n \"size_in_bytes\": 476,\n \"description\": \"Field Data\"\n },\n \"pos\": {\n \"size_in_bytes\": 88,\n \"description\": \"Positions\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"tmd\": {\n \"size_in_bytes\": 568,\n \"description\": \"Term Dictionary Metadata\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319976\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhzw==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"0\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"XeIHjY_XSYeZE6zO1l4Iiw\",\n \"history_uuid\": \"dbN5xzwCQwap_sHwoow5yw\",\n \"max_seq_no\": \"0\"\n },\n \"num_docs\": 1\n },\n \"seq_no\": {\n \"max_seq_no\": 0,\n \"local_checkpoint\": 0,\n \"global_checkpoint\": 0\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 1,\n \"timestamp\": 1697064663253,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_channel\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 12,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 29366,\n \"reserved_in_bytes\": 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\": 11,\n \"query_time_in_millis\": 1,\n \"query_current\": 0,\n \"fetch_total\": 11,\n \"fetch_time_in_millis\": 4,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 3988,\n \"terms_memory_in_bytes\": 3200,\n \"stored_fields_memory_in_bytes\": 488,\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\": 300,\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 \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"kdd\": {\n \"size_in_bytes\": 294,\n \"description\": \"Points\"\n },\n \"fnm\": {\n \"size_in_bytes\": 2903,\n \"description\": \"Fields\"\n },\n \"kdm\": {\n \"size_in_bytes\": 257,\n \"description\": \"Points Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 147,\n \"description\": \"Frequencies\"\n },\n \"dvm\": {\n \"size_in_bytes\": 2775,\n \"description\": \"DocValues Metadata\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"tmd\": {\n \"size_in_bytes\": 1393,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 1835,\n \"description\": \"Term Dictionary\"\n },\n \"kdi\": {\n \"size_in_bytes\": 71,\n \"description\": \"Points Index\"\n },\n \"fdt\": {\n \"size_in_bytes\": 16702,\n \"description\": \"Field Data\"\n },\n \"dvd\": {\n \"size_in_bytes\": 1525,\n \"description\": \"DocValues\"\n },\n \"tip\": {\n \"size_in_bytes\": 85,\n \"description\": \"Term Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319300\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhxQ==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"11\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"TwSG1HMzQj-5-AbeRabieQ\",\n \"history_uuid\": \"l8Ge7BEMRfi_o6kn5u9PIg\",\n \"max_seq_no\": \"11\"\n },\n \"num_docs\": 12\n },\n \"seq_no\": {\n \"max_seq_no\": 11,\n \"local_checkpoint\": 11,\n \"global_checkpoint\": 11\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 12,\n \"timestamp\": 1697064664083,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_rbac-user\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 1,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 7776,\n \"reserved_in_bytes\": 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\": 517,\n \"time_in_millis\": 69,\n \"exists_total\": 517,\n \"exists_time_in_millis\": 69,\n \"missing_total\": 0,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 7,\n \"query_time_in_millis\": 1,\n \"query_current\": 0,\n \"fetch_total\": 7,\n \"fetch_time_in_millis\": 1,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 2868,\n \"terms_memory_in_bytes\": 2304,\n \"stored_fields_memory_in_bytes\": 488,\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\": 76,\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 \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"doc\": {\n \"size_in_bytes\": 78,\n \"description\": \"Frequencies\"\n },\n \"tip\": {\n \"size_in_bytes\": 81,\n \"description\": \"Term Index\"\n },\n \"kdm\": {\n \"size_in_bytes\": 257,\n \"description\": \"Points Metadata\"\n },\n \"tmd\": {\n \"size_in_bytes\": 718,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"kdd\": {\n \"size_in_bytes\": 105,\n \"description\": \"Points\"\n },\n \"tim\": {\n \"size_in_bytes\": 296,\n \"description\": \"Term Dictionary\"\n },\n \"dvd\": {\n \"size_in_bytes\": 196,\n \"description\": \"DocValues\"\n },\n \"dvm\": {\n \"size_in_bytes\": 1995,\n \"description\": \"DocValues Metadata\"\n },\n \"kdi\": {\n \"size_in_bytes\": 70,\n \"description\": \"Points Index\"\n },\n \"fnm\": {\n \"size_in_bytes\": 2155,\n \"description\": \"Fields\"\n },\n \"fdt\": {\n \"size_in_bytes\": 448,\n \"description\": \"Field Data\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319933\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVh0A==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"0\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"vaQ-QqskSeOMbQT_PiGcTQ\",\n \"history_uuid\": \"XvrievjDSyaJ_DHH4OCpHQ\",\n \"max_seq_no\": \"0\"\n },\n \"num_docs\": 1\n },\n \"seq_no\": {\n \"max_seq_no\": 0,\n \"local_checkpoint\": 0,\n \"global_checkpoint\": 0\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 1,\n \"timestamp\": 1697064663253,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_notification\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 520,\n \"query_time_in_millis\": 18,\n \"query_current\": 0,\n \"fetch_total\": 520,\n \"fetch_time_in_millis\": 2,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320474\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgkA==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"I2PS9e_JSmuXb2nUsyhCQQ\",\n \"history_uuid\": \"gkStaBlsSE69B2ZgjyVeYQ\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663049,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_task\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 1468484,\n \"query_time_in_millis\": 32782,\n \"query_current\": 0,\n \"fetch_total\": 1468484,\n \"fetch_time_in_millis\": 3688,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320408\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 815,\n \"evictions\": 0,\n \"hit_count\": 37,\n \"miss_count\": 1\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVggg==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"JI1GpiuySw2Pj3wjAvMyWg\",\n \"history_uuid\": \"L_3w9_RuRkuYMaBL2WJoDw\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663049,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_widget\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 4,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 12955,\n \"reserved_in_bytes\": 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\": 25,\n \"time_in_millis\": 4,\n \"exists_total\": 25,\n \"exists_time_in_millis\": 4,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 4572,\n \"terms_memory_in_bytes\": 3872,\n \"stored_fields_memory_in_bytes\": 488,\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\": 212,\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 \"fdt\": {\n \"size_in_bytes\": 1904,\n \"description\": \"Field Data\"\n },\n \"dvm\": {\n \"size_in_bytes\": 3209,\n \"description\": \"DocValues Metadata\"\n },\n \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 3714,\n \"description\": \"Fields\"\n },\n \"kdd\": {\n \"size_in_bytes\": 145,\n \"description\": \"Points\"\n },\n \"kdm\": {\n \"size_in_bytes\": 314,\n \"description\": \"Points Metadata\"\n },\n \"tip\": {\n \"size_in_bytes\": 88,\n \"description\": \"Term Index\"\n },\n \"doc\": {\n \"size_in_bytes\": 126,\n \"description\": \"Frequencies\"\n },\n \"dvd\": {\n \"size_in_bytes\": 417,\n \"description\": \"DocValues\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"tim\": {\n \"size_in_bytes\": 611,\n \"description\": \"Term Dictionary\"\n },\n \"tmd\": {\n \"size_in_bytes\": 979,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"kdi\": {\n \"size_in_bytes\": 71,\n \"description\": \"Points Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319479\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhxw==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"3\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"mj4eSAWZRl6uMJBIXxyx0Q\",\n \"history_uuid\": \"N73_Jb0sRDKJh_3Gm4SAQw\",\n \"max_seq_no\": \"3\"\n },\n \"num_docs\": 4\n },\n \"seq_no\": {\n \"max_seq_no\": 3,\n \"local_checkpoint\": 3,\n \"global_checkpoint\": 3\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 4,\n \"timestamp\": 1697064663668,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_hostinfo\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 2,\n \"deleted\": 1\n },\n \"store\": {\n \"size_in_bytes\": 15377,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 4,\n \"index_time_in_millis\": 7,\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\": 102,\n \"time_in_millis\": 32,\n \"exists_total\": 102,\n \"exists_time_in_millis\": 32,\n \"missing_total\": 0,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 74,\n \"query_time_in_millis\": 8,\n \"query_current\": 0,\n \"fetch_total\": 74,\n \"fetch_time_in_millis\": 3,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 9,\n \"total_time_in_millis\": 31,\n \"external_total\": 7,\n \"external_total_time_in_millis\": 31,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 2,\n \"periodic\": 0,\n \"total_time_in_millis\": 125\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 6,\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\": 144,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 2,\n \"memory_in_bytes\": 4424,\n \"terms_memory_in_bytes\": 3040,\n \"stored_fields_memory_in_bytes\": 976,\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\": 408,\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 \"tim\": {\n \"size_in_bytes\": 401,\n \"description\": \"Term Dictionary\"\n },\n \"fdt\": {\n \"size_in_bytes\": 1118,\n \"description\": \"Field Data\"\n },\n \"doc\": {\n \"size_in_bytes\": 166,\n \"description\": \"Frequencies\"\n },\n \"tmd\": {\n \"size_in_bytes\": 976,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdx\": {\n \"size_in_bytes\": 128,\n \"description\": \"Field Index\"\n },\n \"dvd\": {\n \"size_in_bytes\": 288,\n \"description\": \"DocValues\"\n },\n \"kdm\": {\n \"size_in_bytes\": 742,\n \"description\": \"Points Metadata\"\n },\n \"tip\": {\n \"size_in_bytes\": 155,\n \"description\": \"Term Index\"\n },\n \"fdm\": {\n \"size_in_bytes\": 316,\n \"description\": \"Field Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 3535,\n \"description\": \"Fields\"\n },\n \"kdi\": {\n \"size_in_bytes\": 144,\n \"description\": \"Points Index\"\n },\n \"dvm\": {\n \"size_in_bytes\": 3131,\n \"description\": \"DocValues Metadata\"\n },\n \"kdd\": {\n \"size_in_bytes\": 286,\n \"description\": \"Points\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 68669640\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 682,\n \"evictions\": 0,\n \"hit_count\": 32,\n \"miss_count\": 5\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANZKQ==\",\n \"generation\": 4,\n \"user_data\": {\n \"local_checkpoint\": \"3\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"2\",\n \"translog_uuid\": \"_RNAYKMUTyS0saMM1YnszA\",\n \"history_uuid\": \"RMYrXlEzSJ6WYxN83DVJiA\",\n \"max_seq_no\": \"3\"\n },\n \"num_docs\": 2\n },\n \"seq_no\": {\n \"max_seq_no\": 3,\n \"local_checkpoint\": 3,\n \"global_checkpoint\": 3\n },\n \"retention_leases\": {\n \"primary_term\": 1,\n \"version\": 6,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 4,\n \"timestamp\": 1697079750820,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_layout\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 6,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 49263,\n \"reserved_in_bytes\": 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\": 12,\n \"time_in_millis\": 2,\n \"exists_total\": 12,\n \"exists_time_in_millis\": 2,\n \"missing_total\": 0,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 17,\n \"query_time_in_millis\": 5,\n \"query_current\": 0,\n \"fetch_total\": 17,\n \"fetch_time_in_millis\": 8,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 16132,\n \"terms_memory_in_bytes\": 11488,\n \"stored_fields_memory_in_bytes\": 488,\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\": 4156,\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 \"kdd\": {\n \"size_in_bytes\": 1384,\n \"description\": \"Points\"\n },\n \"tim\": {\n \"size_in_bytes\": 5244,\n \"description\": \"Term Dictionary\"\n },\n \"fdt\": {\n \"size_in_bytes\": 10558,\n \"description\": \"Field Data\"\n },\n \"tmd\": {\n \"size_in_bytes\": 3075,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"tip\": {\n \"size_in_bytes\": 141,\n \"description\": \"Term Index\"\n },\n \"dvd\": {\n \"size_in_bytes\": 4907,\n \"description\": \"DocValues\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"kdi\": {\n \"size_in_bytes\": 87,\n \"description\": \"Points Index\"\n },\n \"dvm\": {\n \"size_in_bytes\": 10397,\n \"description\": \"DocValues Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 11054,\n \"description\": \"Fields\"\n },\n \"doc\": {\n \"size_in_bytes\": 269,\n \"description\": \"Frequencies\"\n },\n \"kdm\": {\n \"size_in_bytes\": 770,\n \"description\": \"Points Metadata\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319524\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhyA==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"5\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"rUEeuJPbS3WAsD6kacQUtQ\",\n \"history_uuid\": \"AsH5rMbFSQeXOJ0e6oDviA\",\n \"max_seq_no\": \"5\"\n },\n \"num_docs\": 6\n },\n \"seq_no\": {\n \"max_seq_no\": 5,\n \"local_checkpoint\": 5,\n \"global_checkpoint\": 5\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 6,\n \"timestamp\": 1697064663668,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_email-server\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 41,\n \"query_time_in_millis\": 0,\n \"query_current\": 0,\n \"fetch_total\": 41,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320445\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgng==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"KGQWgQnaTvyBEsLYLzWgXw\",\n \"history_uuid\": \"v9CEXrA9RqSxEEQ-i38I4w\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663049,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_activities\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 60,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 228034,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 26,\n \"index_time_in_millis\": 66,\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\": 135,\n \"query_time_in_millis\": 96,\n \"query_current\": 0,\n \"fetch_total\": 135,\n \"fetch_time_in_millis\": 480,\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\": 1,\n \"total_time_in_millis\": 8,\n \"total_docs\": 47,\n \"total_size_in_bytes\": 158392,\n \"total_stopped_time_in_millis\": 0,\n \"total_throttled_time_in_millis\": 0,\n \"total_auto_throttle_in_bytes\": 20971520\n },\n \"refresh\": {\n \"total\": 31,\n \"total_time_in_millis\": 94,\n \"external_total\": 20,\n \"external_total_time_in_millis\": 108,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 11,\n \"periodic\": 0,\n \"total_time_in_millis\": 1722\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 19,\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\": 2160,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 8,\n \"memory_in_bytes\": 22992,\n \"terms_memory_in_bytes\": 18208,\n \"stored_fields_memory_in_bytes\": 3968,\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\": 816,\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 \"kdi\": {\n \"size_in_bytes\": 553,\n \"description\": \"Points Index\"\n },\n \"doc\": {\n \"size_in_bytes\": 983,\n \"description\": \"Frequencies\"\n },\n \"fdx\": {\n \"size_in_bytes\": 559,\n \"description\": \"Field Index\"\n },\n \"kdd\": {\n \"size_in_bytes\": 1237,\n \"description\": \"Points\"\n },\n \"tim\": {\n \"size_in_bytes\": 4482,\n \"description\": \"Term Dictionary\"\n },\n \"si\": {\n \"size_in_bytes\": 556,\n \"description\": \"Segment Info\"\n },\n \"fdt\": {\n \"size_in_bytes\": 167403,\n \"description\": \"Field Data\"\n },\n \"tip\": {\n \"size_in_bytes\": 734,\n \"description\": \"Term Index\"\n },\n \"dvm\": {\n \"size_in_bytes\": 15319,\n \"description\": \"DocValues Metadata\"\n },\n \"dvd\": {\n \"size_in_bytes\": 3252,\n \"description\": \"DocValues\"\n },\n \"fnm\": {\n \"size_in_bytes\": 17079,\n \"description\": \"Fields\"\n },\n \"fdm\": {\n \"size_in_bytes\": 1264,\n \"description\": \"Field Metadata\"\n },\n \"tmd\": {\n \"size_in_bytes\": 6229,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"kdm\": {\n \"size_in_bytes\": 1600,\n \"description\": \"Points Metadata\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 61649547\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 0,\n \"evictions\": 0,\n \"hit_count\": 0,\n \"miss_count\": 1\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANl5g==\",\n \"generation\": 15,\n \"user_data\": {\n \"local_checkpoint\": \"59\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"59\",\n \"translog_uuid\": \"bEMq8FaeSJy7Vll3I5c_IA\",\n \"history_uuid\": \"qiVGqc9TTtSR-aZ3F1WtvQ\",\n \"max_seq_no\": \"59\"\n },\n \"num_docs\": 60\n },\n \"seq_no\": {\n \"max_seq_no\": 59,\n \"local_checkpoint\": 59,\n \"global_checkpoint\": 59\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 32,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 60,\n \"timestamp\": 1697064663253,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_dashboard\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 58,\n \"query_time_in_millis\": 1,\n \"query_current\": 0,\n \"fetch_total\": 58,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320207\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgdA==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"fCB_2KyjQlaN40dv3dJbCA\",\n \"history_uuid\": \"UXqHvhuKRqmdFHG870imHQ\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663049,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_view\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 1,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 18961,\n \"reserved_in_bytes\": 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\": 12,\n \"time_in_millis\": 6,\n \"exists_total\": 12,\n \"exists_time_in_millis\": 6,\n \"missing_total\": 0,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 108,\n \"query_time_in_millis\": 14,\n \"query_current\": 0,\n \"fetch_total\": 108,\n \"fetch_time_in_millis\": 137,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 2420,\n \"terms_memory_in_bytes\": 1856,\n \"stored_fields_memory_in_bytes\": 488,\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\": 76,\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 \"doc\": {\n \"size_in_bytes\": 78,\n \"description\": \"Frequencies\"\n },\n \"dvd\": {\n \"size_in_bytes\": 180,\n \"description\": \"DocValues\"\n },\n \"fdt\": {\n \"size_in_bytes\": 12680,\n \"description\": \"Field Data\"\n },\n \"fnm\": {\n \"size_in_bytes\": 1748,\n \"description\": \"Fields\"\n },\n \"kdd\": {\n \"size_in_bytes\": 92,\n \"description\": \"Points\"\n },\n \"kdi\": {\n \"size_in_bytes\": 69,\n \"description\": \"Points Index\"\n },\n \"dvm\": {\n \"size_in_bytes\": 1576,\n \"description\": \"DocValues Metadata\"\n },\n \"tip\": {\n \"size_in_bytes\": 79,\n \"description\": \"Term Index\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"kdm\": {\n \"size_in_bytes\": 200,\n \"description\": \"Points Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 260,\n \"description\": \"Term Dictionary\"\n },\n \"tmd\": {\n \"size_in_bytes\": 622,\n \"description\": \"Term Dictionary Metadata\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319279\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhxg==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"0\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"eCKBQlAQQDiSa4diM2srJg\",\n \"history_uuid\": \"xQV4tDkfTrKcZq0FCJh4iw\",\n \"max_seq_no\": \"0\"\n },\n \"num_docs\": 1\n },\n \"seq_no\": {\n \"max_seq_no\": 0,\n \"local_checkpoint\": 0,\n \"global_checkpoint\": 0\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 1,\n \"timestamp\": 1697064664083,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_alert-message\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 14578,\n \"query_time_in_millis\": 244,\n \"query_current\": 0,\n \"fetch_total\": 14578,\n \"fetch_time_in_millis\": 33,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320187\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 13597,\n \"evictions\": 0,\n \"hit_count\": 291,\n \"miss_count\": 17\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgVA==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"hxNeqsdnRw6G93OnqPW1fw\",\n \"history_uuid\": \"KpPCR_UnTJeyDSPLhsR0oQ\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663049,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_rbac-role\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 38,\n \"query_time_in_millis\": 0,\n \"query_current\": 0,\n \"fetch_total\": 38,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319937\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVf/Q==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"JOCE3rRPSEa20X1d3e7SRw\",\n \"history_uuid\": \"qTvO4VtVR5a_E9RZhF9VQw\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663253,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".security\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 8,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 39237,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 0,\n \"index_time_in_millis\": 0,\n \"index_current\": 0,\n \"index_failed\": 1,\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\": 8,\n \"time_in_millis\": 6,\n \"exists_total\": 8,\n \"exists_time_in_millis\": 6,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 3,\n \"total_time_in_millis\": 0,\n \"external_total\": 3,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 8,\n \"memory_in_bytes\": 9792,\n \"terms_memory_in_bytes\": 4768,\n \"stored_fields_memory_in_bytes\": 3904,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 512,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 608,\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 \"kdd\": {\n \"size_in_bytes\": 632,\n \"description\": \"Points\"\n },\n \"tip\": {\n \"size_in_bytes\": 587,\n \"description\": \"Term Index\"\n },\n \"fnm\": {\n \"size_in_bytes\": 4998,\n \"description\": \"Fields\"\n },\n \"fdt\": {\n \"size_in_bytes\": 4705,\n \"description\": \"Field Data\"\n },\n \"kdm\": {\n \"size_in_bytes\": 1144,\n \"description\": \"Points Metadata\"\n },\n \"dvm\": {\n \"size_in_bytes\": 3003,\n \"description\": \"DocValues Metadata\"\n },\n \"fdx\": {\n \"size_in_bytes\": 512,\n \"description\": \"Field Index\"\n },\n \"nvd\": {\n \"size_in_bytes\": 472,\n \"description\": \"Norms\"\n },\n \"kdi\": {\n \"size_in_bytes\": 544,\n \"description\": \"Points Index\"\n },\n \"tmd\": {\n \"size_in_bytes\": 5198,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"dvd\": {\n \"size_in_bytes\": 908,\n \"description\": \"DocValues\"\n },\n \"pos\": {\n \"size_in_bytes\": 636,\n \"description\": \"Positions\"\n },\n \"nvm\": {\n \"size_in_bytes\": 824,\n \"description\": \"Norms Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 4971,\n \"description\": \"Term Dictionary\"\n },\n \"fdm\": {\n \"size_in_bytes\": 1264,\n \"description\": \"Field Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 624,\n \"description\": \"Frequencies\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320645\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhrw==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"7\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"O6dFEwgiSTSLMH39A0hMdg\",\n \"history_uuid\": \"YIOvUW4qRYqBPv6_YvrJ_g\",\n \"max_seq_no\": \"7\"\n },\n \"num_docs\": 8\n },\n \"seq_no\": {\n \"max_seq_no\": 7,\n \"local_checkpoint\": 7,\n \"global_checkpoint\": 7\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 8,\n \"timestamp\": 1697064201796,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_entry\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320680\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgug==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"Uf8WgOkqTcedNTXcwkxH2Q\",\n \"history_uuid\": \"B48o_IcEROWDS0KIMEjV8g\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064201796,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_logs\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 34319,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 7495229,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 49766,\n \"index_time_in_millis\": 4512,\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\": 39,\n \"query_time_in_millis\": 37,\n \"query_current\": 0,\n \"fetch_total\": 39,\n \"fetch_time_in_millis\": 20,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 20,\n \"total_time_in_millis\": 339,\n \"external_total\": 14,\n \"external_total_time_in_millis\": 339,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 6,\n \"periodic\": 0,\n \"total_time_in_millis\": 794\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 13,\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\": 10,\n \"memory_in_bytes\": 49784,\n \"terms_memory_in_bytes\": 40064,\n \"stored_fields_memory_in_bytes\": 5104,\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\": 4616,\n \"index_writer_memory_in_bytes\": 6209316,\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 \"fdx\": {\n \"size_in_bytes\": 2189,\n \"description\": \"Field Index\"\n },\n \"tim\": {\n \"size_in_bytes\": 1534032,\n \"description\": \"Term Dictionary\"\n },\n \"fdt\": {\n \"size_in_bytes\": 2335158,\n \"description\": \"Field Data\"\n },\n \"tmd\": {\n \"size_in_bytes\": 19146,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 36160,\n \"description\": \"Fields\"\n },\n \"kdm\": {\n \"size_in_bytes\": 2621,\n \"description\": \"Points Metadata\"\n },\n \"dvm\": {\n \"size_in_bytes\": 36382,\n \"description\": \"DocValues Metadata\"\n },\n \"kdd\": {\n \"size_in_bytes\": 254597,\n \"description\": \"Points\"\n },\n \"doc\": {\n \"size_in_bytes\": 52337,\n \"description\": \"Frequencies\"\n },\n \"dvd\": {\n \"size_in_bytes\": 2247170,\n \"description\": \"DocValues\"\n },\n \"fdm\": {\n \"size_in_bytes\": 1582,\n \"description\": \"Field Metadata\"\n },\n \"kdi\": {\n \"size_in_bytes\": 1808,\n \"description\": \"Points Index\"\n },\n \"tip\": {\n \"size_in_bytes\": 25068,\n \"description\": \"Term Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 15447,\n \"size_in_bytes\": 11200471,\n \"uncommitted_operations\": 15447,\n \"uncommitted_size_in_bytes\": 11200471,\n \"earliest_last_modified_age\": 1547\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 0,\n \"evictions\": 0,\n \"hit_count\": 0,\n \"miss_count\": 2\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANXmA==\",\n \"generation\": 8,\n \"user_data\": {\n \"local_checkpoint\": \"34318\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"30749\",\n \"translog_uuid\": \"k4DZO4SWR2yvEdX8uPu-LA\",\n \"history_uuid\": \"I6CgmeRDQaSNX3h6Cypmnw\",\n \"max_seq_no\": \"34318\"\n },\n \"num_docs\": 34319\n },\n \"seq_no\": {\n \"max_seq_no\": 49765,\n \"local_checkpoint\": 49765,\n \"global_checkpoint\": 49765\n },\n \"retention_leases\": {\n \"primary_term\": 1,\n \"version\": 1587,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 49733,\n \"timestamp\": 1697081236962,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_metrics\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 428285,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 448176431,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 385153,\n \"index_time_in_millis\": 151459,\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\": 19547,\n \"query_time_in_millis\": 40232,\n \"query_current\": 0,\n \"fetch_total\": 19547,\n \"fetch_time_in_millis\": 2317,\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\": 935,\n \"total_time_in_millis\": 104445,\n \"total_docs\": 2438421,\n \"total_size_in_bytes\": 4296058058,\n \"total_stopped_time_in_millis\": 0,\n \"total_throttled_time_in_millis\": 12307,\n \"total_auto_throttle_in_bytes\": 15756213\n },\n \"refresh\": {\n \"total\": 9248,\n \"total_time_in_millis\": 271824,\n \"external_total\": 9238,\n \"external_total_time_in_millis\": 284685,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 10,\n \"periodic\": 1,\n \"total_time_in_millis\": 1763\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 9237,\n \"total_time_in_millis\": 1213\n },\n \"query_cache\": {\n \"memory_size_in_bytes\": 1272464,\n \"total_count\": 300194,\n \"hit_count\": 45659,\n \"miss_count\": 254535,\n \"cache_size\": 640,\n \"cache_count\": 2945,\n \"evictions\": 2305\n },\n \"fielddata\": {\n \"memory_size_in_bytes\": 7714152,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 18,\n \"memory_in_bytes\": 1260976,\n \"terms_memory_in_bytes\": 306240,\n \"stored_fields_memory_in_bytes\": 10304,\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\": 944432,\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 \"kdm\": {\n \"size_in_bytes\": 623284,\n \"description\": \"Points Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 7034086,\n \"description\": \"Term Dictionary\"\n },\n \"si\": {\n \"size_in_bytes\": 2336,\n \"description\": \"Segment Info\"\n },\n \"fdm\": {\n \"size_in_bytes\": 3452,\n \"description\": \"Field Metadata\"\n },\n \"kdi\": {\n \"size_in_bytes\": 427128,\n \"description\": \"Points Index\"\n },\n \"kdd\": {\n \"size_in_bytes\": 75357663,\n \"description\": \"Points\"\n },\n \"fnm\": {\n \"size_in_bytes\": 1923471,\n \"description\": \"Fields\"\n },\n \"dvm\": {\n \"size_in_bytes\": 1970940,\n \"description\": \"DocValues Metadata\"\n },\n \"tip\": {\n \"size_in_bytes\": 101244,\n \"description\": \"Term Index\"\n },\n \"fdx\": {\n \"size_in_bytes\": 77213,\n \"description\": \"Field Index\"\n },\n \"dvd\": {\n \"size_in_bytes\": 95013453,\n \"description\": \"DocValues\"\n },\n \"fdt\": {\n \"size_in_bytes\": 244531390,\n \"description\": \"Field Data\"\n },\n \"tmd\": {\n \"size_in_bytes\": 84636,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 7796847,\n \"description\": \"Frequencies\"\n }\n }\n },\n \"translog\": {\n \"operations\": 6069,\n \"size_in_bytes\": 22368500,\n \"uncommitted_operations\": 6069,\n \"uncommitted_size_in_bytes\": 22368500,\n \"earliest_last_modified_age\": 1546\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 272876,\n \"evictions\": 0,\n \"hit_count\": 37,\n \"miss_count\": 14040\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+AN7og==\",\n \"generation\": 14,\n \"user_data\": {\n \"local_checkpoint\": \"422215\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"273269\",\n \"translog_uuid\": \"8bHUUvaeRse85bMY1p6NZw\",\n \"history_uuid\": \"926AQPpBQGqna0mFAlWqQA\",\n \"max_seq_no\": \"422215\"\n },\n \"num_docs\": 422216\n },\n \"seq_no\": {\n \"max_seq_no\": 428284,\n \"local_checkpoint\": 428284,\n \"global_checkpoint\": 428284\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 3010,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 428256,\n \"timestamp\": 1697081254219,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_index\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 35,\n \"deleted\": 11\n },\n \"store\": {\n \"size_in_bytes\": 163497,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 23,\n \"index_time_in_millis\": 43,\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\": 2019,\n \"query_time_in_millis\": 1393,\n \"query_current\": 0,\n \"fetch_total\": 2019,\n \"fetch_time_in_millis\": 127,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 36,\n \"total_time_in_millis\": 304,\n \"external_total\": 26,\n \"external_total_time_in_millis\": 306,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 11,\n \"periodic\": 0,\n \"total_time_in_millis\": 1512\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 25,\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\": 3320,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 10,\n \"memory_in_bytes\": 29984,\n \"terms_memory_in_bytes\": 23040,\n \"stored_fields_memory_in_bytes\": 4880,\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\": 2064,\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 \"fdx\": {\n \"size_in_bytes\": 640,\n \"description\": \"Field Index\"\n },\n \"kdi\": {\n \"size_in_bytes\": 702,\n \"description\": \"Points Index\"\n },\n \"doc\": {\n \"size_in_bytes\": 991,\n \"description\": \"Frequencies\"\n },\n \"dvm\": {\n \"size_in_bytes\": 20070,\n \"description\": \"DocValues Metadata\"\n },\n \"fdm\": {\n \"size_in_bytes\": 1580,\n \"description\": \"Field Metadata\"\n },\n \"kdm\": {\n \"size_in_bytes\": 2570,\n \"description\": \"Points Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 8540,\n \"description\": \"Term Dictionary\"\n },\n \"dvd\": {\n \"size_in_bytes\": 5020,\n \"description\": \"DocValues\"\n },\n \"tmd\": {\n \"size_in_bytes\": 8601,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdt\": {\n \"size_in_bytes\": 69568,\n \"description\": \"Field Data\"\n },\n \"tip\": {\n \"size_in_bytes\": 810,\n \"description\": \"Term Index\"\n },\n \"fnm\": {\n \"size_in_bytes\": 22800,\n \"description\": \"Fields\"\n },\n \"kdd\": {\n \"size_in_bytes\": 1381,\n \"description\": \"Points\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 61649572\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 228238,\n \"evictions\": 0,\n \"hit_count\": 160,\n \"miss_count\": 1597\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANl4w==\",\n \"generation\": 14,\n \"user_data\": {\n \"local_checkpoint\": \"54\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"54\",\n \"translog_uuid\": \"SzNDsMV9RmGuX2jrZWwJZA\",\n \"history_uuid\": \"Nam3VjktQoGww9g7ZvEdZA\",\n \"max_seq_no\": \"54\"\n },\n \"num_docs\": 35\n },\n \"seq_no\": {\n \"max_seq_no\": 54,\n \"local_checkpoint\": 54,\n \"global_checkpoint\": 54\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 32,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 55,\n \"timestamp\": 1697064663253,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_alert-history\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 14859,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 11511365,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 14256,\n \"index_time_in_millis\": 5343,\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\": 33,\n \"query_time_in_millis\": 60,\n \"query_current\": 0,\n \"fetch_total\": 33,\n \"fetch_time_in_millis\": 12,\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\": 12,\n \"total_time_in_millis\": 431,\n \"total_docs\": 22303,\n \"total_size_in_bytes\": 17132452,\n \"total_stopped_time_in_millis\": 0,\n \"total_throttled_time_in_millis\": 0,\n \"total_auto_throttle_in_bytes\": 20971520\n },\n \"refresh\": {\n \"total\": 38,\n \"total_time_in_millis\": 853,\n \"external_total\": 30,\n \"external_total_time_in_millis\": 1044,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 6,\n \"periodic\": 0,\n \"total_time_in_millis\": 1558\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 29,\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\": 65876,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 5,\n \"memory_in_bytes\": 31300,\n \"terms_memory_in_bytes\": 24960,\n \"stored_fields_memory_in_bytes\": 2600,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 640,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 3100,\n \"index_writer_memory_in_bytes\": 2214392,\n \"version_map_memory_in_bytes\": 204750,\n \"fixed_bit_set_memory_in_bytes\": 0,\n \"max_unsafe_auto_id_timestamp\": -1,\n \"file_sizes\": {\n \"tip\": {\n \"size_in_bytes\": 6449,\n \"description\": \"Term Index\"\n },\n \"kdm\": {\n \"size_in_bytes\": 1610,\n \"description\": \"Points Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 20940,\n \"description\": \"Fields\"\n },\n \"fdx\": {\n \"size_in_bytes\": 2619,\n \"description\": \"Field Index\"\n },\n \"nvm\": {\n \"size_in_bytes\": 695,\n \"description\": \"Norms Metadata\"\n },\n \"fdm\": {\n \"size_in_bytes\": 796,\n \"description\": \"Field Metadata\"\n },\n \"si\": {\n \"size_in_bytes\": 2420,\n \"description\": \"Segment Info\"\n },\n \"doc\": {\n \"size_in_bytes\": 684238,\n \"description\": \"Frequencies\"\n },\n \"nvd\": {\n \"size_in_bytes\": 30013,\n \"description\": \"Norms\"\n },\n \"kdi\": {\n \"size_in_bytes\": 1144,\n \"description\": \"Points Index\"\n },\n \"dvd\": {\n \"size_in_bytes\": 409290,\n \"description\": \"DocValues\"\n },\n \"fdt\": {\n \"size_in_bytes\": 6982654,\n \"description\": \"Field Data\"\n },\n \"kdd\": {\n \"size_in_bytes\": 225848,\n \"description\": \"Points\"\n },\n \"pos\": {\n \"size_in_bytes\": 694823,\n \"description\": \"Positions\"\n },\n \"tmd\": {\n \"size_in_bytes\": 10197,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 252734,\n \"description\": \"Term Dictionary\"\n },\n \"dvm\": {\n \"size_in_bytes\": 17870,\n \"description\": \"DocValues Metadata\"\n }\n }\n },\n \"translog\": {\n \"operations\": 2880,\n \"size_in_bytes\": 9969124,\n \"uncommitted_operations\": 2880,\n \"uncommitted_size_in_bytes\": 9969124,\n \"earliest_last_modified_age\": 48501\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 0,\n \"evictions\": 0,\n \"hit_count\": 0,\n \"miss_count\": 1\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANXlQ==\",\n \"generation\": 14,\n \"user_data\": {\n \"local_checkpoint\": \"13553\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"12870\",\n \"translog_uuid\": \"CfSp8FIkREWrKj__zCRfXA\",\n \"history_uuid\": \"X9bFhqWyTRedrUWA-UvRHQ\",\n \"max_seq_no\": \"13553\"\n },\n \"num_docs\": 13554\n },\n \"seq_no\": {\n \"max_seq_no\": 16433,\n \"local_checkpoint\": 16433,\n \"global_checkpoint\": 16433\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 1853,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 16434,\n \"timestamp\": 1697081223719,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_cluster\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 2,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 60406,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 9,\n \"index_time_in_millis\": 25,\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\": 70,\n \"time_in_millis\": 12,\n \"exists_total\": 70,\n \"exists_time_in_millis\": 12,\n \"missing_total\": 0,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 1095,\n \"query_time_in_millis\": 208,\n \"query_current\": 0,\n \"fetch_total\": 1095,\n \"fetch_time_in_millis\": 174,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 21,\n \"total_time_in_millis\": 200,\n \"external_total\": 16,\n \"external_total_time_in_millis\": 202,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 6,\n \"periodic\": 0,\n \"total_time_in_millis\": 279\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 15,\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\": 2408,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 2,\n \"memory_in_bytes\": 17992,\n \"terms_memory_in_bytes\": 16480,\n \"stored_fields_memory_in_bytes\": 976,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 384,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 152,\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 \"tip\": {\n \"size_in_bytes\": 215,\n \"description\": \"Term Index\"\n },\n \"kdi\": {\n \"size_in_bytes\": 141,\n \"description\": \"Points Index\"\n },\n \"tim\": {\n \"size_in_bytes\": 1545,\n \"description\": \"Term Dictionary\"\n },\n \"pos\": {\n \"size_in_bytes\": 199,\n \"description\": \"Positions\"\n },\n \"fnm\": {\n \"size_in_bytes\": 13832,\n \"description\": \"Fields\"\n },\n \"kdm\": {\n \"size_in_bytes\": 571,\n \"description\": \"Points Metadata\"\n },\n \"fdt\": {\n \"size_in_bytes\": 2025,\n \"description\": \"Field Data\"\n },\n \"nvd\": {\n \"size_in_bytes\": 118,\n \"description\": \"Norms\"\n },\n \"tmd\": {\n \"size_in_bytes\": 3521,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"dvd\": {\n \"size_in_bytes\": 569,\n \"description\": \"DocValues\"\n },\n \"fdm\": {\n \"size_in_bytes\": 316,\n \"description\": \"Field Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 156,\n \"description\": \"Frequencies\"\n },\n \"nvm\": {\n \"size_in_bytes\": 350,\n \"description\": \"Norms Metadata\"\n },\n \"dvm\": {\n \"size_in_bytes\": 9740,\n \"description\": \"DocValues Metadata\"\n },\n \"kdd\": {\n \"size_in_bytes\": 223,\n \"description\": \"Points\"\n },\n \"fdx\": {\n \"size_in_bytes\": 128,\n \"description\": \"Field Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 89357884\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 8957,\n \"evictions\": 0,\n \"hit_count\": 140,\n \"miss_count\": 52\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+AM4pQ==\",\n \"generation\": 9,\n \"user_data\": {\n \"local_checkpoint\": \"10\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"9\",\n \"translog_uuid\": \"RtqptnUdTRa9MOvcqZnokQ\",\n \"history_uuid\": \"TkPlAtLFQneAVmeJGsGIAQ\",\n \"max_seq_no\": \"10\"\n },\n \"num_docs\": 2\n },\n \"seq_no\": {\n \"max_seq_no\": 10,\n \"local_checkpoint\": 10,\n \"global_checkpoint\": 10\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 25,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 11,\n \"timestamp\": 1697080714480,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_setting\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 2,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 19596,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 2,\n \"index_time_in_millis\": 7,\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\": 13,\n \"query_time_in_millis\": 0,\n \"query_current\": 0,\n \"fetch_total\": 13,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 8,\n \"total_time_in_millis\": 7,\n \"external_total\": 6,\n \"external_total_time_in_millis\": 7,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 2,\n \"periodic\": 0,\n \"total_time_in_millis\": 91\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\": 2,\n \"memory_in_bytes\": 7976,\n \"terms_memory_in_bytes\": 6848,\n \"stored_fields_memory_in_bytes\": 976,\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\": 152,\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 \"fdm\": {\n \"size_in_bytes\": 316,\n \"description\": \"Field Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 810,\n \"description\": \"Term Dictionary\"\n },\n \"fdt\": {\n \"size_in_bytes\": 1327,\n \"description\": \"Field Data\"\n },\n \"kdd\": {\n \"size_in_bytes\": 210,\n \"description\": \"Points\"\n },\n \"dvd\": {\n \"size_in_bytes\": 510,\n \"description\": \"DocValues\"\n },\n \"dvm\": {\n \"size_in_bytes\": 4800,\n \"description\": \"DocValues Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 156,\n \"description\": \"Frequencies\"\n },\n \"fdx\": {\n \"size_in_bytes\": 128,\n \"description\": \"Field Index\"\n },\n \"tmd\": {\n \"size_in_bytes\": 1976,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 6458,\n \"description\": \"Fields\"\n },\n \"kdm\": {\n \"size_in_bytes\": 514,\n \"description\": \"Points Metadata\"\n },\n \"kdi\": {\n \"size_in_bytes\": 140,\n \"description\": \"Points Index\"\n },\n \"tip\": {\n \"size_in_bytes\": 172,\n \"description\": \"Term Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 89337882\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 \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+AM4tQ==\",\n \"generation\": 4,\n \"user_data\": {\n \"local_checkpoint\": \"1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"1\",\n \"translog_uuid\": \"9XEF-76JQ4KooFrpa_LAwQ\",\n \"history_uuid\": \"d54mw3ZmRVi-jZ8yfvW2zQ\",\n \"max_seq_no\": \"1\"\n },\n \"num_docs\": 2\n },\n \"seq_no\": {\n \"max_seq_no\": 1,\n \"local_checkpoint\": 1,\n \"global_checkpoint\": 1\n },\n \"retention_leases\": {\n \"primary_term\": 1,\n \"version\": 8,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 2,\n \"timestamp\": 1697063200732,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_instance\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 2,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 20226,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 2,\n \"index_time_in_millis\": 4,\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\": 1254,\n \"time_in_millis\": 185,\n \"exists_total\": 1253,\n \"exists_time_in_millis\": 185,\n \"missing_total\": 1,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 941,\n \"query_time_in_millis\": 102,\n \"query_current\": 0,\n \"fetch_total\": 941,\n \"fetch_time_in_millis\": 104,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 8,\n \"total_time_in_millis\": 116,\n \"external_total\": 6,\n \"external_total_time_in_millis\": 127,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 3,\n \"periodic\": 0,\n \"total_time_in_millis\": 109\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\": 2,\n \"memory_in_bytes\": 7784,\n \"terms_memory_in_bytes\": 6400,\n \"stored_fields_memory_in_bytes\": 976,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 256,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 152,\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 \"tmd\": {\n \"size_in_bytes\": 1952,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdx\": {\n \"size_in_bytes\": 128,\n \"description\": \"Field Index\"\n },\n \"nvm\": {\n \"size_in_bytes\": 278,\n \"description\": \"Norms Metadata\"\n },\n \"pos\": {\n \"size_in_bytes\": 158,\n \"description\": \"Positions\"\n },\n \"kdm\": {\n \"size_in_bytes\": 742,\n \"description\": \"Points Metadata\"\n },\n \"dvm\": {\n \"size_in_bytes\": 4990,\n \"description\": \"DocValues Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 156,\n \"description\": \"Frequencies\"\n },\n \"fnm\": {\n \"size_in_bytes\": 6014,\n \"description\": \"Fields\"\n },\n \"kdi\": {\n \"size_in_bytes\": 144,\n \"description\": \"Points Index\"\n },\n \"tip\": {\n \"size_in_bytes\": 170,\n \"description\": \"Term Index\"\n },\n \"fdm\": {\n \"size_in_bytes\": 316,\n \"description\": \"Field Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 806,\n \"description\": \"Term Dictionary\"\n },\n \"nvd\": {\n \"size_in_bytes\": 118,\n \"description\": \"Norms\"\n },\n \"kdd\": {\n \"size_in_bytes\": 262,\n \"description\": \"Points\"\n },\n \"dvd\": {\n \"size_in_bytes\": 514,\n \"description\": \"DocValues\"\n },\n \"fdt\": {\n \"size_in_bytes\": 1251,\n \"description\": \"Field Data\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 75739887\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 \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANPeA==\",\n \"generation\": 5,\n \"user_data\": {\n \"local_checkpoint\": \"2\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"2\",\n \"translog_uuid\": \"88n9y8OCTXyzZnxOtEGJIg\",\n \"history_uuid\": \"4taWEqsLQdSrM7gdXLOwAQ\",\n \"max_seq_no\": \"2\"\n },\n \"num_docs\": 2\n },\n \"seq_no\": {\n \"max_seq_no\": 2,\n \"local_checkpoint\": 2,\n \"global_checkpoint\": 2\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 20,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 3,\n \"timestamp\": 1697074742899,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_visualization\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320269\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgZA==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"D18jcqtgS8qTg41f_HkxIQ\",\n \"history_uuid\": \"PqRUnWTrQPWhL-xDdhzT9A\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663049,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_commands\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 357,\n \"query_time_in_millis\": 20,\n \"query_current\": 0,\n \"fetch_total\": 357,\n \"fetch_time_in_millis\": 2,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319991\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgMw==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"geAjkMotTVe_bFw_ILKp8g\",\n \"history_uuid\": \"QnTj6_NRTsydsHfK48iemQ\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663253,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_alert-rule\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 9,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 51333,\n \"reserved_in_bytes\": 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\": 2,\n \"time_in_millis\": 0,\n \"exists_total\": 2,\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\": 53,\n \"query_time_in_millis\": 3,\n \"query_current\": 0,\n \"fetch_total\": 53,\n \"fetch_time_in_millis\": 30,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 13852,\n \"terms_memory_in_bytes\": 11488,\n \"stored_fields_memory_in_bytes\": 488,\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\": 1876,\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 \"dvm\": {\n \"size_in_bytes\": 9452,\n \"description\": \"DocValues Metadata\"\n },\n \"kdm\": {\n \"size_in_bytes\": 599,\n \"description\": \"Points Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 526,\n \"description\": \"Frequencies\"\n },\n \"tip\": {\n \"size_in_bytes\": 122,\n \"description\": \"Term Index\"\n },\n \"tim\": {\n \"size_in_bytes\": 4617,\n \"description\": \"Term Dictionary\"\n },\n \"kdi\": {\n \"size_in_bytes\": 82,\n \"description\": \"Points Index\"\n },\n \"dvd\": {\n \"size_in_bytes\": 3802,\n \"description\": \"DocValues\"\n },\n \"fnm\": {\n \"size_in_bytes\": 10973,\n \"description\": \"Fields\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"tmd\": {\n \"size_in_bytes\": 3461,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdt\": {\n \"size_in_bytes\": 15862,\n \"description\": \"Field Data\"\n },\n \"kdd\": {\n \"size_in_bytes\": 460,\n \"description\": \"Points\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319263\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhyQ==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"8\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"DouMW08FQIyr_WUH1uIItA\",\n \"history_uuid\": \"p9uVyreSQPOdxzk4ftRe7w\",\n \"max_seq_no\": \"8\"\n },\n \"num_docs\": 9\n },\n \"seq_no\": {\n \"max_seq_no\": 8,\n \"local_checkpoint\": 8,\n \"global_checkpoint\": 8\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 9,\n \"timestamp\": 1697064664083,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_flow\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320658\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVg2Q==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"glY0PjPVR7O26vE93xNerQ\",\n \"history_uuid\": \"tbouBOTWT8m-Q-uIkX-ymQ\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064201796,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_esnodeinfo\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 2,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 36852,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 59,\n \"index_time_in_millis\": 45,\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\": 3,\n \"time_in_millis\": 0,\n \"exists_total\": 2,\n \"exists_time_in_millis\": 0,\n \"missing_total\": 1,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 782,\n \"query_time_in_millis\": 67,\n \"query_current\": 0,\n \"fetch_total\": 782,\n \"fetch_time_in_millis\": 56,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 83,\n \"total_time_in_millis\": 1142,\n \"external_total\": 64,\n \"external_total_time_in_millis\": 1231,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 19,\n \"periodic\": 0,\n \"total_time_in_millis\": 1112\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 63,\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\": 1,\n \"memory_in_bytes\": 5428,\n \"terms_memory_in_bytes\": 4544,\n \"stored_fields_memory_in_bytes\": 488,\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\": 396,\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 \"tmd\": {\n \"size_in_bytes\": 1274,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdt\": {\n \"size_in_bytes\": 3332,\n \"description\": \"Field Data\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 4141,\n \"description\": \"Fields\"\n },\n \"doc\": {\n \"size_in_bytes\": 96,\n \"description\": \"Frequencies\"\n },\n \"dvm\": {\n \"size_in_bytes\": 3955,\n \"description\": \"DocValues Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 764,\n \"description\": \"Term Dictionary\"\n },\n \"kdd\": {\n \"size_in_bytes\": 193,\n \"description\": \"Points\"\n },\n \"dvd\": {\n \"size_in_bytes\": 600,\n \"description\": \"DocValues\"\n },\n \"kdm\": {\n \"size_in_bytes\": 371,\n \"description\": \"Points Metadata\"\n },\n \"tip\": {\n \"size_in_bytes\": 91,\n \"description\": \"Term Index\"\n },\n \"kdi\": {\n \"size_in_bytes\": 74,\n \"description\": \"Points Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 64161364\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 \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANg6Q==\",\n \"generation\": 21,\n \"user_data\": {\n \"local_checkpoint\": \"58\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"55\",\n \"translog_uuid\": \"7dm3w6dpR3aM5cPH76STWw\",\n \"history_uuid\": \"dUbn0AnnQgmHYo_gZueQxA\",\n \"max_seq_no\": \"58\"\n },\n \"num_docs\": 2\n },\n \"seq_no\": {\n \"max_seq_no\": 58,\n \"local_checkpoint\": 58,\n \"global_checkpoint\": 58\n },\n \"retention_leases\": {\n \"primary_term\": 1,\n \"version\": 33,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 59,\n \"timestamp\": 1697064200970,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_node\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 2,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 35686,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 2,\n \"index_time_in_millis\": 16,\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\": 3082,\n \"query_time_in_millis\": 905,\n \"query_current\": 0,\n \"fetch_total\": 3082,\n \"fetch_time_in_millis\": 207,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 8,\n \"total_time_in_millis\": 65,\n \"external_total\": 6,\n \"external_total_time_in_millis\": 65,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 2,\n \"periodic\": 0,\n \"total_time_in_millis\": 207\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\": 2216,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 2,\n \"memory_in_bytes\": 8952,\n \"terms_memory_in_bytes\": 7296,\n \"stored_fields_memory_in_bytes\": 976,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 256,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 424,\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 \"dvm\": {\n \"size_in_bytes\": 4918,\n \"description\": \"DocValues Metadata\"\n },\n \"pos\": {\n \"size_in_bytes\": 246,\n \"description\": \"Positions\"\n },\n \"doc\": {\n \"size_in_bytes\": 156,\n \"description\": \"Frequencies\"\n },\n \"fdt\": {\n \"size_in_bytes\": 16286,\n \"description\": \"Field Data\"\n },\n \"tmd\": {\n \"size_in_bytes\": 2069,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 1392,\n \"description\": \"Term Dictionary\"\n },\n \"dvd\": {\n \"size_in_bytes\": 626,\n \"description\": \"DocValues\"\n },\n \"fdx\": {\n \"size_in_bytes\": 128,\n \"description\": \"Field Index\"\n },\n \"tip\": {\n \"size_in_bytes\": 174,\n \"description\": \"Term Index\"\n },\n \"kdi\": {\n \"size_in_bytes\": 138,\n \"description\": \"Points Index\"\n },\n \"nvd\": {\n \"size_in_bytes\": 118,\n \"description\": \"Norms\"\n },\n \"kdm\": {\n \"size_in_bytes\": 400,\n \"description\": \"Points Metadata\"\n },\n \"fdm\": {\n \"size_in_bytes\": 316,\n \"description\": \"Field Metadata\"\n },\n \"nvm\": {\n \"size_in_bytes\": 278,\n \"description\": \"Norms Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 6030,\n \"description\": \"Fields\"\n },\n \"kdd\": {\n \"size_in_bytes\": 184,\n \"description\": \"Points\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 89327860\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 732716,\n \"evictions\": 0,\n \"hit_count\": 462,\n \"miss_count\": 1596\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+AM4vQ==\",\n \"generation\": 5,\n \"user_data\": {\n \"local_checkpoint\": \"2\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"2\",\n \"translog_uuid\": \"ix5LHEnBS3ah_on8EpVUWg\",\n \"history_uuid\": \"KqvEnJC1SveMzcVUh1vWOg\",\n \"max_seq_no\": \"2\"\n },\n \"num_docs\": 2\n },\n \"seq_no\": {\n \"max_seq_no\": 2,\n \"local_checkpoint\": 2,\n \"global_checkpoint\": 2\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 20,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 3,\n \"timestamp\": 1697080714072,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_router\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320637\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgyA==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"lCyTvKtRTs2ZTmWSqhUjfg\",\n \"history_uuid\": \"xnsqhlPJTA-cIDCWEAodLw\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064201796,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ]\n }\n },\n \"os\": {\n \"timestamp\": 1697081260487,\n \"cpu\": {\n \"percent\": 16,\n \"load_average\": {\n \"1m\": 2.40087890625\n }\n },\n \"mem\": {\n \"total_in_bytes\": 25769803776,\n \"free_in_bytes\": 63881216,\n \"used_in_bytes\": 25705922560,\n \"free_percent\": 0,\n \"used_percent\": 100\n },\n \"swap\": {\n \"total_in_bytes\": 0,\n \"free_in_bytes\": 0,\n \"used_in_bytes\": 0\n }\n },\n \"process\": {\n \"timestamp\": 1697081260487,\n \"open_file_descriptors\": 349,\n \"max_file_descriptors\": 10240,\n \"cpu\": {\n \"percent\": 1,\n \"total_in_millis\": 3183961\n },\n \"mem\": {\n \"total_virtual_in_bytes\": 422626476032\n }\n },\n \"jvm\": {\n \"timestamp\": 1697081260487,\n \"uptime_in_millis\": 100012879,\n \"mem\": {\n \"heap_used_in_bytes\": 364266568,\n \"heap_used_percent\": 33,\n \"heap_committed_in_bytes\": 1073741824,\n \"heap_max_in_bytes\": 1073741824,\n \"non_heap_used_in_bytes\": 202350680,\n \"non_heap_committed_in_bytes\": 211943424,\n \"pools\": {\n \"young\": {\n \"used_in_bytes\": 112197632,\n \"max_in_bytes\": 0,\n \"peak_used_in_bytes\": 641728512,\n \"peak_max_in_bytes\": 0\n },\n \"old\": {\n \"used_in_bytes\": 242184696,\n \"max_in_bytes\": 1073741824,\n \"peak_used_in_bytes\": 323158520,\n \"peak_max_in_bytes\": 1073741824\n },\n \"survivor\": {\n \"used_in_bytes\": 9884240,\n \"max_in_bytes\": 0,\n \"peak_used_in_bytes\": 39321600,\n \"peak_max_in_bytes\": 0\n }\n }\n },\n \"threads\": {\n \"count\": 76,\n \"peak_count\": 88\n },\n \"gc\": {\n \"collectors\": {\n \"young\": {\n \"collection_count\": 2497,\n \"collection_time_in_millis\": 12412\n },\n \"old\": {\n \"collection_count\": 0,\n \"collection_time_in_millis\": 0\n }\n }\n },\n \"buffer_pools\": {\n \"mapped\": {\n \"count\": 131,\n \"used_in_bytes\": 229793154,\n \"total_capacity_in_bytes\": 229793154\n },\n \"direct\": {\n \"count\": 67,\n \"used_in_bytes\": 9242792,\n \"total_capacity_in_bytes\": 9242791\n },\n \"mapped - 'non-volatile memory'\": {\n \"count\": 0,\n \"used_in_bytes\": 0,\n \"total_capacity_in_bytes\": 0\n }\n },\n \"classes\": {\n \"current_loaded_count\": 19030,\n \"total_loaded_count\": 19201,\n \"total_unloaded_count\": 171\n }\n },\n \"thread_pool\": {\n \"analyze\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"fetch_shard_started\": {\n \"threads\": 1,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 16,\n \"completed\": 26\n },\n \"fetch_shard_store\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"flush\": {\n \"threads\": 1,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 4,\n \"completed\": 116\n },\n \"force_merge\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"generic\": {\n \"threads\": 13,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 13,\n \"completed\": 110391\n },\n \"get\": {\n \"threads\": 8,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 8,\n \"completed\": 2004\n },\n \"listener\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"management\": {\n \"threads\": 5,\n \"queue\": 0,\n \"active\": 1,\n \"rejected\": 0,\n \"largest\": 5,\n \"completed\": 273140\n },\n \"open_distro_job_scheduler\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"refresh\": {\n \"threads\": 4,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 4,\n \"completed\": 2790858\n },\n \"search\": {\n \"threads\": 13,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 13,\n \"completed\": 3024174\n },\n \"search_throttled\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"snapshot\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"system_read\": {\n \"threads\": 1,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 1,\n \"completed\": 1\n },\n \"system_write\": {\n \"threads\": 1,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 1,\n \"completed\": 1\n },\n \"warmer\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"write\": {\n \"threads\": 8,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 8,\n \"completed\": 30286\n }\n },\n \"fs\": {\n \"timestamp\": 1697081260487,\n \"total\": {\n \"total_in_bytes\": 994662584320,\n \"free_in_bytes\": 408603504640,\n \"available_in_bytes\": 408603504640\n },\n \"data\": [\n {\n \"path\": \"/opt/easysearch/data/nodes/0\",\n \"mount\": \"/System/Volumes/Data (/dev/disk3s5)\",\n \"type\": \"apfs\",\n \"total_in_bytes\": 994662584320,\n \"free_in_bytes\": 408603504640,\n \"available_in_bytes\": 408603504640\n }\n ]\n },\n \"transport\": {\n \"server_open\": 0,\n \"total_outbound_connections\": 0,\n \"rx_count\": 0,\n \"rx_size_in_bytes\": 0,\n \"tx_count\": 0,\n \"tx_size_in_bytes\": 0\n },\n \"http\": {\n \"current_open\": 16,\n \"total_opened\": 9407\n },\n \"breakers\": {\n \"request\": {\n \"limit_size_in_bytes\": 644245094,\n \"limit_size\": \"614.3mb\",\n \"estimated_size_in_bytes\": 0,\n \"estimated_size\": \"0b\",\n \"overhead\": 1,\n \"tripped\": 0\n },\n \"fielddata\": {\n \"limit_size_in_bytes\": 429496729,\n \"limit_size\": \"409.5mb\",\n \"estimated_size_in_bytes\": 7790276,\n \"estimated_size\": \"7.4mb\",\n \"overhead\": 1.03,\n \"tripped\": 0\n },\n \"in_flight_requests\": {\n \"limit_size_in_bytes\": 1073741824,\n \"limit_size\": \"1gb\",\n \"estimated_size_in_bytes\": 0,\n \"estimated_size\": \"0b\",\n \"overhead\": 2,\n \"tripped\": 0\n },\n \"accounting\": {\n \"limit_size_in_bytes\": 1073741824,\n \"limit_size\": \"1gb\",\n \"estimated_size_in_bytes\": 1503060,\n \"estimated_size\": \"1.4mb\",\n \"overhead\": 1,\n \"tripped\": 0\n },\n \"parent\": {\n \"limit_size_in_bytes\": 1020054732,\n \"limit_size\": \"972.7mb\",\n \"estimated_size_in_bytes\": 364266568,\n \"estimated_size\": \"347.3mb\",\n \"overhead\": 1,\n \"tripped\": 0\n }\n },\n \"script\": {\n \"compilations\": 1,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n \"discovery\": {\n \"cluster_state_queue\": {\n \"total\": 0,\n \"pending\": 0,\n \"committed\": 0\n },\n \"published_cluster_states\": {\n \"full_states\": 2,\n \"incompatible_diffs\": 0,\n \"compatible_diffs\": 53\n }\n },\n \"ingest\": {\n \"total\": {\n \"count\": 0,\n \"time_in_millis\": 0,\n \"current\": 0,\n \"failed\": 0\n },\n \"pipelines\": {}\n },\n \"adaptive_selection\": {\n \"-N1pmqLWQ-etRKI5B2L4yw\": {\n \"outgoing_searches\": 0,\n \"avg_queue_size\": 0,\n \"avg_service_time_ns\": 110164,\n \"avg_response_time_ns\": 364949,\n \"rank\": \"0.4\"\n }\n },\n \"script_cache\": {\n \"sum\": {\n \"compilations\": 1,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n \"contexts\": [\n {\n \"context\": \"aggregation_selector\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"aggs\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"aggs_combine\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"aggs_init\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"aggs_map\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"aggs_reduce\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"analysis\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"bucket_aggregation\",\n \"compilations\": 1,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"field\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"filter\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"ingest\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"interval\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"moving-function\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"number_sort\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"painless_test\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"processor_conditional\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"score\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"script_heuristic\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"similarity\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"similarity_weight\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"string_sort\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"template\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"terms_set\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"update\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n }\n ]\n },\n \"indexing_pressure\": {\n \"memory\": {\n \"current\": {\n \"combined_coordinating_and_primary_in_bytes\": 0,\n \"coordinating_in_bytes\": 0,\n \"primary_in_bytes\": 0,\n \"replica_in_bytes\": 0,\n \"all_in_bytes\": 0\n },\n \"total\": {\n \"combined_coordinating_and_primary_in_bytes\": 2775456967,\n \"coordinating_in_bytes\": 2775456967,\n \"primary_in_bytes\": 2860425703,\n \"replica_in_bytes\": 0,\n \"all_in_bytes\": 2775456967,\n \"coordinating_rejections\": 0,\n \"primary_rejections\": 0,\n \"replica_rejections\": 0\n },\n \"limit_in_bytes\": 107374182\n }\n }\n }\n }\n}" + jsonStr := "{\n \"_nodes\": {\n \"total\": 1,\n \"successful\": 1,\n \"failed\": 0\n },\n \"cluster_name\": \"easysearch\",\n \"nodes\": {\n \"-N1pmqLWQ-etRKI5B2L4yw\": {\n \"timestamp\": 1697081260449,\n \"name\": \"INFINI-4.local\",\n \"transport_address\": \"127.0.0.1:9300\",\n \"host\": \"127.0.0.1\",\n \"ip\": \"127.0.0.1:9300\",\n \"roles\": [\n \"data\",\n \"ingest\",\n \"master\",\n \"remote_cluster_client\"\n ],\n \"indices\": {\n \"docs\": {\n \"count\": 477612,\n \"deleted\": 12\n },\n \"store\": {\n \"size_in_bytes\": 467980247,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 449302,\n \"index_time_in_millis\": 161527,\n \"index_current\": 0,\n \"index_failed\": 1,\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\": 2012,\n \"time_in_millis\": 317,\n \"exists_total\": 2010,\n \"exists_time_in_millis\": 317,\n \"missing_total\": 2,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 1512087,\n \"query_time_in_millis\": 76202,\n \"query_current\": 0,\n \"fetch_total\": 1512087,\n \"fetch_time_in_millis\": 7409,\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\": 948,\n \"total_time_in_millis\": 104884,\n \"total_docs\": 2460771,\n \"total_size_in_bytes\": 4313348902,\n \"total_stopped_time_in_millis\": 0,\n \"total_throttled_time_in_millis\": 12307,\n \"total_auto_throttle_in_bytes\": 623930293\n },\n \"refresh\": {\n \"total\": 9549,\n \"total_time_in_millis\": 274975,\n \"external_total\": 9472,\n \"external_total_time_in_millis\": 288145,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 97,\n \"periodic\": 1,\n \"total_time_in_millis\": 9272\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 9441,\n \"total_time_in_millis\": 1215\n },\n \"query_cache\": {\n \"memory_size_in_bytes\": 1272464,\n \"total_count\": 300194,\n \"hit_count\": 45659,\n \"miss_count\": 254535,\n \"cache_size\": 640,\n \"cache_count\": 2945,\n \"evictions\": 2305\n },\n \"fielddata\": {\n \"memory_size_in_bytes\": 7790276,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 77,\n \"memory_in_bytes\": 1503900,\n \"terms_memory_in_bytes\": 497952,\n \"stored_fields_memory_in_bytes\": 39544,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 2176,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 964228,\n \"index_writer_memory_in_bytes\": 8423708,\n \"version_map_memory_in_bytes\": 204750,\n \"fixed_bit_set_memory_in_bytes\": 0,\n \"max_unsafe_auto_id_timestamp\": -1,\n \"file_sizes\": {\n \"doc\": {\n \"size_in_bytes\": 8538208,\n \"description\": \"Frequencies\"\n },\n \"fdm\": {\n \"size_in_bytes\": 12782,\n \"description\": \"Field Metadata\"\n },\n \"pos\": {\n \"size_in_bytes\": 696150,\n \"description\": \"Positions\"\n },\n \"tmd\": {\n \"size_in_bytes\": 156591,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdx\": {\n \"size_in_bytes\": 84884,\n \"description\": \"Field Index\"\n },\n \"tim\": {\n \"size_in_bytes\": 8857720,\n \"description\": \"Term Dictionary\"\n },\n \"kdi\": {\n \"size_in_bytes\": 433179,\n \"description\": \"Points Index\"\n },\n \"nvd\": {\n \"size_in_bytes\": 30898,\n \"description\": \"Norms\"\n },\n \"kdd\": {\n \"size_in_bytes\": 75845288,\n \"description\": \"Points\"\n },\n \"si\": {\n \"size_in_bytes\": 5312,\n \"description\": \"Segment Info\"\n },\n \"fnm\": {\n \"size_in_bytes\": 2099537,\n \"description\": \"Fields\"\n },\n \"dvd\": {\n \"size_in_bytes\": 97693364,\n \"description\": \"DocValues\"\n },\n \"kdm\": {\n \"size_in_bytes\": 638766,\n \"description\": \"Points Metadata\"\n },\n \"nvm\": {\n \"size_in_bytes\": 2564,\n \"description\": \"Norms Metadata\"\n },\n \"dvm\": {\n \"size_in_bytes\": 2125629,\n \"description\": \"DocValues Metadata\"\n },\n \"fdt\": {\n \"size_in_bytes\": 254174847,\n \"description\": \"Field Data\"\n },\n \"tip\": {\n \"size_in_bytes\": 136544,\n \"description\": \"Term Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 24396,\n \"size_in_bytes\": 43539580,\n \"uncommitted_operations\": 24396,\n \"uncommitted_size_in_bytes\": 43539580,\n \"earliest_last_modified_age\": 1546\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 1257881,\n \"evictions\": 0,\n \"hit_count\": 1159,\n \"miss_count\": 17312\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"shards\": {\n \".infini_credential\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 1,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 6369,\n \"reserved_in_bytes\": 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\": 7,\n \"time_in_millis\": 1,\n \"exists_total\": 7,\n \"exists_time_in_millis\": 1,\n \"missing_total\": 0,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 55,\n \"query_time_in_millis\": 5,\n \"query_current\": 0,\n \"fetch_total\": 55,\n \"fetch_time_in_millis\": 4,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 2684,\n \"terms_memory_in_bytes\": 1856,\n \"stored_fields_memory_in_bytes\": 488,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 128,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 212,\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 \"dvm\": {\n \"size_in_bytes\": 1107,\n \"description\": \"DocValues Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 1532,\n \"description\": \"Fields\"\n },\n \"kdi\": {\n \"size_in_bytes\": 69,\n \"description\": \"Points Index\"\n },\n \"kdd\": {\n \"size_in_bytes\": 92,\n \"description\": \"Points\"\n },\n \"dvd\": {\n \"size_in_bytes\": 137,\n \"description\": \"DocValues\"\n },\n \"kdm\": {\n \"size_in_bytes\": 200,\n \"description\": \"Points Metadata\"\n },\n \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"nvm\": {\n \"size_in_bytes\": 139,\n \"description\": \"Norms Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 294,\n \"description\": \"Term Dictionary\"\n },\n \"nvd\": {\n \"size_in_bytes\": 59,\n \"description\": \"Norms\"\n },\n \"doc\": {\n \"size_in_bytes\": 78,\n \"description\": \"Frequencies\"\n },\n \"tip\": {\n \"size_in_bytes\": 79,\n \"description\": \"Term Index\"\n },\n \"fdt\": {\n \"size_in_bytes\": 476,\n \"description\": \"Field Data\"\n },\n \"pos\": {\n \"size_in_bytes\": 88,\n \"description\": \"Positions\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"tmd\": {\n \"size_in_bytes\": 568,\n \"description\": \"Term Dictionary Metadata\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319976\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhzw==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"0\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"XeIHjY_XSYeZE6zO1l4Iiw\",\n \"history_uuid\": \"dbN5xzwCQwap_sHwoow5yw\",\n \"max_seq_no\": \"0\"\n },\n \"num_docs\": 1\n },\n \"seq_no\": {\n \"max_seq_no\": 0,\n \"local_checkpoint\": 0,\n \"global_checkpoint\": 0\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 1,\n \"timestamp\": 1697064663253,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_channel\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 12,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 29366,\n \"reserved_in_bytes\": 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\": 11,\n \"query_time_in_millis\": 1,\n \"query_current\": 0,\n \"fetch_total\": 11,\n \"fetch_time_in_millis\": 4,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 3988,\n \"terms_memory_in_bytes\": 3200,\n \"stored_fields_memory_in_bytes\": 488,\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\": 300,\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 \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"kdd\": {\n \"size_in_bytes\": 294,\n \"description\": \"Points\"\n },\n \"fnm\": {\n \"size_in_bytes\": 2903,\n \"description\": \"Fields\"\n },\n \"kdm\": {\n \"size_in_bytes\": 257,\n \"description\": \"Points Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 147,\n \"description\": \"Frequencies\"\n },\n \"dvm\": {\n \"size_in_bytes\": 2775,\n \"description\": \"DocValues Metadata\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"tmd\": {\n \"size_in_bytes\": 1393,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 1835,\n \"description\": \"Term Dictionary\"\n },\n \"kdi\": {\n \"size_in_bytes\": 71,\n \"description\": \"Points Index\"\n },\n \"fdt\": {\n \"size_in_bytes\": 16702,\n \"description\": \"Field Data\"\n },\n \"dvd\": {\n \"size_in_bytes\": 1525,\n \"description\": \"DocValues\"\n },\n \"tip\": {\n \"size_in_bytes\": 85,\n \"description\": \"Term Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319300\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhxQ==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"11\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"TwSG1HMzQj-5-AbeRabieQ\",\n \"history_uuid\": \"l8Ge7BEMRfi_o6kn5u9PIg\",\n \"max_seq_no\": \"11\"\n },\n \"num_docs\": 12\n },\n \"seq_no\": {\n \"max_seq_no\": 11,\n \"local_checkpoint\": 11,\n \"global_checkpoint\": 11\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 12,\n \"timestamp\": 1697064664083,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_rbac-user\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 1,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 7776,\n \"reserved_in_bytes\": 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\": 517,\n \"time_in_millis\": 69,\n \"exists_total\": 517,\n \"exists_time_in_millis\": 69,\n \"missing_total\": 0,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 7,\n \"query_time_in_millis\": 1,\n \"query_current\": 0,\n \"fetch_total\": 7,\n \"fetch_time_in_millis\": 1,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 2868,\n \"terms_memory_in_bytes\": 2304,\n \"stored_fields_memory_in_bytes\": 488,\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\": 76,\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 \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"doc\": {\n \"size_in_bytes\": 78,\n \"description\": \"Frequencies\"\n },\n \"tip\": {\n \"size_in_bytes\": 81,\n \"description\": \"Term Index\"\n },\n \"kdm\": {\n \"size_in_bytes\": 257,\n \"description\": \"Points Metadata\"\n },\n \"tmd\": {\n \"size_in_bytes\": 718,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"kdd\": {\n \"size_in_bytes\": 105,\n \"description\": \"Points\"\n },\n \"tim\": {\n \"size_in_bytes\": 296,\n \"description\": \"Term Dictionary\"\n },\n \"dvd\": {\n \"size_in_bytes\": 196,\n \"description\": \"DocValues\"\n },\n \"dvm\": {\n \"size_in_bytes\": 1995,\n \"description\": \"DocValues Metadata\"\n },\n \"kdi\": {\n \"size_in_bytes\": 70,\n \"description\": \"Points Index\"\n },\n \"fnm\": {\n \"size_in_bytes\": 2155,\n \"description\": \"Fields\"\n },\n \"fdt\": {\n \"size_in_bytes\": 448,\n \"description\": \"Field Data\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319933\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVh0A==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"0\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"vaQ-QqskSeOMbQT_PiGcTQ\",\n \"history_uuid\": \"XvrievjDSyaJ_DHH4OCpHQ\",\n \"max_seq_no\": \"0\"\n },\n \"num_docs\": 1\n },\n \"seq_no\": {\n \"max_seq_no\": 0,\n \"local_checkpoint\": 0,\n \"global_checkpoint\": 0\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 1,\n \"timestamp\": 1697064663253,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_notification\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 520,\n \"query_time_in_millis\": 18,\n \"query_current\": 0,\n \"fetch_total\": 520,\n \"fetch_time_in_millis\": 2,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320474\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgkA==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"I2PS9e_JSmuXb2nUsyhCQQ\",\n \"history_uuid\": \"gkStaBlsSE69B2ZgjyVeYQ\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663049,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_task\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 1468484,\n \"query_time_in_millis\": 32782,\n \"query_current\": 0,\n \"fetch_total\": 1468484,\n \"fetch_time_in_millis\": 3688,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320408\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 815,\n \"evictions\": 0,\n \"hit_count\": 37,\n \"miss_count\": 1\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVggg==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"JI1GpiuySw2Pj3wjAvMyWg\",\n \"history_uuid\": \"L_3w9_RuRkuYMaBL2WJoDw\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663049,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_widget\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 4,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 12955,\n \"reserved_in_bytes\": 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\": 25,\n \"time_in_millis\": 4,\n \"exists_total\": 25,\n \"exists_time_in_millis\": 4,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 4572,\n \"terms_memory_in_bytes\": 3872,\n \"stored_fields_memory_in_bytes\": 488,\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\": 212,\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 \"fdt\": {\n \"size_in_bytes\": 1904,\n \"description\": \"Field Data\"\n },\n \"dvm\": {\n \"size_in_bytes\": 3209,\n \"description\": \"DocValues Metadata\"\n },\n \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 3714,\n \"description\": \"Fields\"\n },\n \"kdd\": {\n \"size_in_bytes\": 145,\n \"description\": \"Points\"\n },\n \"kdm\": {\n \"size_in_bytes\": 314,\n \"description\": \"Points Metadata\"\n },\n \"tip\": {\n \"size_in_bytes\": 88,\n \"description\": \"Term Index\"\n },\n \"doc\": {\n \"size_in_bytes\": 126,\n \"description\": \"Frequencies\"\n },\n \"dvd\": {\n \"size_in_bytes\": 417,\n \"description\": \"DocValues\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"tim\": {\n \"size_in_bytes\": 611,\n \"description\": \"Term Dictionary\"\n },\n \"tmd\": {\n \"size_in_bytes\": 979,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"kdi\": {\n \"size_in_bytes\": 71,\n \"description\": \"Points Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319479\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhxw==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"3\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"mj4eSAWZRl6uMJBIXxyx0Q\",\n \"history_uuid\": \"N73_Jb0sRDKJh_3Gm4SAQw\",\n \"max_seq_no\": \"3\"\n },\n \"num_docs\": 4\n },\n \"seq_no\": {\n \"max_seq_no\": 3,\n \"local_checkpoint\": 3,\n \"global_checkpoint\": 3\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 4,\n \"timestamp\": 1697064663668,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_hostinfo\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 2,\n \"deleted\": 1\n },\n \"store\": {\n \"size_in_bytes\": 15377,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 4,\n \"index_time_in_millis\": 7,\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\": 102,\n \"time_in_millis\": 32,\n \"exists_total\": 102,\n \"exists_time_in_millis\": 32,\n \"missing_total\": 0,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 74,\n \"query_time_in_millis\": 8,\n \"query_current\": 0,\n \"fetch_total\": 74,\n \"fetch_time_in_millis\": 3,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 9,\n \"total_time_in_millis\": 31,\n \"external_total\": 7,\n \"external_total_time_in_millis\": 31,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 2,\n \"periodic\": 0,\n \"total_time_in_millis\": 125\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 6,\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\": 144,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 2,\n \"memory_in_bytes\": 4424,\n \"terms_memory_in_bytes\": 3040,\n \"stored_fields_memory_in_bytes\": 976,\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\": 408,\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 \"tim\": {\n \"size_in_bytes\": 401,\n \"description\": \"Term Dictionary\"\n },\n \"fdt\": {\n \"size_in_bytes\": 1118,\n \"description\": \"Field Data\"\n },\n \"doc\": {\n \"size_in_bytes\": 166,\n \"description\": \"Frequencies\"\n },\n \"tmd\": {\n \"size_in_bytes\": 976,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdx\": {\n \"size_in_bytes\": 128,\n \"description\": \"Field Index\"\n },\n \"dvd\": {\n \"size_in_bytes\": 288,\n \"description\": \"DocValues\"\n },\n \"kdm\": {\n \"size_in_bytes\": 742,\n \"description\": \"Points Metadata\"\n },\n \"tip\": {\n \"size_in_bytes\": 155,\n \"description\": \"Term Index\"\n },\n \"fdm\": {\n \"size_in_bytes\": 316,\n \"description\": \"Field Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 3535,\n \"description\": \"Fields\"\n },\n \"kdi\": {\n \"size_in_bytes\": 144,\n \"description\": \"Points Index\"\n },\n \"dvm\": {\n \"size_in_bytes\": 3131,\n \"description\": \"DocValues Metadata\"\n },\n \"kdd\": {\n \"size_in_bytes\": 286,\n \"description\": \"Points\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 68669640\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 682,\n \"evictions\": 0,\n \"hit_count\": 32,\n \"miss_count\": 5\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANZKQ==\",\n \"generation\": 4,\n \"user_data\": {\n \"local_checkpoint\": \"3\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"2\",\n \"translog_uuid\": \"_RNAYKMUTyS0saMM1YnszA\",\n \"history_uuid\": \"RMYrXlEzSJ6WYxN83DVJiA\",\n \"max_seq_no\": \"3\"\n },\n \"num_docs\": 2\n },\n \"seq_no\": {\n \"max_seq_no\": 3,\n \"local_checkpoint\": 3,\n \"global_checkpoint\": 3\n },\n \"retention_leases\": {\n \"primary_term\": 1,\n \"version\": 6,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 4,\n \"timestamp\": 1697079750820,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_layout\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 6,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 49263,\n \"reserved_in_bytes\": 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\": 12,\n \"time_in_millis\": 2,\n \"exists_total\": 12,\n \"exists_time_in_millis\": 2,\n \"missing_total\": 0,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 17,\n \"query_time_in_millis\": 5,\n \"query_current\": 0,\n \"fetch_total\": 17,\n \"fetch_time_in_millis\": 8,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 16132,\n \"terms_memory_in_bytes\": 11488,\n \"stored_fields_memory_in_bytes\": 488,\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\": 4156,\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 \"kdd\": {\n \"size_in_bytes\": 1384,\n \"description\": \"Points\"\n },\n \"tim\": {\n \"size_in_bytes\": 5244,\n \"description\": \"Term Dictionary\"\n },\n \"fdt\": {\n \"size_in_bytes\": 10558,\n \"description\": \"Field Data\"\n },\n \"tmd\": {\n \"size_in_bytes\": 3075,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"tip\": {\n \"size_in_bytes\": 141,\n \"description\": \"Term Index\"\n },\n \"dvd\": {\n \"size_in_bytes\": 4907,\n \"description\": \"DocValues\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"kdi\": {\n \"size_in_bytes\": 87,\n \"description\": \"Points Index\"\n },\n \"dvm\": {\n \"size_in_bytes\": 10397,\n \"description\": \"DocValues Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 11054,\n \"description\": \"Fields\"\n },\n \"doc\": {\n \"size_in_bytes\": 269,\n \"description\": \"Frequencies\"\n },\n \"kdm\": {\n \"size_in_bytes\": 770,\n \"description\": \"Points Metadata\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319524\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhyA==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"5\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"rUEeuJPbS3WAsD6kacQUtQ\",\n \"history_uuid\": \"AsH5rMbFSQeXOJ0e6oDviA\",\n \"max_seq_no\": \"5\"\n },\n \"num_docs\": 6\n },\n \"seq_no\": {\n \"max_seq_no\": 5,\n \"local_checkpoint\": 5,\n \"global_checkpoint\": 5\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 6,\n \"timestamp\": 1697064663668,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_email-server\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 41,\n \"query_time_in_millis\": 0,\n \"query_current\": 0,\n \"fetch_total\": 41,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320445\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgng==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"KGQWgQnaTvyBEsLYLzWgXw\",\n \"history_uuid\": \"v9CEXrA9RqSxEEQ-i38I4w\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663049,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_activities\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 60,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 228034,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 26,\n \"index_time_in_millis\": 66,\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\": 135,\n \"query_time_in_millis\": 96,\n \"query_current\": 0,\n \"fetch_total\": 135,\n \"fetch_time_in_millis\": 480,\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\": 1,\n \"total_time_in_millis\": 8,\n \"total_docs\": 47,\n \"total_size_in_bytes\": 158392,\n \"total_stopped_time_in_millis\": 0,\n \"total_throttled_time_in_millis\": 0,\n \"total_auto_throttle_in_bytes\": 20971520\n },\n \"refresh\": {\n \"total\": 31,\n \"total_time_in_millis\": 94,\n \"external_total\": 20,\n \"external_total_time_in_millis\": 108,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 11,\n \"periodic\": 0,\n \"total_time_in_millis\": 1722\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 19,\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\": 2160,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 8,\n \"memory_in_bytes\": 22992,\n \"terms_memory_in_bytes\": 18208,\n \"stored_fields_memory_in_bytes\": 3968,\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\": 816,\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 \"kdi\": {\n \"size_in_bytes\": 553,\n \"description\": \"Points Index\"\n },\n \"doc\": {\n \"size_in_bytes\": 983,\n \"description\": \"Frequencies\"\n },\n \"fdx\": {\n \"size_in_bytes\": 559,\n \"description\": \"Field Index\"\n },\n \"kdd\": {\n \"size_in_bytes\": 1237,\n \"description\": \"Points\"\n },\n \"tim\": {\n \"size_in_bytes\": 4482,\n \"description\": \"Term Dictionary\"\n },\n \"si\": {\n \"size_in_bytes\": 556,\n \"description\": \"Segment Info\"\n },\n \"fdt\": {\n \"size_in_bytes\": 167403,\n \"description\": \"Field Data\"\n },\n \"tip\": {\n \"size_in_bytes\": 734,\n \"description\": \"Term Index\"\n },\n \"dvm\": {\n \"size_in_bytes\": 15319,\n \"description\": \"DocValues Metadata\"\n },\n \"dvd\": {\n \"size_in_bytes\": 3252,\n \"description\": \"DocValues\"\n },\n \"fnm\": {\n \"size_in_bytes\": 17079,\n \"description\": \"Fields\"\n },\n \"fdm\": {\n \"size_in_bytes\": 1264,\n \"description\": \"Field Metadata\"\n },\n \"tmd\": {\n \"size_in_bytes\": 6229,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"kdm\": {\n \"size_in_bytes\": 1600,\n \"description\": \"Points Metadata\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 61649547\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 0,\n \"evictions\": 0,\n \"hit_count\": 0,\n \"miss_count\": 1\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANl5g==\",\n \"generation\": 15,\n \"user_data\": {\n \"local_checkpoint\": \"59\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"59\",\n \"translog_uuid\": \"bEMq8FaeSJy7Vll3I5c_IA\",\n \"history_uuid\": \"qiVGqc9TTtSR-aZ3F1WtvQ\",\n \"max_seq_no\": \"59\"\n },\n \"num_docs\": 60\n },\n \"seq_no\": {\n \"max_seq_no\": 59,\n \"local_checkpoint\": 59,\n \"global_checkpoint\": 59\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 32,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 60,\n \"timestamp\": 1697064663253,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_dashboard\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 58,\n \"query_time_in_millis\": 1,\n \"query_current\": 0,\n \"fetch_total\": 58,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320207\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgdA==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"fCB_2KyjQlaN40dv3dJbCA\",\n \"history_uuid\": \"UXqHvhuKRqmdFHG870imHQ\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663049,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_view\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 1,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 18961,\n \"reserved_in_bytes\": 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\": 12,\n \"time_in_millis\": 6,\n \"exists_total\": 12,\n \"exists_time_in_millis\": 6,\n \"missing_total\": 0,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 108,\n \"query_time_in_millis\": 14,\n \"query_current\": 0,\n \"fetch_total\": 108,\n \"fetch_time_in_millis\": 137,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 2420,\n \"terms_memory_in_bytes\": 1856,\n \"stored_fields_memory_in_bytes\": 488,\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\": 76,\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 \"doc\": {\n \"size_in_bytes\": 78,\n \"description\": \"Frequencies\"\n },\n \"dvd\": {\n \"size_in_bytes\": 180,\n \"description\": \"DocValues\"\n },\n \"fdt\": {\n \"size_in_bytes\": 12680,\n \"description\": \"Field Data\"\n },\n \"fnm\": {\n \"size_in_bytes\": 1748,\n \"description\": \"Fields\"\n },\n \"kdd\": {\n \"size_in_bytes\": 92,\n \"description\": \"Points\"\n },\n \"kdi\": {\n \"size_in_bytes\": 69,\n \"description\": \"Points Index\"\n },\n \"dvm\": {\n \"size_in_bytes\": 1576,\n \"description\": \"DocValues Metadata\"\n },\n \"tip\": {\n \"size_in_bytes\": 79,\n \"description\": \"Term Index\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"kdm\": {\n \"size_in_bytes\": 200,\n \"description\": \"Points Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 260,\n \"description\": \"Term Dictionary\"\n },\n \"tmd\": {\n \"size_in_bytes\": 622,\n \"description\": \"Term Dictionary Metadata\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319279\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhxg==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"0\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"eCKBQlAQQDiSa4diM2srJg\",\n \"history_uuid\": \"xQV4tDkfTrKcZq0FCJh4iw\",\n \"max_seq_no\": \"0\"\n },\n \"num_docs\": 1\n },\n \"seq_no\": {\n \"max_seq_no\": 0,\n \"local_checkpoint\": 0,\n \"global_checkpoint\": 0\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 1,\n \"timestamp\": 1697064664083,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_alert-message\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 14578,\n \"query_time_in_millis\": 244,\n \"query_current\": 0,\n \"fetch_total\": 14578,\n \"fetch_time_in_millis\": 33,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320187\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 13597,\n \"evictions\": 0,\n \"hit_count\": 291,\n \"miss_count\": 17\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgVA==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"hxNeqsdnRw6G93OnqPW1fw\",\n \"history_uuid\": \"KpPCR_UnTJeyDSPLhsR0oQ\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663049,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_rbac-role\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 38,\n \"query_time_in_millis\": 0,\n \"query_current\": 0,\n \"fetch_total\": 38,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319937\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVf/Q==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"JOCE3rRPSEa20X1d3e7SRw\",\n \"history_uuid\": \"qTvO4VtVR5a_E9RZhF9VQw\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663253,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".security\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 8,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 39237,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 0,\n \"index_time_in_millis\": 0,\n \"index_current\": 0,\n \"index_failed\": 1,\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\": 8,\n \"time_in_millis\": 6,\n \"exists_total\": 8,\n \"exists_time_in_millis\": 6,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 3,\n \"total_time_in_millis\": 0,\n \"external_total\": 3,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 8,\n \"memory_in_bytes\": 9792,\n \"terms_memory_in_bytes\": 4768,\n \"stored_fields_memory_in_bytes\": 3904,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 512,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 608,\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 \"kdd\": {\n \"size_in_bytes\": 632,\n \"description\": \"Points\"\n },\n \"tip\": {\n \"size_in_bytes\": 587,\n \"description\": \"Term Index\"\n },\n \"fnm\": {\n \"size_in_bytes\": 4998,\n \"description\": \"Fields\"\n },\n \"fdt\": {\n \"size_in_bytes\": 4705,\n \"description\": \"Field Data\"\n },\n \"kdm\": {\n \"size_in_bytes\": 1144,\n \"description\": \"Points Metadata\"\n },\n \"dvm\": {\n \"size_in_bytes\": 3003,\n \"description\": \"DocValues Metadata\"\n },\n \"fdx\": {\n \"size_in_bytes\": 512,\n \"description\": \"Field Index\"\n },\n \"nvd\": {\n \"size_in_bytes\": 472,\n \"description\": \"Norms\"\n },\n \"kdi\": {\n \"size_in_bytes\": 544,\n \"description\": \"Points Index\"\n },\n \"tmd\": {\n \"size_in_bytes\": 5198,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"dvd\": {\n \"size_in_bytes\": 908,\n \"description\": \"DocValues\"\n },\n \"pos\": {\n \"size_in_bytes\": 636,\n \"description\": \"Positions\"\n },\n \"nvm\": {\n \"size_in_bytes\": 824,\n \"description\": \"Norms Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 4971,\n \"description\": \"Term Dictionary\"\n },\n \"fdm\": {\n \"size_in_bytes\": 1264,\n \"description\": \"Field Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 624,\n \"description\": \"Frequencies\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320645\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhrw==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"7\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"O6dFEwgiSTSLMH39A0hMdg\",\n \"history_uuid\": \"YIOvUW4qRYqBPv6_YvrJ_g\",\n \"max_seq_no\": \"7\"\n },\n \"num_docs\": 8\n },\n \"seq_no\": {\n \"max_seq_no\": 7,\n \"local_checkpoint\": 7,\n \"global_checkpoint\": 7\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 8,\n \"timestamp\": 1697064201796,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_entry\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320680\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgug==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"Uf8WgOkqTcedNTXcwkxH2Q\",\n \"history_uuid\": \"B48o_IcEROWDS0KIMEjV8g\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064201796,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_logs\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 34319,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 7495229,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 49766,\n \"index_time_in_millis\": 4512,\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\": 39,\n \"query_time_in_millis\": 37,\n \"query_current\": 0,\n \"fetch_total\": 39,\n \"fetch_time_in_millis\": 20,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 20,\n \"total_time_in_millis\": 339,\n \"external_total\": 14,\n \"external_total_time_in_millis\": 339,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 6,\n \"periodic\": 0,\n \"total_time_in_millis\": 794\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 13,\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\": 10,\n \"memory_in_bytes\": 49784,\n \"terms_memory_in_bytes\": 40064,\n \"stored_fields_memory_in_bytes\": 5104,\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\": 4616,\n \"index_writer_memory_in_bytes\": 6209316,\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 \"fdx\": {\n \"size_in_bytes\": 2189,\n \"description\": \"Field Index\"\n },\n \"tim\": {\n \"size_in_bytes\": 1534032,\n \"description\": \"Term Dictionary\"\n },\n \"fdt\": {\n \"size_in_bytes\": 2335158,\n \"description\": \"Field Data\"\n },\n \"tmd\": {\n \"size_in_bytes\": 19146,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 36160,\n \"description\": \"Fields\"\n },\n \"kdm\": {\n \"size_in_bytes\": 2621,\n \"description\": \"Points Metadata\"\n },\n \"dvm\": {\n \"size_in_bytes\": 36382,\n \"description\": \"DocValues Metadata\"\n },\n \"kdd\": {\n \"size_in_bytes\": 254597,\n \"description\": \"Points\"\n },\n \"doc\": {\n \"size_in_bytes\": 52337,\n \"description\": \"Frequencies\"\n },\n \"dvd\": {\n \"size_in_bytes\": 2247170,\n \"description\": \"DocValues\"\n },\n \"fdm\": {\n \"size_in_bytes\": 1582,\n \"description\": \"Field Metadata\"\n },\n \"kdi\": {\n \"size_in_bytes\": 1808,\n \"description\": \"Points Index\"\n },\n \"tip\": {\n \"size_in_bytes\": 25068,\n \"description\": \"Term Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 15447,\n \"size_in_bytes\": 11200471,\n \"uncommitted_operations\": 15447,\n \"uncommitted_size_in_bytes\": 11200471,\n \"earliest_last_modified_age\": 1547\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 0,\n \"evictions\": 0,\n \"hit_count\": 0,\n \"miss_count\": 2\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANXmA==\",\n \"generation\": 8,\n \"user_data\": {\n \"local_checkpoint\": \"34318\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"30749\",\n \"translog_uuid\": \"k4DZO4SWR2yvEdX8uPu-LA\",\n \"history_uuid\": \"I6CgmeRDQaSNX3h6Cypmnw\",\n \"max_seq_no\": \"34318\"\n },\n \"num_docs\": 34319\n },\n \"seq_no\": {\n \"max_seq_no\": 49765,\n \"local_checkpoint\": 49765,\n \"global_checkpoint\": 49765\n },\n \"retention_leases\": {\n \"primary_term\": 1,\n \"version\": 1587,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 49733,\n \"timestamp\": 1697081236962,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_metrics\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 428285,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 448176431,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 385153,\n \"index_time_in_millis\": 151459,\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\": 19547,\n \"query_time_in_millis\": 40232,\n \"query_current\": 0,\n \"fetch_total\": 19547,\n \"fetch_time_in_millis\": 2317,\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\": 935,\n \"total_time_in_millis\": 104445,\n \"total_docs\": 2438421,\n \"total_size_in_bytes\": 4296058058,\n \"total_stopped_time_in_millis\": 0,\n \"total_throttled_time_in_millis\": 12307,\n \"total_auto_throttle_in_bytes\": 15756213\n },\n \"refresh\": {\n \"total\": 9248,\n \"total_time_in_millis\": 271824,\n \"external_total\": 9238,\n \"external_total_time_in_millis\": 284685,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 10,\n \"periodic\": 1,\n \"total_time_in_millis\": 1763\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 9237,\n \"total_time_in_millis\": 1213\n },\n \"query_cache\": {\n \"memory_size_in_bytes\": 1272464,\n \"total_count\": 300194,\n \"hit_count\": 45659,\n \"miss_count\": 254535,\n \"cache_size\": 640,\n \"cache_count\": 2945,\n \"evictions\": 2305\n },\n \"fielddata\": {\n \"memory_size_in_bytes\": 7714152,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 18,\n \"memory_in_bytes\": 1260976,\n \"terms_memory_in_bytes\": 306240,\n \"stored_fields_memory_in_bytes\": 10304,\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\": 944432,\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 \"kdm\": {\n \"size_in_bytes\": 623284,\n \"description\": \"Points Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 7034086,\n \"description\": \"Term Dictionary\"\n },\n \"si\": {\n \"size_in_bytes\": 2336,\n \"description\": \"Segment Info\"\n },\n \"fdm\": {\n \"size_in_bytes\": 3452,\n \"description\": \"Field Metadata\"\n },\n \"kdi\": {\n \"size_in_bytes\": 427128,\n \"description\": \"Points Index\"\n },\n \"kdd\": {\n \"size_in_bytes\": 75357663,\n \"description\": \"Points\"\n },\n \"fnm\": {\n \"size_in_bytes\": 1923471,\n \"description\": \"Fields\"\n },\n \"dvm\": {\n \"size_in_bytes\": 1970940,\n \"description\": \"DocValues Metadata\"\n },\n \"tip\": {\n \"size_in_bytes\": 101244,\n \"description\": \"Term Index\"\n },\n \"fdx\": {\n \"size_in_bytes\": 77213,\n \"description\": \"Field Index\"\n },\n \"dvd\": {\n \"size_in_bytes\": 95013453,\n \"description\": \"DocValues\"\n },\n \"fdt\": {\n \"size_in_bytes\": 244531390,\n \"description\": \"Field Data\"\n },\n \"tmd\": {\n \"size_in_bytes\": 84636,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 7796847,\n \"description\": \"Frequencies\"\n }\n }\n },\n \"translog\": {\n \"operations\": 6069,\n \"size_in_bytes\": 22368500,\n \"uncommitted_operations\": 6069,\n \"uncommitted_size_in_bytes\": 22368500,\n \"earliest_last_modified_age\": 1546\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 272876,\n \"evictions\": 0,\n \"hit_count\": 37,\n \"miss_count\": 14040\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+AN7og==\",\n \"generation\": 14,\n \"user_data\": {\n \"local_checkpoint\": \"422215\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"273269\",\n \"translog_uuid\": \"8bHUUvaeRse85bMY1p6NZw\",\n \"history_uuid\": \"926AQPpBQGqna0mFAlWqQA\",\n \"max_seq_no\": \"422215\"\n },\n \"num_docs\": 422216\n },\n \"seq_no\": {\n \"max_seq_no\": 428284,\n \"local_checkpoint\": 428284,\n \"global_checkpoint\": 428284\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 3010,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 428256,\n \"timestamp\": 1697081254219,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_index\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 35,\n \"deleted\": 11\n },\n \"store\": {\n \"size_in_bytes\": 163497,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 23,\n \"index_time_in_millis\": 43,\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\": 2019,\n \"query_time_in_millis\": 1393,\n \"query_current\": 0,\n \"fetch_total\": 2019,\n \"fetch_time_in_millis\": 127,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 36,\n \"total_time_in_millis\": 304,\n \"external_total\": 26,\n \"external_total_time_in_millis\": 306,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 11,\n \"periodic\": 0,\n \"total_time_in_millis\": 1512\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 25,\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\": 3320,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 10,\n \"memory_in_bytes\": 29984,\n \"terms_memory_in_bytes\": 23040,\n \"stored_fields_memory_in_bytes\": 4880,\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\": 2064,\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 \"fdx\": {\n \"size_in_bytes\": 640,\n \"description\": \"Field Index\"\n },\n \"kdi\": {\n \"size_in_bytes\": 702,\n \"description\": \"Points Index\"\n },\n \"doc\": {\n \"size_in_bytes\": 991,\n \"description\": \"Frequencies\"\n },\n \"dvm\": {\n \"size_in_bytes\": 20070,\n \"description\": \"DocValues Metadata\"\n },\n \"fdm\": {\n \"size_in_bytes\": 1580,\n \"description\": \"Field Metadata\"\n },\n \"kdm\": {\n \"size_in_bytes\": 2570,\n \"description\": \"Points Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 8540,\n \"description\": \"Term Dictionary\"\n },\n \"dvd\": {\n \"size_in_bytes\": 5020,\n \"description\": \"DocValues\"\n },\n \"tmd\": {\n \"size_in_bytes\": 8601,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdt\": {\n \"size_in_bytes\": 69568,\n \"description\": \"Field Data\"\n },\n \"tip\": {\n \"size_in_bytes\": 810,\n \"description\": \"Term Index\"\n },\n \"fnm\": {\n \"size_in_bytes\": 22800,\n \"description\": \"Fields\"\n },\n \"kdd\": {\n \"size_in_bytes\": 1381,\n \"description\": \"Points\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 61649572\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 228238,\n \"evictions\": 0,\n \"hit_count\": 160,\n \"miss_count\": 1597\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANl4w==\",\n \"generation\": 14,\n \"user_data\": {\n \"local_checkpoint\": \"54\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"54\",\n \"translog_uuid\": \"SzNDsMV9RmGuX2jrZWwJZA\",\n \"history_uuid\": \"Nam3VjktQoGww9g7ZvEdZA\",\n \"max_seq_no\": \"54\"\n },\n \"num_docs\": 35\n },\n \"seq_no\": {\n \"max_seq_no\": 54,\n \"local_checkpoint\": 54,\n \"global_checkpoint\": 54\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 32,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 55,\n \"timestamp\": 1697064663253,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_alert-history\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 14859,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 11511365,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 14256,\n \"index_time_in_millis\": 5343,\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\": 33,\n \"query_time_in_millis\": 60,\n \"query_current\": 0,\n \"fetch_total\": 33,\n \"fetch_time_in_millis\": 12,\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\": 12,\n \"total_time_in_millis\": 431,\n \"total_docs\": 22303,\n \"total_size_in_bytes\": 17132452,\n \"total_stopped_time_in_millis\": 0,\n \"total_throttled_time_in_millis\": 0,\n \"total_auto_throttle_in_bytes\": 20971520\n },\n \"refresh\": {\n \"total\": 38,\n \"total_time_in_millis\": 853,\n \"external_total\": 30,\n \"external_total_time_in_millis\": 1044,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 6,\n \"periodic\": 0,\n \"total_time_in_millis\": 1558\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 29,\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\": 65876,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 5,\n \"memory_in_bytes\": 31300,\n \"terms_memory_in_bytes\": 24960,\n \"stored_fields_memory_in_bytes\": 2600,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 640,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 3100,\n \"index_writer_memory_in_bytes\": 2214392,\n \"version_map_memory_in_bytes\": 204750,\n \"fixed_bit_set_memory_in_bytes\": 0,\n \"max_unsafe_auto_id_timestamp\": -1,\n \"file_sizes\": {\n \"tip\": {\n \"size_in_bytes\": 6449,\n \"description\": \"Term Index\"\n },\n \"kdm\": {\n \"size_in_bytes\": 1610,\n \"description\": \"Points Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 20940,\n \"description\": \"Fields\"\n },\n \"fdx\": {\n \"size_in_bytes\": 2619,\n \"description\": \"Field Index\"\n },\n \"nvm\": {\n \"size_in_bytes\": 695,\n \"description\": \"Norms Metadata\"\n },\n \"fdm\": {\n \"size_in_bytes\": 796,\n \"description\": \"Field Metadata\"\n },\n \"si\": {\n \"size_in_bytes\": 2420,\n \"description\": \"Segment Info\"\n },\n \"doc\": {\n \"size_in_bytes\": 684238,\n \"description\": \"Frequencies\"\n },\n \"nvd\": {\n \"size_in_bytes\": 30013,\n \"description\": \"Norms\"\n },\n \"kdi\": {\n \"size_in_bytes\": 1144,\n \"description\": \"Points Index\"\n },\n \"dvd\": {\n \"size_in_bytes\": 409290,\n \"description\": \"DocValues\"\n },\n \"fdt\": {\n \"size_in_bytes\": 6982654,\n \"description\": \"Field Data\"\n },\n \"kdd\": {\n \"size_in_bytes\": 225848,\n \"description\": \"Points\"\n },\n \"pos\": {\n \"size_in_bytes\": 694823,\n \"description\": \"Positions\"\n },\n \"tmd\": {\n \"size_in_bytes\": 10197,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 252734,\n \"description\": \"Term Dictionary\"\n },\n \"dvm\": {\n \"size_in_bytes\": 17870,\n \"description\": \"DocValues Metadata\"\n }\n }\n },\n \"translog\": {\n \"operations\": 2880,\n \"size_in_bytes\": 9969124,\n \"uncommitted_operations\": 2880,\n \"uncommitted_size_in_bytes\": 9969124,\n \"earliest_last_modified_age\": 48501\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 0,\n \"evictions\": 0,\n \"hit_count\": 0,\n \"miss_count\": 1\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANXlQ==\",\n \"generation\": 14,\n \"user_data\": {\n \"local_checkpoint\": \"13553\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"12870\",\n \"translog_uuid\": \"CfSp8FIkREWrKj__zCRfXA\",\n \"history_uuid\": \"X9bFhqWyTRedrUWA-UvRHQ\",\n \"max_seq_no\": \"13553\"\n },\n \"num_docs\": 13554\n },\n \"seq_no\": {\n \"max_seq_no\": 16433,\n \"local_checkpoint\": 16433,\n \"global_checkpoint\": 16433\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 1853,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 16434,\n \"timestamp\": 1697081223719,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_cluster\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 2,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 60406,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 9,\n \"index_time_in_millis\": 25,\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\": 70,\n \"time_in_millis\": 12,\n \"exists_total\": 70,\n \"exists_time_in_millis\": 12,\n \"missing_total\": 0,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 1095,\n \"query_time_in_millis\": 208,\n \"query_current\": 0,\n \"fetch_total\": 1095,\n \"fetch_time_in_millis\": 174,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 21,\n \"total_time_in_millis\": 200,\n \"external_total\": 16,\n \"external_total_time_in_millis\": 202,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 6,\n \"periodic\": 0,\n \"total_time_in_millis\": 279\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 15,\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\": 2408,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 2,\n \"memory_in_bytes\": 17992,\n \"terms_memory_in_bytes\": 16480,\n \"stored_fields_memory_in_bytes\": 976,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 384,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 152,\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 \"tip\": {\n \"size_in_bytes\": 215,\n \"description\": \"Term Index\"\n },\n \"kdi\": {\n \"size_in_bytes\": 141,\n \"description\": \"Points Index\"\n },\n \"tim\": {\n \"size_in_bytes\": 1545,\n \"description\": \"Term Dictionary\"\n },\n \"pos\": {\n \"size_in_bytes\": 199,\n \"description\": \"Positions\"\n },\n \"fnm\": {\n \"size_in_bytes\": 13832,\n \"description\": \"Fields\"\n },\n \"kdm\": {\n \"size_in_bytes\": 571,\n \"description\": \"Points Metadata\"\n },\n \"fdt\": {\n \"size_in_bytes\": 2025,\n \"description\": \"Field Data\"\n },\n \"nvd\": {\n \"size_in_bytes\": 118,\n \"description\": \"Norms\"\n },\n \"tmd\": {\n \"size_in_bytes\": 3521,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"dvd\": {\n \"size_in_bytes\": 569,\n \"description\": \"DocValues\"\n },\n \"fdm\": {\n \"size_in_bytes\": 316,\n \"description\": \"Field Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 156,\n \"description\": \"Frequencies\"\n },\n \"nvm\": {\n \"size_in_bytes\": 350,\n \"description\": \"Norms Metadata\"\n },\n \"dvm\": {\n \"size_in_bytes\": 9740,\n \"description\": \"DocValues Metadata\"\n },\n \"kdd\": {\n \"size_in_bytes\": 223,\n \"description\": \"Points\"\n },\n \"fdx\": {\n \"size_in_bytes\": 128,\n \"description\": \"Field Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 89357884\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 8957,\n \"evictions\": 0,\n \"hit_count\": 140,\n \"miss_count\": 52\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+AM4pQ==\",\n \"generation\": 9,\n \"user_data\": {\n \"local_checkpoint\": \"10\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"9\",\n \"translog_uuid\": \"RtqptnUdTRa9MOvcqZnokQ\",\n \"history_uuid\": \"TkPlAtLFQneAVmeJGsGIAQ\",\n \"max_seq_no\": \"10\"\n },\n \"num_docs\": 2\n },\n \"seq_no\": {\n \"max_seq_no\": 10,\n \"local_checkpoint\": 10,\n \"global_checkpoint\": 10\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 25,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 11,\n \"timestamp\": 1697080714480,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_setting\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 2,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 19596,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 2,\n \"index_time_in_millis\": 7,\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\": 13,\n \"query_time_in_millis\": 0,\n \"query_current\": 0,\n \"fetch_total\": 13,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 8,\n \"total_time_in_millis\": 7,\n \"external_total\": 6,\n \"external_total_time_in_millis\": 7,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 2,\n \"periodic\": 0,\n \"total_time_in_millis\": 91\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\": 2,\n \"memory_in_bytes\": 7976,\n \"terms_memory_in_bytes\": 6848,\n \"stored_fields_memory_in_bytes\": 976,\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\": 152,\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 \"fdm\": {\n \"size_in_bytes\": 316,\n \"description\": \"Field Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 810,\n \"description\": \"Term Dictionary\"\n },\n \"fdt\": {\n \"size_in_bytes\": 1327,\n \"description\": \"Field Data\"\n },\n \"kdd\": {\n \"size_in_bytes\": 210,\n \"description\": \"Points\"\n },\n \"dvd\": {\n \"size_in_bytes\": 510,\n \"description\": \"DocValues\"\n },\n \"dvm\": {\n \"size_in_bytes\": 4800,\n \"description\": \"DocValues Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 156,\n \"description\": \"Frequencies\"\n },\n \"fdx\": {\n \"size_in_bytes\": 128,\n \"description\": \"Field Index\"\n },\n \"tmd\": {\n \"size_in_bytes\": 1976,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 6458,\n \"description\": \"Fields\"\n },\n \"kdm\": {\n \"size_in_bytes\": 514,\n \"description\": \"Points Metadata\"\n },\n \"kdi\": {\n \"size_in_bytes\": 140,\n \"description\": \"Points Index\"\n },\n \"tip\": {\n \"size_in_bytes\": 172,\n \"description\": \"Term Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 89337882\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 \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+AM4tQ==\",\n \"generation\": 4,\n \"user_data\": {\n \"local_checkpoint\": \"1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"1\",\n \"translog_uuid\": \"9XEF-76JQ4KooFrpa_LAwQ\",\n \"history_uuid\": \"d54mw3ZmRVi-jZ8yfvW2zQ\",\n \"max_seq_no\": \"1\"\n },\n \"num_docs\": 2\n },\n \"seq_no\": {\n \"max_seq_no\": 1,\n \"local_checkpoint\": 1,\n \"global_checkpoint\": 1\n },\n \"retention_leases\": {\n \"primary_term\": 1,\n \"version\": 8,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 2,\n \"timestamp\": 1697063200732,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_instance\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 2,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 20226,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 2,\n \"index_time_in_millis\": 4,\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\": 1254,\n \"time_in_millis\": 185,\n \"exists_total\": 1253,\n \"exists_time_in_millis\": 185,\n \"missing_total\": 1,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 941,\n \"query_time_in_millis\": 102,\n \"query_current\": 0,\n \"fetch_total\": 941,\n \"fetch_time_in_millis\": 104,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 8,\n \"total_time_in_millis\": 116,\n \"external_total\": 6,\n \"external_total_time_in_millis\": 127,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 3,\n \"periodic\": 0,\n \"total_time_in_millis\": 109\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\": 2,\n \"memory_in_bytes\": 7784,\n \"terms_memory_in_bytes\": 6400,\n \"stored_fields_memory_in_bytes\": 976,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 256,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 152,\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 \"tmd\": {\n \"size_in_bytes\": 1952,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdx\": {\n \"size_in_bytes\": 128,\n \"description\": \"Field Index\"\n },\n \"nvm\": {\n \"size_in_bytes\": 278,\n \"description\": \"Norms Metadata\"\n },\n \"pos\": {\n \"size_in_bytes\": 158,\n \"description\": \"Positions\"\n },\n \"kdm\": {\n \"size_in_bytes\": 742,\n \"description\": \"Points Metadata\"\n },\n \"dvm\": {\n \"size_in_bytes\": 4990,\n \"description\": \"DocValues Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 156,\n \"description\": \"Frequencies\"\n },\n \"fnm\": {\n \"size_in_bytes\": 6014,\n \"description\": \"Fields\"\n },\n \"kdi\": {\n \"size_in_bytes\": 144,\n \"description\": \"Points Index\"\n },\n \"tip\": {\n \"size_in_bytes\": 170,\n \"description\": \"Term Index\"\n },\n \"fdm\": {\n \"size_in_bytes\": 316,\n \"description\": \"Field Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 806,\n \"description\": \"Term Dictionary\"\n },\n \"nvd\": {\n \"size_in_bytes\": 118,\n \"description\": \"Norms\"\n },\n \"kdd\": {\n \"size_in_bytes\": 262,\n \"description\": \"Points\"\n },\n \"dvd\": {\n \"size_in_bytes\": 514,\n \"description\": \"DocValues\"\n },\n \"fdt\": {\n \"size_in_bytes\": 1251,\n \"description\": \"Field Data\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 75739887\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 \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANPeA==\",\n \"generation\": 5,\n \"user_data\": {\n \"local_checkpoint\": \"2\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"2\",\n \"translog_uuid\": \"88n9y8OCTXyzZnxOtEGJIg\",\n \"history_uuid\": \"4taWEqsLQdSrM7gdXLOwAQ\",\n \"max_seq_no\": \"2\"\n },\n \"num_docs\": 2\n },\n \"seq_no\": {\n \"max_seq_no\": 2,\n \"local_checkpoint\": 2,\n \"global_checkpoint\": 2\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 20,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 3,\n \"timestamp\": 1697074742899,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_visualization\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320269\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgZA==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"D18jcqtgS8qTg41f_HkxIQ\",\n \"history_uuid\": \"PqRUnWTrQPWhL-xDdhzT9A\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663049,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_commands\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 357,\n \"query_time_in_millis\": 20,\n \"query_current\": 0,\n \"fetch_total\": 357,\n \"fetch_time_in_millis\": 2,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319991\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgMw==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"geAjkMotTVe_bFw_ILKp8g\",\n \"history_uuid\": \"QnTj6_NRTsydsHfK48iemQ\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064663253,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_alert-rule\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 9,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 51333,\n \"reserved_in_bytes\": 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\": 2,\n \"time_in_millis\": 0,\n \"exists_total\": 2,\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\": 53,\n \"query_time_in_millis\": 3,\n \"query_current\": 0,\n \"fetch_total\": 53,\n \"fetch_time_in_millis\": 30,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 1,\n \"memory_in_bytes\": 13852,\n \"terms_memory_in_bytes\": 11488,\n \"stored_fields_memory_in_bytes\": 488,\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\": 1876,\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 \"dvm\": {\n \"size_in_bytes\": 9452,\n \"description\": \"DocValues Metadata\"\n },\n \"kdm\": {\n \"size_in_bytes\": 599,\n \"description\": \"Points Metadata\"\n },\n \"doc\": {\n \"size_in_bytes\": 526,\n \"description\": \"Frequencies\"\n },\n \"tip\": {\n \"size_in_bytes\": 122,\n \"description\": \"Term Index\"\n },\n \"tim\": {\n \"size_in_bytes\": 4617,\n \"description\": \"Term Dictionary\"\n },\n \"kdi\": {\n \"size_in_bytes\": 82,\n \"description\": \"Points Index\"\n },\n \"dvd\": {\n \"size_in_bytes\": 3802,\n \"description\": \"DocValues\"\n },\n \"fnm\": {\n \"size_in_bytes\": 10973,\n \"description\": \"Fields\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"tmd\": {\n \"size_in_bytes\": 3461,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdt\": {\n \"size_in_bytes\": 15862,\n \"description\": \"Field Data\"\n },\n \"kdd\": {\n \"size_in_bytes\": 460,\n \"description\": \"Points\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248319263\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVhyQ==\",\n \"generation\": 3,\n \"user_data\": {\n \"local_checkpoint\": \"8\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"0\",\n \"translog_uuid\": \"DouMW08FQIyr_WUH1uIItA\",\n \"history_uuid\": \"p9uVyreSQPOdxzk4ftRe7w\",\n \"max_seq_no\": \"8\"\n },\n \"num_docs\": 9\n },\n \"seq_no\": {\n \"max_seq_no\": 8,\n \"local_checkpoint\": 8,\n \"global_checkpoint\": 8\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 19,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 9,\n \"timestamp\": 1697064664083,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_flow\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320658\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVg2Q==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"glY0PjPVR7O26vE93xNerQ\",\n \"history_uuid\": \"tbouBOTWT8m-Q-uIkX-ymQ\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064201796,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_esnodeinfo\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 2,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 36852,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 59,\n \"index_time_in_millis\": 45,\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\": 3,\n \"time_in_millis\": 0,\n \"exists_total\": 2,\n \"exists_time_in_millis\": 0,\n \"missing_total\": 1,\n \"missing_time_in_millis\": 0,\n \"current\": 0\n },\n \"search\": {\n \"open_contexts\": 0,\n \"query_total\": 782,\n \"query_time_in_millis\": 67,\n \"query_current\": 0,\n \"fetch_total\": 782,\n \"fetch_time_in_millis\": 56,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 83,\n \"total_time_in_millis\": 1142,\n \"external_total\": 64,\n \"external_total_time_in_millis\": 1231,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 19,\n \"periodic\": 0,\n \"total_time_in_millis\": 1112\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 63,\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\": 1,\n \"memory_in_bytes\": 5428,\n \"terms_memory_in_bytes\": 4544,\n \"stored_fields_memory_in_bytes\": 488,\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\": 396,\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 \"tmd\": {\n \"size_in_bytes\": 1274,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"fdt\": {\n \"size_in_bytes\": 3332,\n \"description\": \"Field Data\"\n },\n \"fdx\": {\n \"size_in_bytes\": 64,\n \"description\": \"Field Index\"\n },\n \"fdm\": {\n \"size_in_bytes\": 158,\n \"description\": \"Field Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 4141,\n \"description\": \"Fields\"\n },\n \"doc\": {\n \"size_in_bytes\": 96,\n \"description\": \"Frequencies\"\n },\n \"dvm\": {\n \"size_in_bytes\": 3955,\n \"description\": \"DocValues Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 764,\n \"description\": \"Term Dictionary\"\n },\n \"kdd\": {\n \"size_in_bytes\": 193,\n \"description\": \"Points\"\n },\n \"dvd\": {\n \"size_in_bytes\": 600,\n \"description\": \"DocValues\"\n },\n \"kdm\": {\n \"size_in_bytes\": 371,\n \"description\": \"Points Metadata\"\n },\n \"tip\": {\n \"size_in_bytes\": 91,\n \"description\": \"Term Index\"\n },\n \"kdi\": {\n \"size_in_bytes\": 74,\n \"description\": \"Points Index\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 64161364\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 \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+ANg6Q==\",\n \"generation\": 21,\n \"user_data\": {\n \"local_checkpoint\": \"58\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"55\",\n \"translog_uuid\": \"7dm3w6dpR3aM5cPH76STWw\",\n \"history_uuid\": \"dUbn0AnnQgmHYo_gZueQxA\",\n \"max_seq_no\": \"58\"\n },\n \"num_docs\": 2\n },\n \"seq_no\": {\n \"max_seq_no\": 58,\n \"local_checkpoint\": 58,\n \"global_checkpoint\": 58\n },\n \"retention_leases\": {\n \"primary_term\": 1,\n \"version\": 33,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 59,\n \"timestamp\": 1697064200970,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_node\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 2,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 35686,\n \"reserved_in_bytes\": 0\n },\n \"indexing\": {\n \"index_total\": 2,\n \"index_time_in_millis\": 16,\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\": 3082,\n \"query_time_in_millis\": 905,\n \"query_current\": 0,\n \"fetch_total\": 3082,\n \"fetch_time_in_millis\": 207,\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\": 20971520\n },\n \"refresh\": {\n \"total\": 8,\n \"total_time_in_millis\": 65,\n \"external_total\": 6,\n \"external_total_time_in_millis\": 65,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 2,\n \"periodic\": 0,\n \"total_time_in_millis\": 207\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\": 2216,\n \"evictions\": 0\n },\n \"completion\": {\n \"size_in_bytes\": 0\n },\n \"segments\": {\n \"count\": 2,\n \"memory_in_bytes\": 8952,\n \"terms_memory_in_bytes\": 7296,\n \"stored_fields_memory_in_bytes\": 976,\n \"term_vectors_memory_in_bytes\": 0,\n \"norms_memory_in_bytes\": 256,\n \"points_memory_in_bytes\": 0,\n \"doc_values_memory_in_bytes\": 424,\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 \"dvm\": {\n \"size_in_bytes\": 4918,\n \"description\": \"DocValues Metadata\"\n },\n \"pos\": {\n \"size_in_bytes\": 246,\n \"description\": \"Positions\"\n },\n \"doc\": {\n \"size_in_bytes\": 156,\n \"description\": \"Frequencies\"\n },\n \"fdt\": {\n \"size_in_bytes\": 16286,\n \"description\": \"Field Data\"\n },\n \"tmd\": {\n \"size_in_bytes\": 2069,\n \"description\": \"Term Dictionary Metadata\"\n },\n \"tim\": {\n \"size_in_bytes\": 1392,\n \"description\": \"Term Dictionary\"\n },\n \"dvd\": {\n \"size_in_bytes\": 626,\n \"description\": \"DocValues\"\n },\n \"fdx\": {\n \"size_in_bytes\": 128,\n \"description\": \"Field Index\"\n },\n \"tip\": {\n \"size_in_bytes\": 174,\n \"description\": \"Term Index\"\n },\n \"kdi\": {\n \"size_in_bytes\": 138,\n \"description\": \"Points Index\"\n },\n \"nvd\": {\n \"size_in_bytes\": 118,\n \"description\": \"Norms\"\n },\n \"kdm\": {\n \"size_in_bytes\": 400,\n \"description\": \"Points Metadata\"\n },\n \"fdm\": {\n \"size_in_bytes\": 316,\n \"description\": \"Field Metadata\"\n },\n \"nvm\": {\n \"size_in_bytes\": 278,\n \"description\": \"Norms Metadata\"\n },\n \"fnm\": {\n \"size_in_bytes\": 6030,\n \"description\": \"Fields\"\n },\n \"kdd\": {\n \"size_in_bytes\": 184,\n \"description\": \"Points\"\n }\n }\n },\n \"translog\": {\n \"operations\": 0,\n \"size_in_bytes\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 89327860\n },\n \"request_cache\": {\n \"memory_size_in_bytes\": 732716,\n \"evictions\": 0,\n \"hit_count\": 462,\n \"miss_count\": 1596\n },\n \"recovery\": {\n \"current_as_source\": 0,\n \"current_as_target\": 0,\n \"throttle_time_in_millis\": 0\n },\n \"commit\": {\n \"id\": \"DsnlIcCD2nM5V3JM+AM4vQ==\",\n \"generation\": 5,\n \"user_data\": {\n \"local_checkpoint\": \"2\",\n \"max_unsafe_auto_id_timestamp\": \"-1\",\n \"min_retained_seq_no\": \"2\",\n \"translog_uuid\": \"ix5LHEnBS3ah_on8EpVUWg\",\n \"history_uuid\": \"KqvEnJC1SveMzcVUh1vWOg\",\n \"max_seq_no\": \"2\"\n },\n \"num_docs\": 2\n },\n \"seq_no\": {\n \"max_seq_no\": 2,\n \"local_checkpoint\": 2,\n \"global_checkpoint\": 2\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 20,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 3,\n \"timestamp\": 1697080714072,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ],\n \".infini_router\": [\n {\n \"0\": {\n \"routing\": {\n \"state\": \"STARTED\",\n \"primary\": true,\n \"node\": \"-N1pmqLWQ-etRKI5B2L4yw\",\n \"relocating_node\": null\n },\n \"docs\": {\n \"count\": 0,\n \"deleted\": 0\n },\n \"store\": {\n \"size_in_bytes\": 208,\n \"reserved_in_bytes\": 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\": 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\": 20971520\n },\n \"refresh\": {\n \"total\": 2,\n \"total_time_in_millis\": 0,\n \"external_total\": 2,\n \"external_total_time_in_millis\": 0,\n \"listeners\": 0\n },\n \"flush\": {\n \"total\": 1,\n \"periodic\": 0,\n \"total_time_in_millis\": 0\n },\n \"warmer\": {\n \"current\": 0,\n \"total\": 1,\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\": 55,\n \"uncommitted_operations\": 0,\n \"uncommitted_size_in_bytes\": 55,\n \"earliest_last_modified_age\": 248320637\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 \"commit\": {\n \"id\": \"JYuwMs6LXIuR+QZhJNVgyA==\",\n \"generation\": 2,\n \"user_data\": {\n \"translog_uuid\": \"lCyTvKtRTs2ZTmWSqhUjfg\",\n \"history_uuid\": \"xnsqhlPJTA-cIDCWEAodLw\",\n \"local_checkpoint\": \"-1\",\n \"max_seq_no\": \"-1\",\n \"max_unsafe_auto_id_timestamp\": \"-1\"\n },\n \"num_docs\": 0\n },\n \"seq_no\": {\n \"max_seq_no\": -1,\n \"local_checkpoint\": -1,\n \"global_checkpoint\": -1\n },\n \"retention_leases\": {\n \"primary_term\": 2,\n \"version\": 18,\n \"leases\": [\n {\n \"id\": \"peer_recovery/-N1pmqLWQ-etRKI5B2L4yw\",\n \"retaining_seq_no\": 0,\n \"timestamp\": 1697064201796,\n \"source\": \"peer recovery\"\n }\n ]\n },\n \"shard_path\": {\n \"state_path\": \"/opt/easysearch/data/nodes/0\",\n \"data_path\": \"/opt/easysearch/data/nodes/0\",\n \"is_custom_data_path\": false\n }\n }\n }\n ]\n }\n },\n \"os\": {\n \"timestamp\": 1697081260487,\n \"cpu\": {\n \"percent\": 16,\n \"load_average\": {\n \"1m\": 2.40087890625\n }\n },\n \"mem\": {\n \"total_in_bytes\": 25769803776,\n \"free_in_bytes\": 63881216,\n \"used_in_bytes\": 25705922560,\n \"free_percent\": 0,\n \"used_percent\": 100\n },\n \"swap\": {\n \"total_in_bytes\": 0,\n \"free_in_bytes\": 0,\n \"used_in_bytes\": 0\n }\n },\n \"process\": {\n \"timestamp\": 1697081260487,\n \"open_file_descriptors\": 349,\n \"max_file_descriptors\": 10240,\n \"cpu\": {\n \"percent\": 1,\n \"total_in_millis\": 3183961\n },\n \"mem\": {\n \"total_virtual_in_bytes\": 422626476032\n }\n },\n \"jvm\": {\n \"timestamp\": 1697081260487,\n \"uptime_in_millis\": 100012879,\n \"mem\": {\n \"heap_used_in_bytes\": 364266568,\n \"heap_used_percent\": 33,\n \"heap_committed_in_bytes\": 1073741824,\n \"heap_max_in_bytes\": 1073741824,\n \"non_heap_used_in_bytes\": 202350680,\n \"non_heap_committed_in_bytes\": 211943424,\n \"pools\": {\n \"young\": {\n \"used_in_bytes\": 112197632,\n \"max_in_bytes\": 0,\n \"peak_used_in_bytes\": 641728512,\n \"peak_max_in_bytes\": 0\n },\n \"old\": {\n \"used_in_bytes\": 242184696,\n \"max_in_bytes\": 1073741824,\n \"peak_used_in_bytes\": 323158520,\n \"peak_max_in_bytes\": 1073741824\n },\n \"survivor\": {\n \"used_in_bytes\": 9884240,\n \"max_in_bytes\": 0,\n \"peak_used_in_bytes\": 39321600,\n \"peak_max_in_bytes\": 0\n }\n }\n },\n \"threads\": {\n \"count\": 76,\n \"peak_count\": 88\n },\n \"gc\": {\n \"collectors\": {\n \"young\": {\n \"collection_count\": 2497,\n \"collection_time_in_millis\": 12412\n },\n \"old\": {\n \"collection_count\": 0,\n \"collection_time_in_millis\": 0\n }\n }\n },\n \"buffer_pools\": {\n \"mapped\": {\n \"count\": 131,\n \"used_in_bytes\": 229793154,\n \"total_capacity_in_bytes\": 229793154\n },\n \"direct\": {\n \"count\": 67,\n \"used_in_bytes\": 9242792,\n \"total_capacity_in_bytes\": 9242791\n },\n \"mapped - 'non-volatile memory'\": {\n \"count\": 0,\n \"used_in_bytes\": 0,\n \"total_capacity_in_bytes\": 0\n }\n },\n \"classes\": {\n \"current_loaded_count\": 19030,\n \"total_loaded_count\": 19201,\n \"total_unloaded_count\": 171\n }\n },\n \"thread_pool\": {\n \"analyze\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"fetch_shard_started\": {\n \"threads\": 1,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 16,\n \"completed\": 26\n },\n \"fetch_shard_store\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"flush\": {\n \"threads\": 1,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 4,\n \"completed\": 116\n },\n \"force_merge\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"generic\": {\n \"threads\": 13,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 13,\n \"completed\": 110391\n },\n \"get\": {\n \"threads\": 8,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 8,\n \"completed\": 2004\n },\n \"listener\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"management\": {\n \"threads\": 5,\n \"queue\": 0,\n \"active\": 1,\n \"rejected\": 0,\n \"largest\": 5,\n \"completed\": 273140\n },\n \"open_distro_job_scheduler\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"refresh\": {\n \"threads\": 4,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 4,\n \"completed\": 2790858\n },\n \"search\": {\n \"threads\": 13,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 13,\n \"completed\": 3024174\n },\n \"search_throttled\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"snapshot\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"system_read\": {\n \"threads\": 1,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 1,\n \"completed\": 1\n },\n \"system_write\": {\n \"threads\": 1,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 1,\n \"completed\": 1\n },\n \"warmer\": {\n \"threads\": 0,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 0,\n \"completed\": 0\n },\n \"write\": {\n \"threads\": 8,\n \"queue\": 0,\n \"active\": 0,\n \"rejected\": 0,\n \"largest\": 8,\n \"completed\": 30286\n }\n },\n \"fs\": {\n \"timestamp\": 1697081260487,\n \"total\": {\n \"total_in_bytes\": 994662584320,\n \"free_in_bytes\": 408603504640,\n \"available_in_bytes\": 408603504640\n },\n \"data\": [\n {\n \"path\": \"/opt/easysearch/data/nodes/0\",\n \"mount\": \"/System/Volumes/Data (/dev/disk3s5)\",\n \"type\": \"apfs\",\n \"total_in_bytes\": 994662584320,\n \"free_in_bytes\": 408603504640,\n \"available_in_bytes\": 408603504640\n }\n ]\n },\n \"transport\": {\n \"server_open\": 0,\n \"total_outbound_connections\": 0,\n \"rx_count\": 0,\n \"rx_size_in_bytes\": 0,\n \"tx_count\": 0,\n \"tx_size_in_bytes\": 0\n },\n \"http\": {\n \"current_open\": 16,\n \"total_opened\": 9407\n },\n \"breakers\": {\n \"request\": {\n \"limit_size_in_bytes\": 644245094,\n \"limit_size\": \"614.3mb\",\n \"estimated_size_in_bytes\": 0,\n \"estimated_size\": \"0b\",\n \"overhead\": 1,\n \"tripped\": 0\n },\n \"fielddata\": {\n \"limit_size_in_bytes\": 429496729,\n \"limit_size\": \"409.5mb\",\n \"estimated_size_in_bytes\": 7790276,\n \"estimated_size\": \"7.4mb\",\n \"overhead\": 1.03,\n \"tripped\": 0\n },\n \"in_flight_requests\": {\n \"limit_size_in_bytes\": 1073741824,\n \"limit_size\": \"1gb\",\n \"estimated_size_in_bytes\": 0,\n \"estimated_size\": \"0b\",\n \"overhead\": 2,\n \"tripped\": 0\n },\n \"accounting\": {\n \"limit_size_in_bytes\": 1073741824,\n \"limit_size\": \"1gb\",\n \"estimated_size_in_bytes\": 1503060,\n \"estimated_size\": \"1.4mb\",\n \"overhead\": 1,\n \"tripped\": 0\n },\n \"parent\": {\n \"limit_size_in_bytes\": 1020054732,\n \"limit_size\": \"972.7mb\",\n \"estimated_size_in_bytes\": 364266568,\n \"estimated_size\": \"347.3mb\",\n \"overhead\": 1,\n \"tripped\": 0\n }\n },\n \"script\": {\n \"compilations\": 1,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n \"discovery\": {\n \"cluster_state_queue\": {\n \"total\": 0,\n \"pending\": 0,\n \"committed\": 0\n },\n \"published_cluster_states\": {\n \"full_states\": 2,\n \"incompatible_diffs\": 0,\n \"compatible_diffs\": 53\n }\n },\n \"ingest\": {\n \"total\": {\n \"count\": 0,\n \"time_in_millis\": 0,\n \"current\": 0,\n \"failed\": 0\n },\n \"pipelines\": {}\n },\n \"adaptive_selection\": {\n \"-N1pmqLWQ-etRKI5B2L4yw\": {\n \"outgoing_searches\": 0,\n \"avg_queue_size\": 0,\n \"avg_service_time_ns\": 110164,\n \"avg_response_time_ns\": 364949,\n \"rank\": \"0.4\"\n }\n },\n \"script_cache\": {\n \"sum\": {\n \"compilations\": 1,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n \"contexts\": [\n {\n \"context\": \"aggregation_selector\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"aggs\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"aggs_combine\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"aggs_init\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"aggs_map\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"aggs_reduce\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"analysis\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"bucket_aggregation\",\n \"compilations\": 1,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"field\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"filter\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"ingest\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"interval\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"moving-function\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"number_sort\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"painless_test\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"processor_conditional\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"score\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"script_heuristic\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"similarity\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"similarity_weight\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"string_sort\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"template\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"terms_set\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n },\n {\n \"context\": \"update\",\n \"compilations\": 0,\n \"cache_evictions\": 0,\n \"compilation_limit_triggered\": 0\n }\n ]\n },\n \"indexing_pressure\": {\n \"memory\": {\n \"current\": {\n \"combined_coordinating_and_primary_in_bytes\": 0,\n \"coordinating_in_bytes\": 0,\n \"primary_in_bytes\": 0,\n \"replica_in_bytes\": 0,\n \"all_in_bytes\": 0\n },\n \"total\": {\n \"combined_coordinating_and_primary_in_bytes\": 2775456967,\n \"coordinating_in_bytes\": 2775456967,\n \"primary_in_bytes\": 2860425703,\n \"replica_in_bytes\": 0,\n \"all_in_bytes\": 2775456967,\n \"coordinating_rejections\": 0,\n \"primary_rejections\": 0,\n \"replica_rejections\": 0\n },\n \"limit_in_bytes\": 107374182\n }\n }\n }\n }\n}" - -} \ No newline at end of file + fmt.Println(len(jsonStr)) +} From 82a620ad61e3d7bfcc94d621adef4402af05630e Mon Sep 17 00:00:00 2001 From: hardy Date: Mon, 6 Jan 2025 15:49:46 +0800 Subject: [PATCH 2/2] test: add env flag --- .github/workflows/unit_test.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index 6a7ab2b..47ef401 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -46,6 +46,8 @@ jobs: run: go version - name: Unit test + env: + GOFLAGS: -tags=ci run: | echo Home path is $HOME export WORKBASE=$HOME/go/src/infini.sh @@ -62,4 +64,4 @@ jobs: # for unit test cd $WORK echo Testing code at $PWD ... - make config test \ No newline at end of file + make test \ No newline at end of file