Elasticsearch: Curl /_cat/indices causes null pointer exception

Created on 19 Oct 2017  路  11Comments  路  Source: elastic/elasticsearch

Elasticsearch version

curl -s localhost:9200/
{
  "name" : "es-c2-m1",
  "cluster_name" : "es-c2",
  "cluster_uuid" : "zc5Ak5LoRRy_zfaC39JTFA",
  "version" : {
    "number" : "5.5.2",
    "build_hash" : "b2f0c09",
    "build_date" : "2017-08-14T12:33:14.154Z",
    "build_snapshot" : false,
    "lucene_version" : "6.6.0"
  },
  "tagline" : "You Know, for Search"
}

Plugins installed: []

      "plugins" : [
        {
          "name" : "repository-gcs",
          "version" : "5.5.2",
          "description" : "The GCS repository plugin adds Google Cloud Storage support for repositories.",
          "classname" : "org.elasticsearch.repositories.gcs.GoogleCloudStoragePlugin",
          "has_native_controller" : false
        }
      ],

JVM version (java -version):

java -version
java version "1.8.0_144"
Java(TM) SE Runtime Environment (build 1.8.0_144-b01)
Java HotSpot(TM) 64-Bit Server VM (build 25.144-b01, mixed mode)

OS version

uname -a
Linux es-c2-m1 4.9.0-3-amd64 #1 SMP Debian 4.9.30-2+deb9u3 (2017-08-06) x86_64 GNU/Linux

Description of the problem including expected versus actual behavior:
Request indices via a curl, like so:

curl localhost:9200/_cat/indices

The expected result is a table of indices in the cluster, but instead a null pointer exception is returned:

curl localhost:9200/_cat/indices
{"error":{"root_cause":[{"type":"null_pointer_exception","reason":null}],"type":"null_pointer_exception","reason":null},"status":500}

Steps to reproduce:

  1. ssh into any node in the cluster, master or data node
  2. run command curl localhost:9200/_cat/indices

Provide logs (if relevant)
The following stack trace shows up in the logs right after the curl command is issued:

[2017-10-18T22:52:40,381][DEBUG][o.e.a.a.i.s.TransportIndicesStatsAction] [es-c2-m1] failed to execute [indices:monitor/stats] on node [6QkTt8qWSiKU1sZSTDa9dg]
org.elasticsearch.transport.RemoteTransportException: [es-c2-4][10.240.0.234:9300][indices:monitor/stats[n]]
Caused by: java.lang.IllegalStateException: Negative longs unsupported, use writeLong or writeZLong for negative numbers [-4134408331751]
    at org.elasticsearch.common.io.stream.StreamOutput.writeVLong(StreamOutput.java:219) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.index.search.stats.SearchStats$Stats.writeTo(SearchStats.java:211) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.index.search.stats.SearchStats.writeTo(SearchStats.java:353) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.common.io.stream.StreamOutput.writeOptionalStreamable(StreamOutput.java:723) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.action.admin.indices.stats.CommonStats.writeTo(CommonStats.java:255) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.action.admin.indices.stats.ShardStats.writeTo(ShardStats.java:102) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.common.io.stream.StreamOutput.writeOptionalStreamable(StreamOutput.java:723) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$NodeResponse.writeTo(TransportBroadcastByNodeAction.java:574) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.TcpTransport.buildMessage(TcpTransport.java:1235) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.TcpTransport.sendResponse(TcpTransport.java:1184) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.TcpTransport.sendResponse(TcpTransport.java:1165) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.TcpTransportChannel.sendResponse(TcpTransportChannel.java:67) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.TcpTransportChannel.sendResponse(TcpTransportChannel.java:61) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.DelegatingTransportChannel.sendResponse(DelegatingTransportChannel.java:60) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.RequestHandlerRegistry$TransportChannelWrapper.sendResponse(RequestHandlerRegistry.java:111) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(TransportBroadcastByNodeAction.java:425) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$BroadcastByNodeTransportRequestHandler.messageReceived(TransportBroadcastByNodeAction.java:399) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.TransportRequestHandler.messageReceived(TransportRequestHandler.java:33) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.RequestHandlerRegistry.processMessageReceived(RequestHandlerRegistry.java:69) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.TcpTransport$RequestHandler.doRun(TcpTransport.java:1544) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.common.util.concurrent.ThreadContext$ContextPreservingAbstractRunnable.doRun(ThreadContext.java:638) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.common.util.concurrent.AbstractRunnable.run(AbstractRunnable.java:37) ~[elasticsearch-5.5.2.jar:5.5.2]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149) ~[?:1.8.0_144]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624) ~[?:1.8.0_144]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_144]
