Hello guys, Could you help me why "docs.count" below is not increasing? it's stack at 2307764. while the "docs.deleted" keeps increasing.
i'm just running a php script to ingest the csv source data to ES. [login@machine elasticsearch]$ curl 'localhost:9200/_cat/indices?v' health index pri rep docs.count docs.deleted store.size pri.store.size green kibana-int 5 1 1 0 25.6kb 12.8kb green basic-info 5 1 2307764 412834 1.2gb 638mb [login@machine elasticsearch]$ curl 'localhost:9200/_cat/indices?v' health index pri rep docs.count docs.deleted store.size pri.store.size green kibana-int 5 1 1 0 25.6kb 12.8kb green basic-info 5 1 2307764 421090 1.2gb 637.8mb [login@machine elasticsearch]$ curl 'localhost:9200/_cat/indices?v' health index pri rep docs.count docs.deleted store.size pri.store.size green kibana-int 5 1 1 0 25.6kb 12.8kb green basic-info 5 1 2307764 434017 1.2gb 638.5mb [login@machine elasticsearch]$ curl 'localhost:9200/_cat/indices?v' health index pri rep docs.count docs.deleted store.size pri.store.size green kibana-int 5 1 1 0 25.6kb 12.8kb green basic-info 5 1 2307764 437557 1.2gb 632.6mb [login@machine elasticsearch]$ curl 'localhost:9200/_cat/indices?v' health index pri rep docs.count docs.deleted store.size pri.store.size green kibana-int 5 1 1 0 25.6kb 12.8kb green basic-info 5 1 2307764 451098 1.2gb 642.4mb [login@machine elasticsearch]$ curl 'localhost:9200/_cat/indices?v' health index pri rep docs.count docs.deleted store.size pri.store.size green kibana-int 5 1 1 0 25.6kb 12.8kb green basic-info 5 1 2307764 514957 1.3gb 670.1mb [login@machine elasticsearch]$ curl 'localhost:9200/_cat/indices?v' health index pri rep docs.count docs.deleted store.size pri.store.size green kibana-int 5 1 1 0 25.6kb 12.8kb green basic-info 5 1 2307764 882639 1.4gb 734.7mb It's running 4 nodes of c3.large. ES-1.2.3 Is there anything I need to add in the elasticsearch.yml below ? cluster.name: clustername node.name: “machine00" discovery.zen.ping.multicast.enabled: false discovery.zen.ping.unicast.hosts: [“machine01","machine02","machine03”] discovery.zen.minimum_master_nodes: 3 -- You received this message because you are subscribed to the Google Groups "elasticsearch" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/elasticsearch/9b056741-69f8-4288-9b4a-e77755c66249%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