[2017-10-18T22:52:40,383][WARN ][r.suppressed             ] path: /_cat/indices, params: {format=json}
java.lang.NullPointerException: null
    at org.elasticsearch.rest.action.cat.RestIndicesAction.buildTable(RestIndicesAction.java:368) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.rest.action.cat.RestIndicesAction$1$1$1.buildResponse(RestIndicesAction.java:116) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.rest.action.cat.RestIndicesAction$1$1$1.buildResponse(RestIndicesAction.java:113) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.rest.action.RestResponseListener.processResponse(RestResponseListener.java:37) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.rest.action.RestActionListener.onResponse(RestActionListener.java:47) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.action.support.TransportAction$1.onResponse(TransportAction.java:88) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.action.support.TransportAction$1.onResponse(TransportAction.java:84) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$AsyncAction.onCompletion(TransportBroadcastByNodeAction.java:391) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$AsyncAction.onNodeFailure(TransportBroadcastByNodeAction.java:376) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.action.support.broadcast.node.TransportBroadcastByNodeAction$AsyncAction$1.handleException(TransportBroadcastByNodeAction.java:335) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.TransportService$ContextRestoreResponseHandler.handleException(TransportService.java:1067) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.TcpTransport.lambda$handleException$16(TcpTransport.java:1467) ~[elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.common.util.concurrent.EsExecutors$1.execute(EsExecutors.java:110) [elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.TcpTransport.handleException(TcpTransport.java:1465) [elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.TcpTransport.handlerResponseError(TcpTransport.java:1457) [elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.TcpTransport.messageReceived(TcpTransport.java:1401) [elasticsearch-5.5.2.jar:5.5.2]
    at org.elasticsearch.transport.netty4.Netty4MessageChannelHandler.channelRead(Netty4MessageChannelHandler.java:74) [transport-netty4-5.5.2.jar:5.5.2]
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:340) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:310) [netty-codec-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.handler.codec.ByteToMessageDecoder.fireChannelRead(ByteToMessageDecoder.java:297) [netty-codec-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.handler.codec.ByteToMessageDecoder.callDecode(ByteToMessageDecoder.java:413) [netty-codec-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.handler.codec.ByteToMessageDecoder.channelRead(ByteToMessageDecoder.java:265) [netty-codec-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.AbstractChannelHandlerContext.fireChannelRead(AbstractChannelHandlerContext.java:340) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.DefaultChannelPipeline$HeadContext.channelRead(DefaultChannelPipeline.java:1334) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:362) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.AbstractChannelHandlerContext.invokeChannelRead(AbstractChannelHandlerContext.java:348) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.DefaultChannelPipeline.fireChannelRead(DefaultChannelPipeline.java:926) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.nio.AbstractNioByteChannel$NioByteUnsafe.read(AbstractNioByteChannel.java:134) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.nio.NioEventLoop.processSelectedKey(NioEventLoop.java:644) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.nio.NioEventLoop.processSelectedKeysPlain(NioEventLoop.java:544) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.nio.NioEventLoop.processSelectedKeys(NioEventLoop.java:498) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.channel.nio.NioEventLoop.run(NioEventLoop.java:458) [netty-transport-4.1.11.Final.jar:4.1.11.Final]
    at io.netty.util.concurrent.SingleThreadEventExecutor$5.run(SingleThreadEventExecutor.java:858) [netty-common-4.1.11.Final.jar:4.1.11.Final]
    at java.lang.Thread.run(Thread.java:748) [?:1.8.0_144]
:CorFeatureStats >bug

Most helpful comment

I also got this NPE via /_cat/indices?v with v5.4.0
Any possibility to prevent this without upgrade to 5.6.4 or 6.0.0 ?

All 11 comments

@mdmarek What was the status of your cluster when this was happening?

We recently fixed (https://github.com/elastic/elasticsearch/pull/26953) an issue (https://github.com/elastic/elasticsearch/issues/26942) where a NPE would occur if a primary shard was missing (and the cluster was red).

@tvernum Thank you for responding. I saw those other issues, which is why I posted this one. The version of Elasticsearch we are using, 5.5.2, seems like it should be covered by those fixes.

In light of that, I though that this might be a regression, and the issue is not actually fixed.

To answer your question, the cluster is in green, and was in green when I ran those commands. I just ran it again, and get the same null pointer exception, here is the sequence of commands:

es-c2-m1:~$ curl -s 'localhost:9200/_cluster/health?pretty'
{
  "cluster_name" : "es-c2",
  "status" : "green",
  "timed_out" : false,
  "number_of_nodes" : 18,
  "number_of_data_nodes" : 15,
  "active_primary_shards" : 500,
  "active_shards" : 1000,
  "relocating_shards" : 0,
  "initializing_shards" : 0,
  "unassigned_shards" : 0,
  "delayed_unassigned_shards" : 0,
  "number_of_pending_tasks" : 0,
  "number_of_in_flight_fetch" : 0,
  "task_max_waiting_in_queue_millis" : 0,
  "active_shards_percent_as_number" : 100.0
}

es-c2-m1:~$ curl -s 'localhost:9200/_cat/indices?pretty'
{
  "error" : {
    "root_cause" : [
      {
        "type" : "null_pointer_exception",
        "reason" : null
      }
    ],
    "type" : "null_pointer_exception",
    "reason" : null
  },
  "status" : 500
}

This is an active cluster, so I can reproduce this issue at will. We are calling that path to fill a status page, unfortunately we just get the NPE.

Any ideas?

@mdmarek

That PR was merged only into 5.6.4, which is unreleased. It is happening because of this line:

https://github.com/elastic/elasticsearch/blob/b2f0c096c18393e016cb0ad89fcb9db6bdcd5907/core/src/main/java/org/elasticsearch/index/search/stats/SearchStats.java#L211

For some reason the scrollTimeInMillis is negative for at least one index for some reason. Given that you have 500 primaries, I have no idea which index is at fault here (and it may be more than one), but are you able to execute

$ curl -s 'localhost:9200/_stats?pretty'

I would kind of be surprised if you can, but I am curious if there is something else at play.

@pickypg Oddly enough I can run that command, here is the sequence:

es-c2-m1:~$ curl -s 'localhost:9200/_stats?pretty' >/tmp/out.tmp
es-c2-m1:~$ head -20 /tmp/out.tmp
{
  "_shards" : {
    "total" : 1000,
    "successful" : 134,
    "failed" : 866,
    "failures" : [
      {
        "shard" : 1,
        "index" : "ents_4_content",
        "status" : "INTERNAL_SERVER_ERROR",
        "reason" : {
          "type" : "failed_node_exception",
          "reason" : "Failed node [pguZHKx-SYeYMKmchXBkRg]",
          "caused_by" : {
            "type" : "illegal_state_exception",
            "reason" : "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-7481122573017]"
          }
        }
      },
      {

@tvernum @pickypg Thank you for clarifying which version will contain the fix.

Can you share the output of GET /_stats/search?level=shards?

@jasontedor Here is the output of GET /_stats/search?level=shards

{
  "_shards": {
    "total": 1000,
    "successful": 134,
    "failed": 866,
    "failures": [
      {
        "shard": 1,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [pguZHKx-SYeYMKmchXBkRg]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-7119592664645]"
          }
        }
      },
      {
        "shard": 6,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [9EcwT69NTAeOzOmHF8gptw]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-7089754353819]"
          }
        }
      },
      {
        "shard": 8,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [4lglZut5TjS2cNudPg45Sw]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-2919678814984]"
          }
        }
      },
      {
        "shard": 4,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [6QkTt8qWSiKU1sZSTDa9dg]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-3145018936215]"
          }
        }
      },
      {
        "shard": 6,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [uxPGcUtFSKW3vZH9cg3Cbw]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-3198465973812]"
          }
        }
      },
      {
        "shard": 9,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [aSlKFokMSnaon-r64Z23lg]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-7083790164540]"
          }
        }
      },
      {
        "shard": 5,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [Y8RvPwP0QVqtcDJ54lI21A]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-7206350567482]"
          }
        }
      },
      {
        "shard": 9,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [sr4zNmGURbmNceloV9GyGw]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-7121368275320]"
          }
        }
      },
      {
        "shard": 3,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [S4PCLAFDSJ2HOYtA3S_XwA]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-7033974871860]"
          }
        }
      },
      {
        "shard": 3,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [On8stbaqQxuZftfR3_fZpg]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-7149733983654]"
          }
        }
      },
      {
        "shard": 1,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [BZ_Egw_kTVuYG9Y_BAPnNw]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-7064001399089]"
          }
        }
      },
      {
        "shard": 4,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [9-RQY3OdR7WSwr4gUAp3DQ]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-7017593270581]"
          }
        }
      },
      {
        "shard": 7,
        "index": "ents_3_4_y",
        "status": "INTERNAL_SERVER_ERROR",
        "reason": {
          "type": "failed_node_exception",
          "reason": "Failed node [BLq015s9S3etcGOU_zgsZw]",
          "caused_by": {
            "type": "illegal_state_exception",
            "reason": "Negative longs unsupported, use writeLong or writeZLong for negative numbers [-7069575020223]"
          }
        }
      }
    ]
  },
  "_all": {
    "primaries": {
      "search": {
        "open_contexts": 24961,
        "query_total": 22019227,
        "query_time_in_millis": 4164165371,
        "query_current": 0,
        "fetch_total": 9082805,
        "fetch_time_in_millis": 31758662,
        "fetch_current": 0,
        "scroll_total": 11971703,
        "scroll_time_in_millis": 6732998278166,
        "scroll_current": 24961,
        "suggest_total": 0,
        "suggest_time_in_millis": 0,
        "suggest_current": 0
      }
    },
    "total": {
      "search": {
        "open_contexts": 25097,
        "query_total": 31313815,
        "query_time_in_millis": 7734204280,
        "query_current": 1,
        "fetch_total": 9219369,
        "fetch_time_in_millis": 59449550,
        "fetch_current": 0,
        "scroll_total": 11979447,
        "scroll_time_in_millis": 6985543196357,
        "scroll_current": 25097,
        "suggest_total": 0,
        "suggest_time_in_millis": 0,
        "suggest_current": 0
      }
    }
  },
  "indices": {
    "ents_6_13_z": {
      "primaries": {
        "search": {
          "open_contexts": 0,
          "query_total": 70055,
          "query_time_in_millis": 18536431,
          "query_current": 0,
          "fetch_total": 8166,
          "fetch_time_in_millis": 917631,
          "fetch_current": 0,
          "scroll_total": 28,
          "scroll_time_in_millis": 387169423,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 0,
          "query_total": 70055,
          "query_time_in_millis": 18536431,
          "query_current": 0,
          "fetch_total": 8166,
          "fetch_time_in_millis": 917631,
          "fetch_current": 0,
          "scroll_total": 28,
          "scroll_time_in_millis": 387169423,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "2": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 70055,
              "query_time_in_millis": 18536431,
              "query_current": 0,
              "fetch_total": 8166,
              "fetch_time_in_millis": 917631,
              "fetch_current": 0,
              "scroll_total": 28,
              "scroll_time_in_millis": 387169423,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kQ/A==",
              "generation": 1646,
              "user_data": {
                "translog_uuid": "5QBW0Lo_TeysHSlu7yJWgA",
                "translog_generation": "387",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 12256607
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_3_4_y": {
      "primaries": {
        "search": {
          "open_contexts": 24805,
          "query_total": 12112042,
          "query_time_in_millis": 193116785,
          "query_current": 0,
          "fetch_total": 8951180,
          "fetch_time_in_millis": 3785634,
          "fetch_current": 0,
          "scroll_total": 11964160,
          "scroll_time_in_millis": 6489243259157,
          "scroll_current": 24805,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 24805,
          "query_total": 12112042,
          "query_time_in_millis": 193116785,
          "query_current": 0,
          "fetch_total": 8951180,
          "fetch_time_in_millis": 3785634,
          "fetch_current": 0,
          "scroll_total": 11964160,
          "scroll_time_in_millis": 6489243259157,
          "scroll_current": 24805,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "0": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 12376,
              "query_total": 5995976,
              "query_time_in_millis": 90467872,
              "query_current": 0,
              "fetch_total": 3015211,
              "fetch_time_in_millis": 1370466,
              "fetch_current": 0,
              "scroll_total": 5924678,
              "scroll_time_in_millis": 3037886493901,
              "scroll_current": 12376,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kXCA==",
              "generation": 2224,
              "user_data": {
                "translog_uuid": "1XaaAaGPSTSaGLH72WjJFQ",
                "sync_id": "AV82ngQYlqM5HImF_H9p",
                "translog_generation": "410",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 1445029
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "8": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 12429,
              "query_total": 6116066,
              "query_time_in_millis": 102648913,
              "query_current": 0,
              "fetch_total": 5935969,
              "fetch_time_in_millis": 2415168,
              "fetch_current": 0,
              "scroll_total": 6039482,
              "scroll_time_in_millis": 3451356765256,
              "scroll_current": 12429,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG51Q==",
              "generation": 2401,
              "user_data": {
                "translog_uuid": "fzRHDUmQT1GoX9qET-4fxA",
                "sync_id": "AV82Yz7eid_0uQmXPj9d",
                "translog_generation": "454",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 1449188
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_7_8_z": {
      "primaries": {
        "search": {
          "open_contexts": 0,
          "query_total": 0,
          "query_time_in_millis": 0,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 0,
          "query_total": 0,
          "query_time_in_millis": 0,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "65": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8dIoA==",
              "generation": 230,
              "user_data": {
                "translog_uuid": "-cj_C_XhTRC0wFC0S51Pdw",
                "sync_id": "AV5UQHdPlLek85mYTPdQ",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7555930
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "1": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YXzg==",
              "generation": 244,
              "user_data": {
                "translog_uuid": "fc_-26JfSg-ecyQZJfeu9A",
                "sync_id": "AV5UQJZqJW5FltHgXVik",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7644883
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "2": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YYXQ==",
              "generation": 247,
              "user_data": {
                "translog_uuid": "mvx6YmvPSSSetn3lqR42jA",
                "sync_id": "AV5UQIV5cUukG21P8EeS",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7700547
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "68": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YYAQ==",
              "generation": 246,
              "user_data": {
                "translog_uuid": "jEvaMiZnQdCpQs-1tM0-dA",
                "sync_id": "AV5UQJsPJW5FltHgXVit",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7666363
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "69": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YZvQ==",
              "generation": 246,
              "user_data": {
                "translog_uuid": "KZmcQlMWRHGEFNLcnAkI4g",
                "sync_id": "AV5UQJCjka25Xoui3nIX",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7613698
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "5": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YZ3g==",
              "generation": 245,
              "user_data": {
                "translog_uuid": "-8bOe7tWQaC-zYfm1IakPA",
                "sync_id": "AV5UQHeRlLek85mYTPdR",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7655792
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "9": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YXhA==",
              "generation": 250,
              "user_data": {
                "translog_uuid": "w1TeU4ueRwCqScm402aUJg",
                "sync_id": "AV5UQJBJka25Xoui3nIW",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7658835
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "10": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YXgw==",
              "generation": 242,
              "user_data": {
                "translog_uuid": "KMrA2huUQOKyjuSGbbZzMQ",
                "sync_id": "AV5UQHaKlLek85mYTPdO",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7635035
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "11": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YZEg==",
              "generation": 246,
              "user_data": {
                "translog_uuid": "VH8cRE1dS_2zG84QiP4Xgw",
                "sync_id": "AV5UQIwqJW5FltHgXVif",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7692069
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "12": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YYNA==",
              "generation": 247,
              "user_data": {
                "translog_uuid": "HEN6QFMOTduLKFax_WeTew",
                "sync_id": "AV5UQIascUukG21P8EeU",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7658060
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "76": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/7cdQ==",
              "generation": 235,
              "user_data": {
                "translog_uuid": "so-Jav2JSaCoRYHo-X996A",
                "sync_id": "AV5zBTMOlog0vERXgZA6",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7659458
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "13": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KDw==",
              "generation": 238,
              "user_data": {
                "translog_uuid": "AWseoT9dTxKWStC_esqeyg",
                "sync_id": "AV5UQHYr52joHGdOrCRn",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7649976
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "15": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YXqQ==",
              "generation": 247,
              "user_data": {
                "translog_uuid": "b3O-opslSv6t4FbWS091oA",
                "sync_id": "AV5UQHuUlLek85mYTPdT",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7641698
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "19": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KEg==",
              "generation": 253,
              "user_data": {
                "translog_uuid": "6XLxPJPgQZuM98fks37dVg",
                "sync_id": "AV5UQJEoka25Xoui3nIZ",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7662624
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "20": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YXgg==",
              "generation": 238,
              "user_data": {
                "translog_uuid": "hg5uGQElS6ODnHgIfVqFBw",
                "sync_id": "AV5UQHxglLek85mYTPdW",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7632816
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "21": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KEA==",
              "generation": 242,
              "user_data": {
                "translog_uuid": "hIA-xQioQeuDkdW7iBtI1Q",
                "sync_id": "AV5UQI7-JW5FltHgXVih",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7621345
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "23": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YXhQ==",
              "generation": 238,
              "user_data": {
                "translog_uuid": "TbYsXtR2Sty7ygtHpJUBxA",
                "sync_id": "AV5UQHrJ52joHGdOrCRt",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7613728
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "24": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YaQA==",
              "generation": 243,
              "user_data": {
                "translog_uuid": "D7yIamFsQdeZTPfSKoxo1w",
                "sync_id": "AV5UQJOeka25Xoui3nId",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7554978
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "26": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KEw==",
              "generation": 245,
              "user_data": {
                "translog_uuid": "2HO-SEXCQdOXpJssULjnCw",
                "sync_id": "AV5UQJoPJW5FltHgXViq",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7582593
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "35": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KFQ==",
              "generation": 239,
              "user_data": {
                "translog_uuid": "1MKoaletS4y2OT37MP1Iyw",
                "sync_id": "AV5UQIJilLek85mYTPda",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7655228
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "37": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KFA==",
              "generation": 237,
              "user_data": {
                "translog_uuid": "EDzX8BqFR0aBmKrQgZY6QQ",
                "sync_id": "AV5UQH8n52joHGdOrCRy",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7606003
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "39": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KFw==",
              "generation": 243,
              "user_data": {
                "translog_uuid": "ibH-NNSsT7mJz0P0Q5-n-Q",
                "sync_id": "AV5UQJVYka25Xoui3nIf",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7660596
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "42": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KGg==",
              "generation": 236,
              "user_data": {
                "translog_uuid": "vjuV1A4XQt2RZacnwllq2g",
                "sync_id": "AV5UQICl52joHGdOrCRz",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7639535
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "43": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KEQ==",
              "generation": 251,
              "user_data": {
                "translog_uuid": "DVIFzlucQm-qYApODNiJyQ",
                "sync_id": "AV5UQJeOJW5FltHgXVin",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7636299
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "44": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KGQ==",
              "generation": 247,
              "user_data": {
                "translog_uuid": "PbxWpC3GRRiN8IBrv8AcJg",
                "sync_id": "AV5UQJSSka25Xoui3nIe",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7713600
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "48": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KHA==",
              "generation": 241,
              "user_data": {
                "translog_uuid": "adl2N8bYRFCwhx__8xTuDg",
                "sync_id": "AV5UQJ1rJW5FltHgXViy",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7682123
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "56": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAACtQ==",
              "generation": 245,
              "user_data": {
                "translog_uuid": "M3dGkopsSe6Q6xdTkzeCUw",
                "sync_id": "AV5UQI10cUukG21P8Eed",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7630314
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_1_48_z": {
      "primaries": {
        "search": {
          "open_contexts": 2,
          "query_total": 3235010,
          "query_time_in_millis": 940332448,
          "query_current": 0,
          "fetch_total": 53344,
          "fetch_time_in_millis": 13603562,
          "fetch_current": 0,
          "scroll_total": 3402,
          "scroll_time_in_millis": 121923656684,
          "scroll_current": 2,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 5,
          "query_total": 6729842,
          "query_time_in_millis": 1790369911,
          "query_current": 0,
          "fetch_total": 111494,
          "fetch_time_in_millis": 28204095,
          "fetch_current": 0,
          "scroll_total": 7102,
          "scroll_time_in_millis": 259169526708,
          "scroll_current": 5,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "0": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 411716,
              "query_time_in_millis": 116823237,
              "query_current": 0,
              "fetch_total": 7445,
              "fetch_time_in_millis": 1969813,
              "fetch_current": 0,
              "scroll_total": 470,
              "scroll_time_in_millis": 16804390357,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8gpow==",
              "generation": 285,
              "user_data": {
                "translog_uuid": "Jzal-WHKRFSKFrXeHUD-iQ",
                "sync_id": "AV8FbZwalqM5HImF_H59",
                "translog_generation": "53",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34630424
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "1": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 1,
              "query_total": 483921,
              "query_time_in_millis": 152963777,
              "query_current": 0,
              "fetch_total": 8213,
              "fetch_time_in_millis": 2102384,
              "fetch_current": 0,
              "scroll_total": 502,
              "scroll_time_in_millis": 18020283621,
              "scroll_current": 1,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8gpng==",
              "generation": 311,
              "user_data": {
                "translog_uuid": "xHC_WlM_TdiQdkc9BO9Mgw",
                "sync_id": "AV8FbSbDlqM5HImF_H58",
                "translog_generation": "54",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34661532
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "2": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 421730,
              "query_time_in_millis": 104987277,
              "query_current": 0,
              "fetch_total": 6830,
              "fetch_time_in_millis": 1715876,
              "fetch_current": 0,
              "scroll_total": 453,
              "scroll_time_in_millis": 16308840300,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8gpqg==",
              "generation": 251,
              "user_data": {
                "translog_uuid": "yyIbmy9CQYuGN-O_wtQGMg",
                "sync_id": "AV8FbeW4i0Xr2w4yldT7",
                "translog_generation": "37",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34691608
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "34": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 573340,
              "query_time_in_millis": 131785098,
              "query_current": 0,
              "fetch_total": 9808,
              "fetch_time_in_millis": 2364748,
              "fetch_current": 0,
              "scroll_total": 551,
              "scroll_time_in_millis": 21442512040,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMADZow==",
              "generation": 271,
              "user_data": {
                "translog_uuid": "2nINUmIgQhey8-u0FryjDw",
                "sync_id": "AV8Fbe-Za4wR0iT4ArkZ",
                "translog_generation": "56",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34691631
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "35": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 1,
              "query_total": 510137,
              "query_time_in_millis": 132949425,
              "query_current": 0,
              "fetch_total": 8346,
              "fetch_time_in_millis": 2090292,
              "fetch_current": 0,
              "scroll_total": 541,
              "scroll_time_in_millis": 20299066644,
              "scroll_current": 1,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMADZlw==",
              "generation": 269,
              "user_data": {
                "translog_uuid": "ApayZgCpQFGUqPiOO-gbLw",
                "sync_id": "AV8FbaCWoNoocWt5elYI",
                "translog_generation": "59",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34630762
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "37": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 423382,
              "query_time_in_millis": 110693532,
              "query_current": 0,
              "fetch_total": 6685,
              "fetch_time_in_millis": 1730436,
              "fetch_current": 0,
              "scroll_total": 440,
              "scroll_time_in_millis": 15682725184,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8gprQ==",
              "generation": 276,
              "user_data": {
                "translog_uuid": "pH-Zz-a6Rx2ved6BNJpsww",
                "sync_id": "AV8FberFlqM5HImF_H5_",
                "translog_generation": "55",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34668325
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "43": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 528232,
              "query_time_in_millis": 155454596,
              "query_current": 0,
              "fetch_total": 8861,
              "fetch_time_in_millis": 2239158,
              "fetch_current": 0,
              "scroll_total": 552,
              "scroll_time_in_millis": 20181725857,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMADZoA==",
              "generation": 259,
              "user_data": {
                "translog_uuid": "5sCpgeOKSLK6LW2ORZnNEg",
                "sync_id": "AV8FbeLyid_0uQmXPj6V",
                "translog_generation": "63",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34615373
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "14": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 415757,
              "query_time_in_millis": 123268466,
              "query_current": 0,
              "fetch_total": 6433,
              "fetch_time_in_millis": 1632453,
              "fetch_current": 0,
              "scroll_total": 417,
              "scroll_time_in_millis": 14682680796,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8gprg==",
              "generation": 341,
              "user_data": {
                "translog_uuid": "7q8nEzuzQS6HKgXOYcKQOQ",
                "sync_id": "AV8FbesxlqM5HImF_H6A",
                "translog_generation": "57",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34681296
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "17": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 1,
              "query_total": 452721,
              "query_time_in_millis": 110009265,
              "query_current": 0,
              "fetch_total": 7460,
              "fetch_time_in_millis": 1861363,
              "fetch_current": 0,
              "scroll_total": 477,
              "scroll_time_in_millis": 16610103210,
              "scroll_current": 1,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8gppQ==",
              "generation": 242,
              "user_data": {
                "translog_uuid": "LiiXIe5ASl27tsre9VD7bg",
                "sync_id": "AV8FbaijPCfS-z5uQQaH",
                "translog_generation": "38",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34628157
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "20": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 515425,
              "query_time_in_millis": 122564259,
              "query_current": 0,
              "fetch_total": 8597,
              "fetch_time_in_millis": 2124466,
              "fetch_current": 0,
              "scroll_total": 559,
              "scroll_time_in_millis": 20617423268,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMADZng==",
              "generation": 288,
              "user_data": {
                "translog_uuid": "hAa0Mm4MRGKhJ35Kt5neRw",
                "sync_id": "AV8FbdABVr3ne82Za7iz",
                "translog_generation": "55",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34633030
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "24": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 1,
              "query_total": 508971,
              "query_time_in_millis": 115980954,
              "query_current": 0,
              "fetch_total": 8551,
              "fetch_time_in_millis": 2259243,
              "fetch_current": 0,
              "scroll_total": 559,
              "scroll_time_in_millis": 21116656773,
              "scroll_current": 1,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMADZnA==",
              "generation": 286,
              "user_data": {
                "translog_uuid": "p9FUWmWoTka2qTBxxRCc7Q",
                "sync_id": "AV8Fbc1XbZIB-PSTgrVb",
                "translog_generation": "54",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34729716
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "25": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 517285,
              "query_time_in_millis": 181221188,
              "query_current": 0,
              "fetch_total": 8396,
              "fetch_time_in_millis": 2127525,
              "fetch_current": 0,
              "scroll_total": 563,
              "scroll_time_in_millis": 19745980179,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMADZkw==",
              "generation": 442,
              "user_data": {
                "translog_uuid": "TYN31bpxTOeQZ4BiLyfXWg",
                "sync_id": "AV8FbR_iid_0uQmXPj6U",
                "translog_generation": "231",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34716987
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "26": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 1,
              "query_total": 454717,
              "query_time_in_millis": 99907652,
              "query_current": 0,
              "fetch_total": 7311,
              "fetch_time_in_millis": 1801793,
              "fetch_current": 0,
              "scroll_total": 458,
              "scroll_time_in_millis": 16805870690,
              "scroll_current": 1,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8gppw==",
              "generation": 290,
              "user_data": {
                "translog_uuid": "LByFOxK-QlOiWIhpjCMcCQ",
                "sync_id": "AV8Fba_tlqM5HImF_H5-",
                "translog_generation": "56",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34641873
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          },
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 512508,
              "query_time_in_millis": 131761185,
              "query_current": 0,
              "fetch_total": 8558,
              "fetch_time_in_millis": 2184545,
              "fetch_current": 0,
              "scroll_total": 560,
              "scroll_time_in_millis": 20851267789,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMADZmQ==",
              "generation": 270,
              "user_data": {
                "translog_uuid": "mTQTSSe8Q1WwqwW599NoOQ",
                "sync_id": "AV8Fba_tlqM5HImF_H5-",
                "translog_generation": "56",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34641873
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_2_7_z": {
      "primaries": {
        "search": {
          "open_contexts": 0,
          "query_total": 85487,
          "query_time_in_millis": 99506,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 13,
          "scroll_time_in_millis": 86707719,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 0,
          "query_total": 127066,
          "query_time_in_millis": 148752,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 24,
          "scroll_time_in_millis": 162598725,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "1": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 41579,
              "query_time_in_millis": 49246,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 11,
              "scroll_time_in_millis": 75891006,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YZ0g==",
              "generation": 10,
              "user_data": {
                "translog_uuid": "OGURvCujR6eMVZaXFC8E4Q",
                "sync_id": "AV4XMp1nJW5FltHgXVWM",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 7115
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "5": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 41596,
              "query_time_in_millis": 47276,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 7,
              "scroll_time_in_millis": 46980625,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/7cMA==",
              "generation": 11,
              "user_data": {
                "translog_uuid": "DtGcQlCwSPKlDulrfuyCgg",
                "sync_id": "AV4XMpNHlLek85mYTPRv",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 6863
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "6": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 43891,
              "query_time_in_millis": 52230,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 6,
              "scroll_time_in_millis": 39727094,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KIw==",
              "generation": 9,
              "user_data": {
                "translog_uuid": "gbbV11QZSLG-DlDf7LRESg",
                "sync_id": "AV5zDmrVcUukG21P8Emf",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 6909
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_3_9_z": {
      "primaries": {
        "search": {
          "open_contexts": 19,
          "query_total": 2786247,
          "query_time_in_millis": 2110793090,
          "query_current": 0,
          "fetch_total": 16140,
          "fetch_time_in_millis": 1194542,
          "fetch_current": 0,
          "scroll_total": 1059,
          "scroll_time_in_millis": 28524594499,
          "scroll_current": 19,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 30,
          "query_total": 4689404,
          "query_time_in_millis": 3891258570,
          "query_current": 1,
          "fetch_total": 31624,
          "fetch_time_in_millis": 2104799,
          "fetch_current": 0,
          "scroll_total": 1816,
          "scroll_time_in_millis": 48575820958,
          "scroll_current": 30,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "16": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 2,
              "query_total": 256933,
              "query_time_in_millis": 193007177,
              "query_current": 0,
              "fetch_total": 277,
              "fetch_time_in_millis": 92526,
              "fetch_current": 0,
              "scroll_total": 148,
              "scroll_time_in_millis": 3727190199,
              "scroll_current": 2,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kQ3Q==",
              "generation": 238,
              "user_data": {
                "translog_uuid": "o1Kc1K6qSRqyZG2AwkJNAQ",
                "translog_generation": "69",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 75721517
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "33": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 2,
              "query_total": 260746,
              "query_time_in_millis": 230245814,
              "query_current": 0,
              "fetch_total": 69,
              "fetch_time_in_millis": 11599,
              "fetch_current": 0,
              "scroll_total": 160,
              "scroll_time_in_millis": 3851959544,
              "scroll_current": 2,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG1dA==",
              "generation": 212,
              "user_data": {
                "translog_uuid": "yiAAnapLTgWVYsPHtyO8gw",
                "translog_generation": "69",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 75804569
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "2": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 1,
              "query_total": 434263,
              "query_time_in_millis": 326229660,
              "query_current": 0,
              "fetch_total": 4948,
              "fetch_time_in_millis": 251004,
              "fetch_current": 0,
              "scroll_total": 124,
              "scroll_time_in_millis": 3552223939,
              "scroll_current": 1,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kLFg==",
              "generation": 242,
              "user_data": {
                "translog_uuid": "8yctL7V1TLqc5ZXR5cYkbQ",
                "translog_generation": "40",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 75800375
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "3": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 3,
              "query_total": 523635,
              "query_time_in_millis": 553237253,
              "query_current": 0,
              "fetch_total": 9872,
              "fetch_time_in_millis": 478248,
              "fetch_current": 0,
              "scroll_total": 137,
              "scroll_time_in_millis": 4225186204,
              "scroll_current": 3,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kLfQ==",
              "generation": 236,
              "user_data": {
                "translog_uuid": "pA8R02FNQfKToHhZvXpbRg",
                "translog_generation": "50",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 75833382
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "36": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 3,
              "query_total": 351380,
              "query_time_in_millis": 362730214,
              "query_current": 1,
              "fetch_total": 286,
              "fetch_time_in_millis": 79966,
              "fetch_current": 0,
              "scroll_total": 167,
              "scroll_time_in_millis": 4112961757,
              "scroll_current": 3,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAGy0g==",
              "generation": 232,
              "user_data": {
                "translog_uuid": "ELszoBitThGvY5EaZ-zdJg",
                "translog_generation": "67",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 75820319
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "38": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 3,
              "query_total": 273670,
              "query_time_in_millis": 276328994,
              "query_current": 0,
              "fetch_total": 76,
              "fetch_time_in_millis": 11894,
              "fetch_current": 0,
              "scroll_total": 157,
              "scroll_time_in_millis": 3894136701,
              "scroll_current": 3,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG3Xw==",
              "generation": 215,
              "user_data": {
                "translog_uuid": "VaL0kg-zQa-n7XCu8yWAWg",
                "translog_generation": "47",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 75809796
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "23": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 3,
              "query_total": 535275,
              "query_time_in_millis": 295995625,
              "query_current": 0,
              "fetch_total": 5131,
              "fetch_time_in_millis": 334756,
              "fetch_current": 0,
              "scroll_total": 153,
              "scroll_time_in_millis": 4454653613,
              "scroll_current": 3,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kQ3g==",
              "generation": 234,
              "user_data": {
                "translog_uuid": "mq3nkZQfSi6pNWJ802rOBQ",
                "translog_generation": "65",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 75762755
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "8": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 3,
              "query_total": 514561,
              "query_time_in_millis": 396999656,
              "query_current": 0,
              "fetch_total": 5119,
              "fetch_time_in_millis": 345696,
              "fetch_current": 0,
              "scroll_total": 133,
              "scroll_time_in_millis": 3990309769,
              "scroll_current": 3,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kQ1g==",
              "generation": 252,
              "user_data": {
                "translog_uuid": "WkRuDaLiSWy0vaUG-p_Tkw",
                "translog_generation": "73",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 75839784
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "24": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 1,
              "query_total": 320209,
              "query_time_in_millis": 261939359,
              "query_current": 0,
              "fetch_total": 302,
              "fetch_time_in_millis": 89145,
              "fetch_current": 0,
              "scroll_total": 172,
              "scroll_time_in_millis": 4266717858,
              "scroll_current": 1,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAGytQ==",
              "generation": 239,
              "user_data": {
                "translog_uuid": "talGGknJTIaak8ktV3JR2Q",
                "translog_generation": "47",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 75775502
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "41": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 2,
              "query_total": 552185,
              "query_time_in_millis": 455161794,
              "query_current": 0,
              "fetch_total": 5151,
              "fetch_time_in_millis": 307503,
              "fetch_current": 0,
              "scroll_total": 155,
              "scroll_time_in_millis": 4547729479,
              "scroll_current": 2,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG1ew==",
              "generation": 212,
              "user_data": {
                "translog_uuid": "ZCISpnXuRqGIt8O8WJsUYw",
                "translog_generation": "58",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 75709074
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "11": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 2,
              "query_total": 318243,
              "query_time_in_millis": 233296892,
              "query_current": 0,
              "fetch_total": 317,
              "fetch_time_in_millis": 92454,
              "fetch_current": 0,
              "scroll_total": 155,
              "scroll_time_in_millis": 3872371812,
              "scroll_current": 2,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kQ1w==",
              "generation": 240,
              "user_data": {
                "translog_uuid": "OUkDrN7JSWeE8z4JynDnFQ",
                "translog_generation": "67",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 75713812
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "43": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 5,
              "query_total": 348304,
              "query_time_in_millis": 306086132,
              "query_current": 0,
              "fetch_total": 76,
              "fetch_time_in_millis": 10008,
              "fetch_current": 0,
              "scroll_total": 155,
              "scroll_time_in_millis": 4080380083,
              "scroll_current": 5,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG1dg==",
              "generation": 273,
              "user_data": {
                "translog_uuid": "HASUozmuR-Wxx4PL1dzv-w",
                "translog_generation": "103",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 75773149
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_12_5_w": {
      "primaries": {
        "search": {
          "open_contexts": 0,
          "query_total": 449,
          "query_time_in_millis": 114,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 0,
          "query_total": 1348,
          "query_time_in_millis": 548,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "0": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 449,
              "query_time_in_millis": 114,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8hPbw==",
              "generation": 1,
              "user_data": {
                "translog_uuid": "UOB0F3LxQKeyNTLImpcyrw",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 0
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "5": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 448,
              "query_time_in_millis": 300,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG6UA==",
              "generation": 388,
              "user_data": {
                "translog_uuid": "nN-SowS6S3-L9YKBJLMqhA",
                "sync_id": "AV82dC3XbZIB-PSTgr_E",
                "translog_generation": "194",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 1
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "9": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 451,
              "query_time_in_millis": 134,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kWEQ==",
              "generation": 195,
              "user_data": {
                "translog_uuid": "gP2XbpSxTX246jK2cucjkw",
                "sync_id": "AV82dCHSoytK9aq0No4V",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 0
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_12_3_w": {
      "primaries": {
        "search": {
          "open_contexts": 0,
          "query_total": 20,
          "query_time_in_millis": 4,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 0,
          "query_total": 20,
          "query_time_in_millis": 4,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "2": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 8,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8behQ==",
              "generation": 1,
              "user_data": {
                "translog_uuid": "79gNyS_STpqduPc5QHuRvw",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 0
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "5": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 5,
              "query_time_in_millis": 3,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL//jzg==",
              "generation": 52,
              "user_data": {
                "translog_uuid": "CQdRRRRlSu6MWi9yucDKTg",
                "sync_id": "AV7l71Gyh-dLxXyAjV6y",
                "translog_generation": "26",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 1
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "6": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 7,
              "query_time_in_millis": 1,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/+Ygg==",
              "generation": 1,
              "user_data": {
                "translog_uuid": "QTEUqo3LRxGIg3kyDrbRiQ",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 0
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_4_3_y": {
      "primaries": {},
      "total": {
        "search": {
          "open_contexts": 2,
          "query_total": 10950,
          "query_time_in_millis": 94858,
          "query_current": 0,
          "fetch_total": 4041,
          "fetch_time_in_millis": 4352,
          "fetch_current": 0,
          "scroll_total": 22,
          "scroll_time_in_millis": 2460263691,
          "scroll_current": 2,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "4": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 1,
              "query_total": 2694,
              "query_time_in_millis": 41840,
              "query_current": 0,
              "fetch_total": 1539,
              "fetch_time_in_millis": 821,
              "fetch_current": 0,
              "scroll_total": 9,
              "scroll_time_in_millis": 1037911156,
              "scroll_current": 1,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kXBg==",
              "generation": 6446,
              "user_data": {
                "translog_uuid": "l4CoKQYsQimtGFy18dzTmg",
                "sync_id": "AV82nenhvesQcWp5-W8P",
                "translog_generation": "1808",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 297952
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "9": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 1,
              "query_total": 8256,
              "query_time_in_millis": 53018,
              "query_current": 0,
              "fetch_total": 2502,
              "fetch_time_in_millis": 3531,
              "fetch_current": 0,
              "scroll_total": 13,
              "scroll_time_in_millis": 1422352535,
              "scroll_current": 1,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG7Mg==",
              "generation": 6153,
              "user_data": {
                "translog_uuid": "RnBXf1kGQ1eBktofvo_qVg",
                "sync_id": "AV82nQmdoytK9aq0No4g",
                "translog_generation": "1889",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 302650
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_4_19_z": {
      "primaries": {
        "search": {
          "open_contexts": 0,
          "query_total": 7,
          "query_time_in_millis": 5361,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 0,
          "query_total": 22,
          "query_time_in_millis": 17952,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "0": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 1,
              "query_time_in_millis": 672,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eUBA==",
              "generation": 597,
              "user_data": {
                "translog_uuid": "rsV2mnR4Tc-8VApBchcRNg",
                "sync_id": "AV7viWm-i0Xr2w4yldPW",
                "translog_generation": "150",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22970328
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "1": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 1,
              "query_time_in_millis": 588,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eUAw==",
              "generation": 604,
              "user_data": {
                "translog_uuid": "krwNZKDpQcetN-WaSJeH5A",
                "sync_id": "AV7viWlii0Xr2w4yldPV",
                "translog_generation": "153",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22938062
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "65": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 1,
              "query_time_in_millis": 873,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJoA==",
              "generation": 563,
              "user_data": {
                "translog_uuid": "K6yDgoNEQo2V9d278bK9Xw",
                "sync_id": "AV7viWwDoNoocWt5elNG",
                "translog_generation": "206",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22843605
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "2": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 2,
              "query_time_in_millis": 1929,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eUFw==",
              "generation": 610,
              "user_data": {
                "translog_uuid": "r6783q1JSc2lC934awMh9g",
                "sync_id": "AV7viXlePCfS-z5uQQPD",
                "translog_generation": "154",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 23029720
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "3": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 1,
              "query_time_in_millis": 725,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eT+g==",
              "generation": 594,
              "user_data": {
                "translog_uuid": "rowStT3VQ7a8RmrWXoKWxQ",
                "sync_id": "AV7vh7e2lqM5HImF_H4H",
                "translog_generation": "147",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22953345
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "69": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJtQ==",
              "generation": 582,
              "user_data": {
                "translog_uuid": "8nhArQdlRaeDyxKQrhN-PQ",
                "sync_id": "AV7viXZ8id_0uQmXPj5D",
                "translog_generation": "213",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22893533
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "70": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 1,
              "query_time_in_millis": 924,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJsA==",
              "generation": 578,
              "user_data": {
                "translog_uuid": "mxTIXlrpQI2KcyzTAQXY0w",
                "sync_id": "AV7viXNsbZIB-PSTgrFD",
                "translog_generation": "214",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22939618
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "9": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 1,
              "query_time_in_millis": 650,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eUFg==",
              "generation": 577,
              "user_data": {
                "translog_uuid": "UmZnDr4ET9OTqWThgysnHA",
                "sync_id": "AV7viXiwvesQcWp5-WAo",
                "translog_generation": "22",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22961235
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "75": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 1,
              "query_time_in_millis": 819,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJuA==",
              "generation": 592,
              "user_data": {
                "translog_uuid": "5OSO6fwcSWOgmUq7mkDXuA",
                "sync_id": "AV7viXj1id_0uQmXPj5F",
                "translog_generation": "219",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22939934
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "83": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 2,
              "query_time_in_millis": 1771,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJtg==",
              "generation": 600,
              "user_data": {
                "translog_uuid": "qY74hs_YRR-9Gw_WDzw8Ng",
                "sync_id": "AV7viXdPbZIB-PSTgrFH",
                "translog_generation": "220",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 23002687
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "88": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJ6A==",
              "generation": 579,
              "user_data": {
                "translog_uuid": "T1_-_nGrRmeQjBt5Bram8w",
                "sync_id": "AV7viXTboytK9aq0Nn0I",
                "translog_generation": "216",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22847300
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "89": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 1,
              "query_time_in_millis": 913,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJtA==",
              "generation": 578,
              "user_data": {
                "translog_uuid": "6ou-hIRcTsiqpaqINg77JQ",
                "sync_id": "AV7viXWMoytK9aq0Nn0K",
                "translog_generation": "213",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22784743
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "28": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 1,
              "query_time_in_millis": 744,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eT+Q==",
              "generation": 589,
              "user_data": {
                "translog_uuid": "MGgqvP3NRaapwvRg30uLrA",
                "sync_id": "AV7vh7MSlqM5HImF_H4G",
                "translog_generation": "158",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22809503
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "30": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eUBg==",
              "generation": 596,
              "user_data": {
                "translog_uuid": "QLeVnlWPTym9nntbGERvRg",
                "sync_id": "AV7viWpQi0Xr2w4yldPX",
                "translog_generation": "150",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 23068484
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "33": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJyA==",
              "generation": 595,
              "user_data": {
                "translog_uuid": "4qViWMMkTLmE-ApzUUQ_QA",
                "sync_id": "AV7viXUMa4wR0iT4Ariy",
                "translog_generation": "221",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 23114999
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "98": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJsw==",
              "generation": 592,
              "user_data": {
                "translog_uuid": "WbZK7TJXT9G-nFhKxoQsRw",
                "sync_id": "AV7viXU_oytK9aq0Nn0J",
                "translog_generation": "221",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22984821
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "35": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 2,
              "query_time_in_millis": 1821,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eUEQ==",
              "generation": 611,
              "user_data": {
                "translog_uuid": "WNDWxOnEQUmLBZhWyEeC-w",
                "sync_id": "AV7viXYFlqM5HImF_H4K",
                "translog_generation": "158",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22860318
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "99": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 2,
              "query_time_in_millis": 1926,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJoQ==",
              "generation": 585,
              "user_data": {
                "translog_uuid": "vtoLNMV7R9eJxH_pIewLYQ",
                "sync_id": "AV7viWynVr3ne82Za7WR",
                "translog_generation": "214",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22858965
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "36": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 1,
              "query_time_in_millis": 651,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eU2w==",
              "generation": 600,
              "user_data": {
                "translog_uuid": "vIqpwpobQwSalsz-rHguCg",
                "sync_id": "AV7viXYFlqM5HImF_H4L",
                "translog_generation": "155",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22905445
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "37": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 2,
              "query_time_in_millis": 1675,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eT9A==",
              "generation": 574,
              "user_data": {
                "translog_uuid": "Vaq0XRmwRkm5Svs2jKlnGQ",
                "sync_id": "AV7vh64SbZIB-PSTgrE9",
                "translog_generation": "151",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22927068
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "38": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eUEA==",
              "generation": 605,
              "user_data": {
                "translog_uuid": "db8LbK9CSZiMgon8a1Gi8A",
                "sync_id": "AV7viXV2lqM5HImF_H4J",
                "translog_generation": "157",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22909091
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "41": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eT+A==",
              "generation": 590,
              "user_data": {
                "translog_uuid": "STC2D0xwTr6gka2o5Eq1WA",
                "sync_id": "AV7vh7JclqM5HImF_H4F",
                "translog_generation": "152",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22792954
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "42": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 1,
              "query_time_in_millis": 601,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eUFQ==",
              "generation": 591,
              "user_data": {
                "translog_uuid": "MUEmmhxQSe2KA9fqEGadhg",
                "sync_id": "AV7viXZtlqM5HImF_H4M",
                "translog_generation": "151",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22825263
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "45": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJrQ==",
              "generation": 586,
              "user_data": {
                "translog_uuid": "IrESOAm4R7Otv6jBeHirTA",
                "sync_id": "AV7viXLUbZIB-PSTgrFA",
                "translog_generation": "213",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22881983
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "46": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8eUDw==",
              "generation": 576,
              "user_data": {
                "translog_uuid": "UFN_xANQTRGShNRiCJwl-A",
                "sync_id": "AV7viXVhlqM5HImF_H4I",
                "translog_generation": "154",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22855972
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "55": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJtw==",
              "generation": 577,
              "user_data": {
                "translog_uuid": "tygehjYpRyOSrRu8k5gMhw",
                "sync_id": "AV7viXjLid_0uQmXPj5E",
                "translog_generation": "213",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22941314
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "58": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 1,
              "query_time_in_millis": 670,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMABJrA==",
              "generation": 572,
              "user_data": {
                "translog_uuid": "XEWNKpFSTuq3jrxV--4F5Q",
                "sync_id": "AV7viXLHmkWRzar0hS-Z",
                "translog_generation": "211",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 22734647
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_12_4_w": {
      "primaries": {
        "search": {
          "open_contexts": 0,
          "query_total": 581,
          "query_time_in_millis": 137,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 0,
          "query_total": 1695,
          "query_time_in_millis": 596,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "0": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 579,
              "query_time_in_millis": 170,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/+Y8A==",
              "generation": 2,
              "user_data": {
                "translog_uuid": "JFAV0EiNTRCmoSn3tIhyBg",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 0
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "2": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 581,
              "query_time_in_millis": 137,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8be3w==",
              "generation": 1,
              "user_data": {
                "translog_uuid": "2zkMzdG_SSmZtC8RohvxbA",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 0
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "5": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 535,
              "query_time_in_millis": 289,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8hPtw==",
              "generation": 413,
              "user_data": {
                "translog_uuid": "x4ucOnIvQC-AbmYhhWO8ig",
                "sync_id": "AV8MvrROvesQcWp5-WaO",
                "translog_generation": "168",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 1
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_2_4_w": {
      "primaries": {
        "search": {
          "open_contexts": 0,
          "query_total": 5802,
          "query_time_in_millis": 2630,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 0,
          "query_total": 11897,
          "query_time_in_millis": 5459,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "5": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 6095,
              "query_time_in_millis": 2829,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KDQ==",
              "generation": 9,
              "user_data": {
                "translog_uuid": "mmfqXWPBRm2vPvQd3jDfgQ",
                "sync_id": "AV4XSzgVlLek85mYTPRw",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 51
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "6": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 5802,
              "query_time_in_millis": 2630,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YZ/w==",
              "generation": 9,
              "user_data": {
                "translog_uuid": "467dLpczT3eBBYU8ozUcMg",
                "sync_id": "AV5zDsyacUukG21P8Emi",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 39
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_6_5_y": {
      "primaries": {},
      "total": {
        "search": {
          "open_contexts": 0,
          "query_total": 30295,
          "query_time_in_millis": 136064,
          "query_current": 0,
          "fetch_total": 6338,
          "fetch_time_in_millis": 10017,
          "fetch_current": 0,
          "scroll_total": 198,
          "scroll_time_in_millis": 1507879168,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "0": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 12249,
              "query_time_in_millis": 49239,
              "query_current": 0,
              "fetch_total": 2875,
              "fetch_time_in_millis": 4728,
              "fetch_current": 0,
              "scroll_total": 75,
              "scroll_time_in_millis": 649038506,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG6yQ==",
              "generation": 2869,
              "user_data": {
                "translog_uuid": "fDPXjUMHR7y5_veMsrAxrw",
                "sync_id": "AV82g0YhvesQcWp5-W8I",
                "translog_generation": "648",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 67813
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "7": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 12226,
              "query_time_in_millis": 49862,
              "query_current": 0,
              "fetch_total": 2955,
              "fetch_time_in_millis": 4650,
              "fetch_current": 0,
              "scroll_total": 56,
              "scroll_time_in_millis": 597874415,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kW/w==",
              "generation": 2984,
              "user_data": {
                "translog_uuid": "edOlqy-KTR66ML_UaLbDig",
                "sync_id": "AV82nRcebZIB-PSTgr_N",
                "translog_generation": "518",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 69150
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "9": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 5820,
              "query_time_in_millis": 36963,
              "query_current": 0,
              "fetch_total": 508,
              "fetch_time_in_millis": 639,
              "fetch_current": 0,
              "scroll_total": 67,
              "scroll_time_in_millis": 260966247,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG7NA==",
              "generation": 3017,
              "user_data": {
                "translog_uuid": "Ixad_29_Rdq53FNMlsxYeg",
                "sync_id": "AV82nR0ZoytK9aq0No4h",
                "translog_generation": "750",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 69536
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_5_6_z": {
      "primaries": {
        "search": {
          "open_contexts": 0,
          "query_total": 39905,
          "query_time_in_millis": 2828175,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 1,
          "scroll_time_in_millis": 3627250,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 0,
          "query_total": 179112,
          "query_time_in_millis": 12992975,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 3,
          "scroll_time_in_millis": 10911247,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "32": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 14542,
              "query_time_in_millis": 1034325,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 1,
              "scroll_time_in_millis": 3641999,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KJg==",
              "generation": 10,
              "user_data": {
                "translog_uuid": "Wuxqe7X1RcmIjjPfmD5G_g",
                "sync_id": "AV5VJyS0cUukG21P8Eem",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8659261
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "34": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 13261,
              "query_time_in_millis": 962987,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YYZQ==",
              "generation": 21,
              "user_data": {
                "translog_uuid": "oBWJq8mCRpmBFAyYeGSYAA",
                "sync_id": "AV7OTWJwlqM5HImF_HzV",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8697254
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "6": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 13219,
              "query_time_in_millis": 896082,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YaDg==",
              "generation": 18,
              "user_data": {
                "translog_uuid": "UuF6OgUJTfWpqF1N6OUMqw",
                "sync_id": "AV5VJxqUJW5FltHgXVi8",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8676217
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "8": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 13331,
              "query_time_in_millis": 884042,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YX+w==",
              "generation": 13,
              "user_data": {
                "translog_uuid": "I-hy39CeSpmTotnVf5evSw",
                "sync_id": "AV5VJyaF52joHGdOrCR_",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8664765
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "11": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 13290,
              "query_time_in_millis": 898971,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YZ0Q==",
              "generation": 20,
              "user_data": {
                "translog_uuid": "y2_J-5IET96dIz3DwCiKFg",
                "sync_id": "AV5k8K5VJW5FltHgXVlg",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8803180
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "14": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 14604,
              "query_time_in_millis": 1083427,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KKQ==",
              "generation": 15,
              "user_data": {
                "translog_uuid": "Umv3qbcFQ0aHjCd5l62pzQ",
                "sync_id": "AV5ttrBRka25Xoui3nMe",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8761139
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "18": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 14493,
              "query_time_in_millis": 1088142,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KJQ==",
              "generation": 11,
              "user_data": {
                "translog_uuid": "aM7FbSRVToWwDIjh5gD--g",
                "sync_id": "AV5VJyef52joHGdOrCSG",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8726097
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "21": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 14496,
              "query_time_in_millis": 1077037,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KJA==",
              "generation": 16,
              "user_data": {
                "translog_uuid": "PNAaa4kdTx29vvtf0nn4Zw",
                "sync_id": "AV5VJxuSJW5FltHgXVjB",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8693625
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "22": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 14523,
              "query_time_in_millis": 1101627,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KHw==",
              "generation": 13,
              "user_data": {
                "translog_uuid": "JLALPdkgTIKZLct_8cD4Ag",
                "sync_id": "AV5zBTMPlog0vERXgZA8",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8768465
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "23": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 14558,
              "query_time_in_millis": 1105596,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 1,
              "scroll_time_in_millis": 3641998,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KJw==",
              "generation": 11,
              "user_data": {
                "translog_uuid": "lhribt2cSVunSllevrEh3g",
                "sync_id": "AV5VJydo52joHGdOrCSE",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8646982
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "25": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 14545,
              "query_time_in_millis": 1067445,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5KIA==",
              "generation": 17,
              "user_data": {
                "translog_uuid": "1N0NMGgcRk-BG0uJ62GgIg",
                "sync_id": "AV6mQ2VdvesQcWp5-VSQ",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8655146
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "26": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 10937,
              "query_time_in_millis": 812148,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8dJFA==",
              "generation": 18,
              "user_data": {
                "translog_uuid": "e9lXXSU_TOepaAzkt_l_4g",
                "sync_id": "AV5VJxtiJW5FltHgXVjA",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8687651
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "31": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 13313,
              "query_time_in_millis": 981146,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 1,
              "scroll_time_in_millis": 3627250,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8YZdA==",
              "generation": 20,
              "user_data": {
                "translog_uuid": "r-YacbSAR2GZhnr6CDlgRA",
                "sync_id": "AV7OaWiwlqM5HImF_Hzr",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 8762992
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_1_49_z": {
      "primaries": {
        "search": {
          "open_contexts": 135,
          "query_total": 3683439,
          "query_time_in_millis": 898450558,
          "query_current": 0,
          "fetch_total": 53975,
          "fetch_time_in_millis": 12257293,
          "fetch_current": 0,
          "scroll_total": 3040,
          "scroll_time_in_millis": 92829263434,
          "scroll_current": 135,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 255,
          "query_total": 7349793,
          "query_time_in_millis": 1827525207,
          "query_current": 0,
          "fetch_total": 106526,
          "fetch_time_in_millis": 24423022,
          "fetch_current": 0,
          "scroll_total": 6094,
          "scroll_time_in_millis": 184025767280,
          "scroll_current": 255,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "32": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 14,
              "query_total": 490126,
              "query_time_in_millis": 155637127,
              "query_current": 0,
              "fetch_total": 6502,
              "fetch_time_in_millis": 1619071,
              "fetch_current": 0,
              "scroll_total": 420,
              "scroll_time_in_millis": 12607288961,
              "scroll_current": 14,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kVmg==",
              "generation": 89,
              "user_data": {
                "translog_uuid": "xyzM5QOERVyBTSO80gfZmw",
                "sync_id": "AV82Xno3mkWRzar0hTcB",
                "translog_generation": "71",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34925759
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "0": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 20,
              "query_total": 471362,
              "query_time_in_millis": 118237928,
              "query_current": 0,
              "fetch_total": 7813,
              "fetch_time_in_millis": 1627154,
              "fetch_current": 0,
              "scroll_total": 438,
              "scroll_time_in_millis": 14481715689,
              "scroll_current": 20,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kVog==",
              "generation": 105,
              "user_data": {
                "translog_uuid": "TOcLUZaZQiKg_IN5WRIZDg",
                "sync_id": "AV82XoXDlqM5HImF_H9m",
                "translog_generation": "90",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34868613
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "1": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 18,
              "query_total": 524646,
              "query_time_in_millis": 159778918,
              "query_current": 0,
              "fetch_total": 7619,
              "fetch_time_in_millis": 1808635,
              "fetch_current": 0,
              "scroll_total": 437,
              "scroll_time_in_millis": 13363989998,
              "scroll_current": 18,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG5vw==",
              "generation": 92,
              "user_data": {
                "translog_uuid": "g91K_utATwesLH5IZlncbA",
                "sync_id": "AV82XnYZi0Xr2w4yldfA",
                "translog_generation": "72",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34907935
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "4": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 16,
              "query_total": 537399,
              "query_time_in_millis": 114678478,
              "query_current": 0,
              "fetch_total": 7993,
              "fetch_time_in_millis": 1793439,
              "fetch_current": 0,
              "scroll_total": 450,
              "scroll_time_in_millis": 13137239896,
              "scroll_current": 16,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kVnw==",
              "generation": 93,
              "user_data": {
                "translog_uuid": "ghocHy3kSd-1s_utEAVh8Q",
                "sync_id": "AV82XoRKbZIB-PSTgr-5",
                "translog_generation": "76",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34934669
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "38": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 18,
              "query_total": 534772,
              "query_time_in_millis": 130814957,
              "query_current": 0,
              "fetch_total": 7506,
              "fetch_time_in_millis": 1774317,
              "fetch_current": 0,
              "scroll_total": 441,
              "scroll_time_in_millis": 13379675252,
              "scroll_current": 18,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG5ww==",
              "generation": 92,
              "user_data": {
                "translog_uuid": "IJypdJ2STmeIPiqextBBPQ",
                "sync_id": "AV82XnqLGAP3MK8u2szL",
                "translog_generation": "73",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34958662
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "6": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 18,
              "query_total": 547504,
              "query_time_in_millis": 135701210,
              "query_current": 0,
              "fetch_total": 8118,
              "fetch_time_in_millis": 1818072,
              "fetch_current": 0,
              "scroll_total": 438,
              "scroll_time_in_millis": 13252114858,
              "scroll_current": 18,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG5vg==",
              "generation": 88,
              "user_data": {
                "translog_uuid": "Q1I6WQ1oTW-FRA3L0U9LLA",
                "sync_id": "AV82XnXh4L-bC6XVFNnY",
                "translog_generation": "72",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34888074
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "39": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 22,
              "query_total": 516461,
              "query_time_in_millis": 121401275,
              "query_current": 0,
              "fetch_total": 7306,
              "fetch_time_in_millis": 1727939,
              "fetch_current": 0,
              "scroll_total": 431,
              "scroll_time_in_millis": 13293642904,
              "scroll_current": 22,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG5xQ==",
              "generation": 109,
              "user_data": {
                "translog_uuid": "wlxJnmUqSCy5n7F7Qf6BLw",
                "sync_id": "AV82XoWsid_0uQmXPj9c",
                "translog_generation": "91",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34882908
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "9": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 17,
              "query_total": 544766,
              "query_time_in_millis": 134918199,
              "query_current": 0,
              "fetch_total": 7844,
              "fetch_time_in_millis": 1717818,
              "fetch_current": 0,
              "scroll_total": 433,
              "scroll_time_in_millis": 12486364917,
              "scroll_current": 17,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG5vA==",
              "generation": 176,
              "user_data": {
                "translog_uuid": "UZ9MbR7KRBa0-KMwTNwMnA",
                "sync_id": "AV82XnK2id_0uQmXPj9a",
                "translog_generation": "159",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34889058
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "13": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 17,
              "query_total": 484965,
              "query_time_in_millis": 113477495,
              "query_current": 0,
              "fetch_total": 6974,
              "fetch_time_in_millis": 1595211,
              "fetch_current": 0,
              "scroll_total": 449,
              "scroll_time_in_millis": 13364882801,
              "scroll_current": 17,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kVmA==",
              "generation": 89,
              "user_data": {
                "translog_uuid": "NsGZDbxyT2OKO8dirzyyQA",
                "sync_id": "AV82XnUIs0Cpny6BzFuS",
                "translog_generation": "72",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34874957
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "45": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 15,
              "query_total": 548822,
              "query_time_in_millis": 134851387,
              "query_current": 0,
              "fetch_total": 7805,
              "fetch_time_in_millis": 1783830,
              "fetch_current": 0,
              "scroll_total": 430,
              "scroll_time_in_millis": 12671082305,
              "scroll_current": 15,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kVlg==",
              "generation": 109,
              "user_data": {
                "translog_uuid": "cuHHmYqaTkWqH4LH6_YcYQ",
                "sync_id": "AV82XnEhlqM5HImF_H9j",
                "translog_generation": "92",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34893685
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "15": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 23,
              "query_total": 556362,
              "query_time_in_millis": 121115763,
              "query_current": 0,
              "fetch_total": 8280,
              "fetch_time_in_millis": 1866016,
              "fetch_current": 0,
              "scroll_total": 450,
              "scroll_time_in_millis": 13978504629,
              "scroll_current": 23,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kVoQ==",
              "generation": 106,
              "user_data": {
                "translog_uuid": "KZTC9IA4TBSoCqM1i1JmQg",
                "sync_id": "AV82XoWUlqM5HImF_H9l",
                "translog_generation": "90",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34891681
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "24": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 17,
              "query_total": 528699,
              "query_time_in_millis": 148656802,
              "query_current": 0,
              "fetch_total": 7564,
              "fetch_time_in_millis": 1770155,
              "fetch_current": 0,
              "scroll_total": 428,
              "scroll_time_in_millis": 12523258684,
              "scroll_current": 17,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG5yQ==",
              "generation": 103,
              "user_data": {
                "translog_uuid": "MBeVLPx2RXK8z4oXfFVEQQ",
                "sync_id": "AV82XnNKid_0uQmXPj9b",
                "translog_generation": "87",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34958863
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "25": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 19,
              "query_total": 546942,
              "query_time_in_millis": 118986464,
              "query_current": 0,
              "fetch_total": 7839,
              "fetch_time_in_millis": 1756984,
              "fetch_current": 0,
              "scroll_total": 419,
              "scroll_time_in_millis": 12091312080,
              "scroll_current": 19,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAG5wg==",
              "generation": 126,
              "user_data": {
                "translog_uuid": "BoH1XumqRAewXTiecOsNhg",
                "sync_id": "AV82XnqAoNoocWt5el0s",
                "translog_generation": "110",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34951763
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "30": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 21,
              "query_total": 516967,
              "query_time_in_millis": 119269204,
              "query_current": 0,
              "fetch_total": 7363,
              "fetch_time_in_millis": 1764381,
              "fetch_current": 0,
              "scroll_total": 430,
              "scroll_time_in_millis": 13394694306,
              "scroll_current": 21,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8kVoA==",
              "generation": 107,
              "user_data": {
                "translog_uuid": "yGN0xKvcSWCzInj7nChwFw",
                "sync_id": "AV82XoWNlqM5HImF_H9k",
                "translog_generation": "92",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 34882192
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "snapshot": {
      "primaries": {},
      "total": {
        "search": {
          "open_contexts": 0,
          "query_total": 0,
          "query_time_in_millis": 0,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "4": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/5N8Q==",
              "generation": 10,
              "user_data": {
                "translog_uuid": "WUXODS0bSXeB4MU_89Cvlg",
                "sync_id": "AV5zcgKnjMH1VtblFcjh",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 0
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    },
    "ents_12_2_w": {
      "primaries": {
        "search": {
          "open_contexts": 0,
          "query_total": 183,
          "query_time_in_millis": 132,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "total": {
        "search": {
          "open_contexts": 0,
          "query_total": 274,
          "query_time_in_millis": 168,
          "query_current": 0,
          "fetch_total": 0,
          "fetch_time_in_millis": 0,
          "fetch_current": 0,
          "scroll_total": 0,
          "scroll_time_in_millis": 0,
          "scroll_current": 0,
          "suggest_total": 0,
          "suggest_time_in_millis": 0,
          "suggest_current": 0
        }
      },
      "shards": {
        "0": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 91,
              "query_time_in_millis": 26,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8beBQ==",
              "generation": 1,
              "user_data": {
                "translog_uuid": "B7hIVpgiTzy_UPgCxiUm8w",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 0
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "5": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "wVqtKh8TShW9SCkALv40ww",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 91,
              "query_time_in_millis": 36,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "4/1+onbVnAD/YXChg8cj6g==",
              "generation": 58,
              "user_data": {
                "translog_uuid": "mGPk3-JNSHWtBb9pTlGuoQ",
                "sync_id": "AV7lgDhHVr3ne82Za7Q-",
                "translog_generation": "29",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 1
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "7": [
          {
            "routing": {
              "state": "STARTED",
              "primary": false,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 0,
              "query_time_in_millis": 0,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblMAACYw==",
              "generation": 2,
              "user_data": {
                "translog_uuid": "_wfBWMxySZ2Jq4aERS2Vew",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 0
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ],
        "8": [
          {
            "routing": {
              "state": "STARTED",
              "primary": true,
              "node": "UrnbjGiySZmdi8fBxNll_g",
              "relocating_node": null
            },
            "search": {
              "open_contexts": 0,
              "query_total": 92,
              "query_time_in_millis": 106,
              "query_current": 0,
              "fetch_total": 0,
              "fetch_time_in_millis": 0,
              "fetch_current": 0,
              "scroll_total": 0,
              "scroll_time_in_millis": 0,
              "scroll_current": 0,
              "suggest_total": 0,
              "suggest_time_in_millis": 0,
              "suggest_current": 0
            },
            "commit": {
              "id": "8iVAkcB8oYjxqOblL/+X3A==",
              "generation": 1,
              "user_data": {
                "translog_uuid": "XTlnjVnVTbK3pmtpEi_BQw",
                "translog_generation": "1",
                "max_unsafe_auto_id_timestamp": "-1"
              },
              "num_docs": 0
            },
            "shard_path": {
              "state_path": "/mnt/es/nodes/0",
              "data_path": "/mnt/es/nodes/0",
              "is_custom_data_path": false
            }
          }
        ]
      }
    }
  }
}

Thanks for reporting, I see the issue. I will open a fix shortly.

I opened #27068.

I also got this NPE via /_cat/indices?v with v5.4.0
Any possibility to prevent this without upgrade to 5.6.4 or 6.0.0 ?

I've run into the same issue on v5.4.1. Is there a possible fix short of upgrading?

Was this page helpful?
0 / 5 - 0 ratings