elastic / elasticsearch-hadoop

:elephant: Elasticsearch real-time search and analytics natively integrated with Hadoop
https://www.elastic.co/products/hadoop
Apache License 2.0
1.93k stars 989 forks source link

MapReduce jobs are running infinitely during a write/read operation (Pig, Hive, Spark) #783

Closed ArcTheMaster closed 7 years ago

ArcTheMaster commented 8 years ago

Issue description

I'm facing a major issue with ES-Hadoop and more particularly when a Mapreduce job is launched. I have the same behavior with Pig, Hive and Spark.

The use case is the following (from Pig, Hive or Spark):

You can find below more information for each software.

Steps to reproduce

Pig version Code:

grunt> REGISTER /opt/application/Pig/current/lib/elasticsearch-hadoop.jar;
grunt> CSV = LOAD 'public_chicago/CSV' USING org.elasticsearch.hadoop.pig.EsStorage('es.net.ssl=true','es.net.http.auth.user=shfs3453','es.net.http.auth.pass=mypasswd!','es.nodes=es-loadbalancer.cluster.fr','es.nodes.discovery=false','es.nodes.client.only=true','es.port=9200','es.query=?q=fbicode:08B');
grunt> DUMP CSV;

Pig strack trace:

16/06/07 10:28:20 DEBUG pig.EsStorage: Using pre-defined writer serializer [org.elasticsearch.hadoop.pig.PigValueWriter] as default
16/06/07 10:28:20 DEBUG pig.EsStorage: Using pre-defined reader serializer [org.elasticsearch.hadoop.pig.PigValueReader] as default
16/06/07 10:28:20 DEBUG pig.EsStorage: Using pre-defined field extractor [org.elasticsearch.hadoop.pig.PigFieldExtractor] as default
23602 [JobControl] WARN  org.apache.hadoop.mapreduce.JobResourceUploader  - No job jar file set.  User classes may not be found. See Job or Job#setJar(String).
16/06/07 10:28:21 WARN mapreduce.JobResourceUploader: No job jar file set.  User classes may not be found. See Job or Job#setJar(String).
16/06/07 10:28:21 INFO util.Version: Elasticsearch Hadoop v2.3.2 [cae8b760fe]
16/06/07 10:28:21 DEBUG commonshttp.CommonsHttpTransport: SSL Connection enabled
16/06/07 10:28:21 INFO commonshttp.CommonsHttpTransport: Using detected HTTP Auth credentials...
16/06/07 10:28:22 DEBUG mr.EsInputFormat: Discovered Elasticsearch version [1.6.2]
16/06/07 10:28:22 DEBUG commonshttp.CommonsHttpTransport: SSL Connection enabled
16/06/07 10:28:22 INFO commonshttp.CommonsHttpTransport: Using detected HTTP Auth credentials...
16/06/07 10:28:23 DEBUG mr.EsInputFormat: Found client nodes [10.77.64.228:9200]
16/06/07 10:28:23 DEBUG mr.EsInputFormat: Filtered discovered only nodes [10.77.64.228:9200] to client-only [10.77.64.228:9200]
16/06/07 10:28:23 DEBUG commonshttp.CommonsHttpTransport: SSL Connection enabled
16/06/07 10:28:23 INFO commonshttp.CommonsHttpTransport: Using detected HTTP Auth credentials...
16/06/07 10:28:24 INFO mr.EsInputFormat: Reading from [public_chicago/CSV]
16/06/07 10:28:25 INFO mr.EsInputFormat: Discovered mapping {CSV=[arrest=BOOLEAN, beat=LONG, block=STRING, casenumber=STRING, communityarea=LONG, date=STRING, description=STRING, district=LONG, domestic=BOOLEAN, fbicode=STRING, geolocation=STRING, id=LONG, iucr=STRING, latitude=STRING, locationdescription=STRING, longitude=STRING, primarytype=STRING, updatedon=STRING, ward=LONG, xcoordinate=LONG, ycoordinate=LONG, year=LONG]} for [public_chicago/CSV]
16/06/07 10:28:25 DEBUG rest.RestRepository: Closing repository and connection to Elasticsearch ...
16/06/07 10:28:25 INFO mr.EsInputFormat: Created [5] shard-splits

Spark version Code:

$ spark-shell -v --name elasticsearch-hadoop --master yarn-client --conf spark.es.net.ssl=true --conf spark.es.net.http.auth.user=shfs3453 --conf spark.es.net.http.auth.pass=mypasswd! --conf spark.es.nodes=es-loadbalancer.cluster.fr --conf spark.es.port=9200 --conf spark.es.read.field.empty.as.null=true --conf spark.es.resource=public_chicago/CSV --jars /opt/application/Spark/current/lib_managed/jars/elasticsearch-hadoop.jar
Welcome to
      ____              __
     / __/__  ___ _____/ /__
    _\ \/ _ \/ _ `/ __/  '_/
   /___/ .__/\_,_/_/ /_/\_\   version 1.6.1
      /_/

Using Scala version 2.10.5 (OpenJDK 64-Bit Server VM, Java 1.7.0_101)
Type in expressions to have them evaluated.
Type :help for more information.
Spark context available as sc.
SQL context available as sqlContext.

scala> import org.elasticsearch.spark._
import org.elasticsearch.spark._

scala> val RDD1 = sc.esRDD("public_chicago/CSV", "?q=fbicode:08B")
RDD1: org.apache.spark.rdd.RDD[(String, scala.collection.Map[String,AnyRef])] = ScalaEsRDD[0] at RDD at AbstractEsRDD.scala:17

scala> RDD1.collect().foreach(println)

Spark strack trace:

16/06/07 11:01:29 DEBUG CommonsHttpTransport: SSL Connection enabled
16/06/07 11:01:29 INFO CommonsHttpTransport: Using detected HTTP Auth credentials...
16/06/07 11:01:30 DEBUG CommonsHttpTransport: SSL Connection enabled
16/06/07 11:01:30 INFO CommonsHttpTransport: Using detected HTTP Auth credentials...
16/06/07 11:01:32 DEBUG CommonsHttpTransport: SSL Connection enabled
16/06/07 11:01:32 INFO CommonsHttpTransport: Using detected HTTP Auth credentials...
16/06/07 11:01:32 DEBUG CommonsHttpTransport: SSL Connection enabled
16/06/07 11:01:32 INFO CommonsHttpTransport: Using detected HTTP Auth credentials...
16/06/07 11:01:34 DEBUG RestRepository: Closing repository and connection to Elasticsearch ...
[Stage 0:>                                                          (0 + 5) / 5]

Hive version Code:

hive (shfs3453)> add jar /opt/application/Hive/current/lib/elasticsearch-hadoop.jar;
add jar /opt/application/Hive/current/lib/elasticsearch-hadoop.jar
Added [/opt/application/Hive/current/lib/elasticsearch-hadoop.jar] to class path
Added resources: [/opt/application/Hive/current/lib/elasticsearch-hadoop.jar]
hive (shfs3453)> CREATE EXTERNAL TABLE elastic_table_1 (ID BIGINT, CaseNumber STRING, Day STRING, Block STRING, IUCR BIGINT, PrimaryType STRING, Description STRING, LocationDescription STRING, Arrest BOOLEAN, Domestic BOOLEAN, Beat BIGINT, District BIGINT, Ward BIGINT, CommunityArea BIGINT, FBICode BIGINT, XCoordinate BIGINT, YCoordinate BIGINT, Year BIGINT, UpdatedOn STRING, Latitude DOUBLE, Longitude DOUBLE, Location STRING) STORED BY 'org.elasticsearch.hadoop.hive.EsStorageHandler' TBLPROPERTIES ("es.net.ssl" = "true", "es.net.http.auth.user" = "shfs3453", "es.net.http.auth.pass" = "mypasswd!", "es.nodes" = "es-loadbalancer.cluster.fr", "es.resource" = "public_chicago/CSV");
CREATE EXTERNAL TABLE elastic_table_1 (ID BIGINT, CaseNumber STRING, Day STRING, Block STRING, IUCR BIGINT, PrimaryType STRING, Description STRING, LocationDescription STRING, Arrest BOOLEAN, Domestic BOOLEAN, Beat BIGINT, District BIGINT, Ward BIGINT, CommunityArea BIGINT, FBICode BIGINT, XCoordinate BIGINT, YCoordinate BIGINT, Year BIGINT, UpdatedOn STRING, Latitude DOUBLE, Longitude DOUBLE, Location STRING) STORED BY 'org.elasticsearch.hadoop.hive.EsStorageHandler' TBLPROPERTIES ("es.net.ssl" = "true", "es.net.http.auth.user" = "shfs3453", "es.net.http.auth.pass" = "mypasswd!", "es.nodes" = "es-loadbalancer.cluster.fr", "es.resource" = "public_chicago/CSV")
OK
Time taken: 0.518 seconds
hive (shfs3453)> SELECT * FROM elastic_table_1;

Hive strack trace:

SELECT * FROM elastic_table_1
OK

Version Info

OS: : REL 6.8 JVM : 1.7 (openJDK) Hadoop/Hive/Pig/Spark: 2.7.2/2.0.1/0.15.0/1.6.1 ES-Hadoop : 2.3.2 (stable) ES : 1.6.2

ArcTheMaster commented 8 years ago

In addition, I also have the Spark stack trace in "TRACE" below:

scala> RDD1.collect().foreach(println)
16/06/07 14:48:48 DEBUG CommonsHttpTransport: SSL Connection enabled
16/06/07 14:48:48 INFO CommonsHttpTransport: Using detected HTTP Auth credentials...
16/06/07 14:48:48 TRACE CommonsHttpTransport: Opening HTTP transport to 10.77.64.228:9200
16/06/07 14:48:48 TRACE CommonsHttpTransport: Tx [GET]@[10.77.64.228:9200][] w/ payload [null]
16/06/07 14:48:49 TRACE CommonsHttpTransport: Rx @[10.77.95.200] [200-OK] [{
  "status" : 200,
  "name" : "es-loadbalancer.cluster.fr",
  "cluster_name" : "ELASTIC.CLUSTER",
  "version" : {
    "number" : "1.6.2",
    "build_hash" : "622039121e53e5f520b5ff8720fdbd3d0cb5326b",
    "build_timestamp" : "2015-07-29T09:24:47Z",
    "build_snapshot" : false,
    "lucene_version" : "4.10.4"
  },
  "tagline" : "You Know, for Search"
}
]
16/06/07 14:48:49 DEBUG ScalaEsRDD: Discovered Elasticsearch version [1.6.2]
16/06/07 14:48:49 TRACE CommonsHttpTransport: Closing HTTP transport to 10.77.64.228:9200
16/06/07 14:48:49 DEBUG CommonsHttpTransport: SSL Connection enabled
16/06/07 14:48:49 INFO CommonsHttpTransport: Using detected HTTP Auth credentials...
16/06/07 14:48:49 TRACE CommonsHttpTransport: Opening HTTP transport to 10.77.64.228:9200
16/06/07 14:48:49 TRACE CommonsHttpTransport: Tx [GET]@[10.77.64.228:9200][_nodes/transport] w/ payload [null]
16/06/07 14:48:49 TRACE CommonsHttpTransport: Rx @[10.77.95.200] [200-OK] [{"cluster_name":"ELASTIC.PEI","nodes":{"3FAntaX_QDex5f3ZiIy-Kg":{"name":"elasticsearch-node38.fr","transport_address":"inet[/10.77.64.38:9300]","host":"elasticsearch-node38.fr","ip":"10.77.64.38","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node38.fr/10.77.64.38:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.38:9300]","publish_address":"inet[/10.77.64.38:9300]","profiles":{}}},"aYPNkAnRQY21eXvqRo_RyQ":{"name":"elasticsearch-node50.fr","transport_address":"inet[/10.77.64.50:9300]","host":"elasticsearch-node50.fr","ip":"10.77.64.50","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node50.fr/10.77.64.50:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.50:9300]","publish_address":"inet[/10.77.64.50:9300]","profiles":{}}},"F4ZWDp29QiuwOMd6IIcdgQ":{"name":"elasticsearch-node73.fr","transport_address":"inet[/10.77.64.73:9300]","host":"elasticsearch-node73.fr","ip":"10.77.64.73","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node73.fr/10.77.64.73:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.73:9300]","publish_address":"inet[/10.77.64.73:9300]","profiles":{}}},"uWLxUQfrShKZU2_5xETEUA":{"name":"elasticsearch-node72.fr","transport_address":"inet[/10.77.64.72:9300]","host":"elasticsearch-node72.fr","ip":"10.77.64.72","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node72.fr/10.77.64.72:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.72:9300]","publish_address":"inet[/10.77.64.72:9300]","profiles":{}}},"g_wg56c_TDuo9uQbwzNl1A":{"name":"elasticsearch-node74.fr","transport_address":"inet[/10.77.64.74:9300]","host":"elasticsearch-node74.fr","ip":"10.77.64.74","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node74.fr/10.77.64.74:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.74:9300]","publish_address":"inet[/10.77.64.74:9300]","profiles":{}}},"5P5wxjEfT9KVrkFFjVjPYA":{"name":"elasticsearch-node21.fr","transport_address":"inet[/10.77.64.21:9300]","host":"elasticsearch-node21.fr","ip":"10.77.64.21","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node21.fr/10.77.64.21:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.21:9300]","publish_address":"inet[/10.77.64.21:9300]","profiles":{}}},"3rmvVjN3QVycXMSJuuekmg":{"name":"elasticsearch-node81.fr","transport_address":"inet[/10.77.64.81:9300]","host":"elasticsearch-node81.fr","ip":"10.77.64.81","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node81.fr/10.77.64.81:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.81:9300]","publish_address":"inet[/10.77.64.81:9300]","profiles":{}}},"Y8c09UTjRDScbd6UTSmKIg":{"name":"elasticsearch-node31.fr","transport_address":"inet[/10.77.64.31:9300]","host":"elasticsearch-node31.fr","ip":"10.77.64.31","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node31.fr/10.77.64.31:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.31:9300]","publish_address":"inet[/10.77.64.31:9300]","profiles":{}}},"SmfUq1ePQ1auBQr6hAXWbQ":{"name":"elasticsearch-node55.fr","transport_address":"inet[/10.77.64.55:9300]","host":"elasticsearch-node55.fr","ip":"10.77.64.55","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node55.fr/10.77.64.55:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.55:9300]","publish_address":"inet[/10.77.64.55:9300]","profiles":{}}},"93uIfLvfTV-zG1hXQ2Z33Q":{"name":"elasticsearch-node69.fr","transport_address":"inet[/10.77.64.69:9300]","host":"elasticsearch-node69.fr","ip":"10.77.64.69","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node69.fr/10.77.64.69:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.69:9300]","publish_address":"inet[/10.77.64.69:9300]","profiles":{}}},"lbC_LvqYRleucdLJ-ooXgA":{"name":"elasticsearch-node35.fr","transport_address":"inet[/10.77.64.35:9300]","host":"elasticsearch-node35.fr","ip":"10.77.64.35","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node35.fr/10.77.64.35:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.35:9300]","publish_address":"inet[/10.77.64.35:9300]","profiles":{}}},"UaRtkfHbRKuoloPXljIkHw":{"name":"elasticsearch-node24.fr","transport_address":"inet[/10.77.64.24:9300]","host":"elasticsearch-node24.fr","ip":"10.77.64.24","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node24.fr/10.77.64.24:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.24:9300]","publish_address":"inet[/10.77.64.24:9300]","profiles":{}}},"YjYV8a77QySmdVGkd4up3A":{"name":"elasticsearch-node40.fr","transport_address":"inet[/10.77.64.40:9300]","host":"elasticsearch-node40.fr","ip":"10.77.64.40","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node40.fr/10.77.64.40:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.40:9300]","publish_address":"inet[/10.77.64.40:9300]","profiles":{}}},"Sbpdh4G6QEyT_v89Rh2C0g":{"name":"elasticsearch-node23.fr","transport_address":"inet[/10.77.64.23:9300]","host":"elasticsearch-node23.fr","ip":"10.77.64.23","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node23.fr/10.77.64.23:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.23:9300]","publish_address":"inet[/10.77.64.23:9300]","profiles":{}}},"LGQ9H5r7TPWOtIO3lzZLtg":{"name":"elasticsearch-node36.fr","transport_address":"inet[/10.77.64.36:9301]","host":"elasticsearch-node36.fr","ip":"10.77.64.36","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node36.fr/10.77.64.36:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.36:9301]","publish_address":"inet[/10.77.64.36:9301]","profiles":{}}},"zygTCEqqQV6c1B7sE6mzfQ":{"name":"elasticsearch-node85.fr","transport_address":"inet[/10.77.64.85:9300]","host":"elasticsearch-node85.fr","ip":"10.77.64.85","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node85.fr/10.77.64.85:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.85:9300]","publish_address":"inet[/10.77.64.85:9300]","profiles":{}}},"NfiSmfvPR9CMR_TA6FE25A":{"name":"elasticsearch-node58.fr","transport_address":"inet[/10.77.64.58:9300]","host":"elasticsearch-node58.fr","ip":"10.77.64.58","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node58.fr/10.77.64.58:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.58:9300]","publish_address":"inet[/10.77.64.58:9300]","profiles":{}}},"rRUx96R0Sj-FmrtjpTXwOg":{"name":"elasticsearch-node59.fr","transport_address":"inet[/10.77.64.59:9300]","host":"elasticsearch-node59.fr","ip":"10.77.64.59","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node59.fr/10.77.64.59:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.59:9300]","publish_address":"inet[/10.77.64.59:9300]","profiles":{}}},"hxIo-ZKuQliqvrzAAZOobQ":{"name":"elasticsearch-node70.fr","transport_address":"inet[/10.77.64.70:9300]","host":"elasticsearch-node70.fr","ip":"10.77.64.70","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node70.fr/10.77.64.70:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.70:9300]","publish_address":"inet[/10.77.64.70:9300]","profiles":{}}},"tA2PGbXJSNm5n-GT0dV2dQ":{"name":"elasticsearch-node66.fr","transport_address":"inet[/10.77.64.66:9300]","host":"elasticsearch-node66.fr","ip":"10.77.64.66","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node66.fr/10.77.64.66:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.66:9300]","publish_address":"inet[/10.77.64.66:9300]","profiles":{}}},"L12cIR6QSLW-iOmm7PRX-A":{"name":"elasticsearch-node75.fr","transport_address":"inet[/10.77.64.75:9300]","host":"elasticsearch-node75.fr","ip":"10.77.64.75","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node75.fr/10.77.64.75:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.75:9300]","publish_address":"inet[/10.77.64.75:9300]","profiles":{}}},"E3PopHTCS7O3KDf_QgC4yA":{"name":"elasticsearch-node60.fr","transport_address":"inet[/10.77.64.60:9300]","host":"elasticsearch-node60.fr","ip":"10.77.64.60","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node60.fr/10.77.64.60:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.60:9300]","publish_address":"inet[/10.77.64.60:9300]","profiles":{}}},"ktttj8bPR6SXp5dErzdNXA":{"name":"elasticsearch-node98.fr","transport_address":"inet[/10.77.64.98:9300]","host":"elasticsearch-node98.fr","ip":"10.77.64.98","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node98.fr/10.77.64.98:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.98:9300]","publish_address":"inet[/10.77.64.98:9300]","profiles":{}}},"aDqdFsTPTYONo9PZ_SIR3g":{"name":"elasticsearch-node57.fr","transport_address":"inet[/10.77.64.57:9300]","host":"elasticsearch-node57.fr","ip":"10.77.64.57","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node57.fr/10.77.64.57:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.57:9300]","publish_address":"inet[/10.77.64.57:9300]","profiles":{}}},"NFs8l04QQvmJbgVfWEtu5g":{"name":"elasticsearch-node64.fr","transport_address":"inet[/10.77.64.64:9300]","host":"elasticsearch-node64.fr","ip":"10.77.64.64","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node64.fr/10.77.64.64:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.64:9300]","publish_address":"inet[/10.77.64.64:9300]","profiles":{}}},"6J00mVt6R4CN2_c-tGbXsQ":{"name":"elasticsearch-node25.fr","transport_address":"inet[/10.77.64.25:9300]","host":"elasticsearch-node25.fr","ip":"10.77.64.25","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node25.fr/10.77.64.25:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.25:9300]","publish_address":"inet[/10.77.64.25:9300]","profiles":{}}},"dR7tA4RPSX-F0jugIZnjyA":{"name":"elasticsearch-node88.fr","transport_address":"inet[/10.77.64.88:9300]","host":"elasticsearch-node88.fr","ip":"10.77.64.88","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node88.fr/10.77.64.88:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.88:9300]","publish_address":"inet[/10.77.64.88:9300]","profiles":{}}},"j-tSWR_sSr6sAFbBGtAsWw":{"name":"elasticsearch-node42.fr","transport_address":"inet[/10.77.64.42:9300]","host":"elasticsearch-node42.fr","ip":"10.77.64.42","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node42.fr/10.77.64.42:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.42:9300]","publish_address":"inet[/10.77.64.42:9300]","profiles":{}}},"h1rO-PRzT_muTBV_3ZNQpQ":{"name":"elasticsearch-node48.fr","transport_address":"inet[/10.77.64.48:9300]","host":"elasticsearch-node48.fr","ip":"10.77.64.48","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node48.fr/10.77.64.48:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.48:9300]","publish_address":"inet[/10.77.64.48:9300]","profiles":{}}},"MVzwePLLQyejCh5qiyt2aQ":{"name":"elasticsearch-node80.fr","transport_address":"inet[/10.77.64.80:9300]","host":"elasticsearch-node80.fr","ip":"10.77.64.80","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node80.fr/10.77.64.80:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.80:9300]","publish_address":"inet[/10.77.64.80:9300]","profiles":{}}},"ht8JE_TcRXWuU6Ga7BLnDA":{"name":"uabigname02.fr","transport_address":"inet[/10.77.64.209:9300]","host":"uabigname02.fr","ip":"10.77.64.209","version":"1.6.2","build":"6220391","attributes":{"data":"false","master":"true"},"transport":{"bound_address":"inet[/10.77.64.209:9300]","publish_address":"inet[/10.77.64.209:9300]","profiles":{}}},"gHVv8twTRjqlELi2f8ME8A":{"name":"elasticsearch-node52.fr","transport_address":"inet[/10.77.64.52:9300]","host":"elasticsearch-node52.fr","ip":"10.77.64.52","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node52.fr/10.77.64.52:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.52:9300]","publish_address":"inet[/10.77.64.52:9300]","profiles":{}}},"8JEVlfUDRIaHTPKTuhhl0A":{"name":"elasticsearch-node16.fr","transport_address":"inet[/10.77.64.16:9300]","host":"elasticsearch-node16.fr","ip":"10.77.64.16","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node16.fr/10.77.64.16:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.16:9300]","publish_address":"inet[/10.77.64.16:9300]","profiles":{}}},"B4R64qo2T5aBe84jtG8DWQ":{"name":"elasticsearch-node54.fr","transport_address":"inet[/10.77.64.54:9300]","host":"elasticsearch-node54.fr","ip":"10.77.64.54","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node54.fr/10.77.64.54:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.54:9300]","publish_address":"inet[/10.77.64.54:9300]","profiles":{}}},"O0FTvFXvTmmUWY-n_VrYCg":{"name":"elasticsearch-node17.fr","transport_address":"inet[/10.77.64.17:9300]","host":"elasticsearch-node17.fr","ip":"10.77.64.17","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node17.fr/10.77.64.17:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.17:9300]","publish_address":"inet[/10.77.64.17:9300]","profiles":{}}},"Nq9MGM9DTJa6nCpwzOBcUQ":{"name":"elasticsearch-node47.fr","transport_address":"inet[/10.77.64.47:9300]","host":"elasticsearch-node47.fr","ip":"10.77.64.47","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node47.fr/10.77.64.47:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.47:9300]","publish_address":"inet[/10.77.64.47:9300]","profiles":{}}},"e5hSg7y6S-6YZybv39J9eQ":{"name":"elasticsearch-node39.fr","transport_address":"inet[/10.77.64.39:9300]","host":"elasticsearch-node39.fr","ip":"10.77.64.39","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node39.fr/10.77.64.39:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.39:9300]","publish_address":"inet[/10.77.64.39:9300]","profiles":{}}},"ctiwbh6CR6ON-1370tpE7g":{"name":"elasticsearch-node44.fr","transport_address":"inet[/10.77.64.44:9300]","host":"elasticsearch-node44.fr","ip":"10.77.64.44","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node44.fr/10.77.64.44:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.44:9300]","publish_address":"inet[/10.77.64.44:9300]","profiles":{}}},"Ss7W8CEeQh2HDrF4mAe-rA":{"name":"elasticsearch-node79.fr","transport_address":"inet[/10.77.64.79:9300]","host":"elasticsearch-node79.fr","ip":"10.77.64.79","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node79.fr/10.77.64.79:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.79:9300]","publish_address":"inet[/10.77.64.79:9300]","profiles":{}}},"v5CEI6bwTZapN7EEemDtVg":{"name":"elasticsearch-node53.fr","transport_address":"inet[/10.77.64.53:9301]","host":"elasticsearch-node53.fr","ip":"10.77.64.53","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node53.fr/10.77.64.53:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.53:9301]","publish_address":"inet[/10.77.64.53:9301]","profiles":{}}},"uwZ0yzkeS8qSVGeAOnHCZQ":{"name":"elasticsearch-node07.fr","transport_address":"inet[/10.77.64.7:9300]","host":"elasticsearch-node07.fr","ip":"10.77.64.7","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node07.fr/10.77.64.7:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.7:9300]","publish_address":"inet[/10.77.64.7:9300]","profiles":{}}},"QWtJfybVS_WozXjunXNzkQ":{"name":"elasticsearch-node37.fr","transport_address":"inet[/10.77.64.37:9300]","host":"elasticsearch-node37.fr","ip":"10.77.64.37","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node37.fr/10.77.64.37:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.37:9300]","publish_address":"inet[/10.77.64.37:9300]","profiles":{}}},"lwl6sbC_RNqNLtkZg8s8Fg":{"name":"elasticsearch-node87.fr","transport_address":"inet[/10.77.64.87:9300]","host":"elasticsearch-node87.fr","ip":"10.77.64.87","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node87.fr/10.77.64.87:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.87:9300]","publish_address":"inet[/10.77.64.87:9300]","profiles":{}}},"-SzO3gkPT5eL659EhpaARw":{"name":"elasticsearch-node94.fr","transport_address":"inet[/10.77.64.94:9300]","host":"elasticsearch-node94.fr","ip":"10.77.64.94","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node94.fr/10.77.64.94:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.94:9300]","publish_address":"inet[/10.77.64.94:9300]","profiles":{}}},"CYyn_m9VTViZvF6ynPb2sw":{"name":"elasticsearch-node43.fr","transport_address":"inet[/10.77.64.43:9300]","host":"elasticsearch-node43.fr","ip":"10.77.64.43","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node43.fr/10.77.64.43:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.43:9300]","publish_address":"inet[/10.77.64.43:9300]","profiles":{}}},"yftKzd3WRkKQTdK6RxgF3w":{"name":"elasticsearch-node28.fr","transport_address":"inet[/10.77.64.28:9300]","host":"elasticsearch-node28.fr","ip":"10.77.64.28","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node28.fr/10.77.64.28:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.28:9300]","publish_address":"inet[/10.77.64.28:9300]","profiles":{}}},"0EF66qyiTd2KiILZm9jOEQ":{"name":"elasticsearch-node02.fr","transport_address":"inet[/10.77.64.2:9300]","host":"elasticsearch-node02.fr","ip":"10.77.64.2","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node02.fr/10.77.64.2:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.2:9300]","publish_address":"inet[/10.77.64.2:9300]","profiles":{}}},"qHJ6fUFdQDO-laWh5hTsUA":{"name":"elasticsearch-node67.fr","transport_address":"inet[/10.77.64.67:9301]","host":"elasticsearch-node67.fr","ip":"10.77.64.67","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node67.fr/10.77.64.67:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.67:9301]","publish_address":"inet[/10.77.64.67:9301]","profiles":{}}},"_jiEy4H5R6ShgzdAlTwdyQ":{"name":"elasticsearch-node86.fr","transport_address":"inet[/10.77.64.86:9300]","host":"elasticsearch-node86.fr","ip":"10.77.64.86","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node86.fr/10.77.64.86:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.86:9300]","publish_address":"inet[/10.77.64.86:9300]","profiles":{}}},"mLf16MJLQuSYiZMzOwefbw":{"name":"elasticsearch-node34.fr","transport_address":"inet[/10.77.64.34:9300]","host":"elasticsearch-node34.fr","ip":"10.77.64.34","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node34.fr/10.77.64.34:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.34:9300]","publish_address":"inet[/10.77.64.34:9300]","profiles":{}}},"JCHGbkVuTWmgrQ7PHNArFA":{"name":"elasticsearch-node20.fr","transport_address":"inet[/10.77.64.20:9300]","host":"elasticsearch-node20.fr","ip":"10.77.64.20","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node20.fr/10.77.64.20:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.20:9300]","publish_address":"inet[/10.77.64.20:9300]","profiles":{}}},"qWV6mM7kQm-vqWLwxJaTyw":{"name":"es-loadbalancer.cluster.fr","transport_address":"inet[es-loadbalancer.cluster.fr/10.77.64.228:9300]","host":"es-loadbalancer.cluster.fr","ip":"10.77.64.228","version":"1.6.2","build":"6220391","http_address":"inet[es-loadbalancer.cluster.fr/10.77.64.228:9200]","attributes":{"data":"false","master":"false"},"transport":{"bound_address":"inet[/0.0.0.0:9300]","publish_address":"inet[es-loadbalancer.cluster.fr/10.77.64.228:9300]","profiles":{}}},"gmhFB5NKSEaibJdOsT48tQ":{"name":"elasticsearch-node22.fr","transport_address":"inet[/10.77.64.22:9300]","host":"elasticsearch-node22.fr","ip":"10.77.64.22","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node22.fr/10.77.64.22:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.22:9300]","publish_address":"inet[/10.77.64.22:9300]","profiles":{}}},"Vv2CbP5ISiiYHyXp_nnMvw":{"name":"elasticsearch-node51.fr","transport_address":"inet[/10.77.64.51:9300]","host":"elasticsearch-node51.fr","ip":"10.77.64.51","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node51.fr/10.77.64.51:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.51:9300]","publish_address":"inet[/10.77.64.51:9300]","profiles":{}}},"q6KRwIQ7Rtuzjhq8BAY8AA":{"name":"elasticsearch-node30.fr","transport_address":"inet[/10.77.64.30:9300]","host":"elasticsearch-node30.fr","ip":"10.77.64.30","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node30.fr/10.77.64.30:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.30:9300]","publish_address":"inet[/10.77.64.30:9300]","profiles":{}}},"GHRTk9DDQ-Wt3_FEpDXqkA":{"name":"elasticsearch-node04.fr","transport_address":"inet[/10.77.64.4:9300]","host":"elasticsearch-node04.fr","ip":"10.77.64.4","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node04.fr/10.77.64.4:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.4:9300]","publish_address":"inet[/10.77.64.4:9300]","profiles":{}}},"zy2N4959RyeH0hdV4oOKGw":{"name":"elasticsearch-node05.fr","transport_address":"inet[/10.77.64.5:9300]","host":"elasticsearch-node05.fr","ip":"10.77.64.5","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node05.fr/10.77.64.5:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.5:9300]","publish_address":"inet[/10.77.64.5:9300]","profiles":{}}},"HhgDBXfdRXGjT9-igKFbGQ":{"name":"elasticsearch-node95.fr","transport_address":"inet[/10.77.64.95:9300]","host":"elasticsearch-node95.fr","ip":"10.77.64.95","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node95.fr/10.77.64.95:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.95:9300]","publish_address":"inet[/10.77.64.95:9300]","profiles":{}}},"gBgof58ORR6sRaaT8_47ZA":{"name":"elasticsearch-node99.fr","transport_address":"inet[/10.77.64.99:9300]","host":"elasticsearch-node99.fr","ip":"10.77.64.99","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node99.fr/10.77.64.99:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.99:9300]","publish_address":"inet[/10.77.64.99:9300]","profiles":{}}},"XR3NEzi3RUWR9dJuWKF2DA":{"name":"elasticsearch-node45.fr","transport_address":"inet[/10.77.64.45:9300]","host":"elasticsearch-node45.fr","ip":"10.77.64.45","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node45.fr/10.77.64.45:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.45:9300]","publish_address":"inet[/10.77.64.45:9300]","profiles":{}}},"NzNI7nuESfmZSx5fEjiS3w":{"name":"elasticsearch-node78.fr","transport_address":"inet[/10.77.64.78:9300]","host":"elasticsearch-node78.fr","ip":"10.77.64.78","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node78.fr/10.77.64.78:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.78:9300]","publish_address":"inet[/10.77.64.78:9300]","profiles":{}}},"NqkuQkkTQuGJtSgpcSegSg":{"name":"elasticsearch-node29.fr","transport_address":"inet[/10.77.64.29:9300]","host":"elasticsearch-node29.fr","ip":"10.77.64.29","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node29.fr/10.77.64.29:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.29:9300]","publish_address":"inet[/10.77.64.29:9300]","profiles":{}}},"7T3MeW98SFy9QxtR2Bu5gA":{"name":"elasticsearch-node49.fr","transport_address":"inet[/10.77.64.49:9300]","host":"elasticsearch-node49.fr","ip":"10.77.64.49","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node49.fr/10.77.64.49:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.49:9300]","publish_address":"inet[/10.77.64.49:9300]","profiles":{}}},"pGMciSkvTl-_t0AR2taWhQ":{"name":"elasticsearch-node93.fr","transport_address":"inet[/10.77.64.93:9300]","host":"elasticsearch-node93.fr","ip":"10.77.64.93","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node93.fr/10.77.64.93:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.93:9300]","publish_address":"inet[/10.77.64.93:9300]","profiles":{}}},"L70gvJHIS8SMCoWN3LZ5wQ":{"name":"elasticsearch-node56.fr","transport_address":"inet[/10.77.64.56:9300]","host":"elasticsearch-node56.fr","ip":"10.77.64.56","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node56.fr/10.77.64.56:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.56:9300]","publish_address":"inet[/10.77.64.56:9300]","profiles":{}}},"_-9YKhdeSMqaflphgMblXQ":{"name":"elasticsearch-node33.fr","transport_address":"inet[/10.77.64.33:9300]","host":"elasticsearch-node33.fr","ip":"10.77.64.33","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node33.fr/10.77.64.33:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.33:9300]","publish_address":"inet[/10.77.64.33:9300]","profiles":{}}},"MJ838Fb1QQC3VxGZxtYMpw":{"name":"elasticsearch-node89.fr","transport_address":"inet[/10.77.64.89:9300]","host":"elasticsearch-node89.fr","ip":"10.77.64.89","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node89.fr/10.77.64.89:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.89:9300]","publish_address":"inet[/10.77.64.89:9300]","profiles":{}}},"_KnuGQyVRrC35UN1kucuSQ":{"name":"elasticsearch-node18.fr","transport_address":"inet[/10.77.64.18:9300]","host":"elasticsearch-node18.fr","ip":"10.77.64.18","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node18.fr/10.77.64.18:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.18:9300]","publish_address":"inet[/10.77.64.18:9300]","profiles":{}}},"1-OGO83aSXavq1FoRmwqZg":{"name":"elasticsearch-node32.fr","transport_address":"inet[/10.77.64.32:9300]","host":"elasticsearch-node32.fr","ip":"10.77.64.32","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node32.fr/10.77.64.32:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.32:9300]","publish_address":"inet[/10.77.64.32:9300]","profiles":{}}},"4XnggjnnTxmraC_w0j-pgg":{"name":"elasticsearch-node76.fr","transport_address":"inet[/10.77.64.76:9300]","host":"elasticsearch-node76.fr","ip":"10.77.64.76","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node76.fr/10.77.64.76:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.76:9300]","publish_address":"inet[/10.77.64.76:9300]","profiles":{}}},"p3wJDiNuR7um6Gjr1j0rKA":{"name":"elasticsearch-node46.fr","transport_address":"inet[/10.77.64.46:9300]","host":"elasticsearch-node46.fr","ip":"10.77.64.46","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node46.fr/10.77.64.46:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.46:9300]","publish_address":"inet[/10.77.64.46:9300]","profiles":{}}},"w43az6fnRN2QTC-2LOEnfA":{"name":"elasticsearch-node96.fr","transport_address":"inet[/10.77.64.96:9300]","host":"elasticsearch-node96.fr","ip":"10.77.64.96","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node96.fr/10.77.64.96:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.96:9300]","publish_address":"inet[/10.77.64.96:9300]","profiles":{}}},"UMwrOxHWRU6DMac7dSv6eA":{"name":"elasticsearch-node19.fr","transport_address":"inet[/10.77.64.19:9300]","host":"elasticsearch-node19.fr","ip":"10.77.64.19","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node19.fr/10.77.64.19:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.19:9300]","publish_address":"inet[/10.77.64.19:9300]","profiles":{}}},"eb-naCSMRQmi0PLQZ8wb4g":{"name":"elasticsearch-node63.fr","transport_address":"inet[/10.77.64.63:9300]","host":"elasticsearch-node63.fr","ip":"10.77.64.63","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node63.fr/10.77.64.63:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.63:9300]","publish_address":"inet[/10.77.64.63:9300]","profiles":{}}},"o1borzldTZ6dAbWvs8Rp6Q":{"name":"elasticsearch-node06.fr","transport_address":"inet[/10.77.64.6:9300]","host":"elasticsearch-node06.fr","ip":"10.77.64.6","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node06.fr/10.77.64.6:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.6:9300]","publish_address":"inet[/10.77.64.6:9300]","profiles":{}}},"oglmjzEXRQmtTHZnyYPY1Q":{"name":"elasticsearch-node01.fr","transport_address":"inet[/10.77.64.1:9300]","host":"elasticsearch-node01.fr","ip":"10.77.64.1","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node01.fr/10.77.64.1:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.1:9300]","publish_address":"inet[/10.77.64.1:9300]","profiles":{}}},"3WH8AwUOQ8GDdRuMDs4kEg":{"name":"elasticsearch-node92.fr","transport_address":"inet[/10.77.64.92:9300]","host":"elasticsearch-node92.fr","ip":"10.77.64.92","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node92.fr/10.77.64.92:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.92:9300]","publish_address":"inet[/10.77.64.92:9300]","profiles":{}}},"LIJcrgzWTZSIy6B6GN40SQ":{"name":"elasticsearch-node61.fr","transport_address":"inet[/10.77.64.61:9300]","host":"elasticsearch-node61.fr","ip":"10.77.64.61","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node61.fr/10.77.64.61:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.61:9300]","publish_address":"inet[/10.77.64.61:9300]","profiles":{}}},"Bp3V7CBaRGWk01lZYhCycw":{"name":"elasticsearch-node97.fr","transport_address":"inet[/10.77.64.97:9300]","host":"elasticsearch-node97.fr","ip":"10.77.64.97","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node97.fr/10.77.64.97:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.97:9300]","publish_address":"inet[/10.77.64.97:9300]","profiles":{}}},"kbJ0_giQReKngzNUL-t2Fg":{"name":"elasticsearch-node77.fr","transport_address":"inet[/10.77.64.77:9300]","host":"elasticsearch-node77.fr","ip":"10.77.64.77","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node77.fr/10.77.64.77:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.77:9300]","publish_address":"inet[/10.77.64.77:9300]","profiles":{}}},"YHAllqqwTpeyqeBf7Ey_hg":{"name":"elasticsearch-node62.fr","transport_address":"inet[/10.77.64.62:9300]","host":"elasticsearch-node62.fr","ip":"10.77.64.62","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node62.fr/10.77.64.62:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.62:9300]","publish_address":"inet[/10.77.64.62:9300]","profiles":{}}},"AQ12RKDhTdiXbCshcSjWFg":{"name":"elasticsearch-node71.fr","transport_address":"inet[/10.77.64.71:9300]","host":"elasticsearch-node71.fr","ip":"10.77.64.71","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node71.fr/10.77.64.71:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.71:9300]","publish_address":"inet[/10.77.64.71:9300]","profiles":{}}},"gB5etmzKSIibCMy7u1gwZA":{"name":"elasticsearch-node03.fr","transport_address":"inet[/10.77.64.3:9300]","host":"elasticsearch-node03.fr","ip":"10.77.64.3","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node03.fr/10.77.64.3:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.3:9300]","publish_address":"inet[/10.77.64.3:9300]","profiles":{}}},"iTNeXxEFT4CxEoayR-RFbg":{"name":"elasticsearch-node65.fr","transport_address":"inet[/10.77.64.65:9300]","host":"elasticsearch-node65.fr","ip":"10.77.64.65","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node65.fr/10.77.64.65:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.65:9300]","publish_address":"inet[/10.77.64.65:9300]","profiles":{}}},"2ZDlxyPDSXahDmg24t2E9Q":{"name":"elasticsearch-node90.fr","transport_address":"inet[/10.77.64.90:9300]","host":"elasticsearch-node90.fr","ip":"10.77.64.90","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node90.fr/10.77.64.90:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.90:9300]","publish_address":"inet[/10.77.64.90:9300]","profiles":{}}},"euZgjhuIQ62BAYq1-gg9mg":{"name":"elasticsearch-node91.fr","transport_address":"inet[/10.77.64.91:9300]","host":"elasticsearch-node91.fr","ip":"10.77.64.91","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node91.fr/10.77.64.91:9200]","attributes":{"master":"false"},"transport":{"bound_address":"inet[/10.77.64.91:9300]","publish_address":"inet[/10.77.64.91:9300]","profiles":{}}}}}]
16/06/07 14:48:49 DEBUG ScalaEsRDD: Nodes discovery enabled - found [10.77.64.38:9200, 10.77.64.50:9200, 10.77.64.73:9200, 10.77.64.72:9200, 10.77.64.74:9200, 10.77.64.21:9200, 10.77.64.81:9200, 10.77.64.31:9200, 10.77.64.55:9200, 10.77.64.69:9200, 10.77.64.35:9200, 10.77.64.24:9200, 10.77.64.40:9200, 10.77.64.23:9200, 10.77.64.36:9200, 10.77.64.85:9200, 10.77.64.58:9200, 10.77.64.59:9200, 10.77.64.70:9200, 10.77.64.66:9200, 10.77.64.75:9200, 10.77.64.60:9200, 10.77.64.98:9200, 10.77.64.57:9200, 10.77.64.64:9200, 10.77.64.25:9200, 10.77.64.88:9200, 10.77.64.42:9200, 10.77.64.48:9200, 10.77.64.80:9200, 10.77.64.52:9200, 10.77.64.16:9200, 10.77.64.54:9200, 10.77.64.17:9200, 10.77.64.47:9200, 10.77.64.39:9200, 10.77.64.44:9200, 10.77.64.79:9200, 10.77.64.53:9200, 10.77.64.7:9200, 10.77.64.37:9200, 10.77.64.87:9200, 10.77.64.94:9200, 10.77.64.43:9200, 10.77.64.28:9200, 10.77.64.2:9200, 10.77.64.67:9200, 10.77.64.86:9200, 10.77.64.34:9200, 10.77.64.20:9200, 10.77.64.228:9200, 10.77.64.22:9200, 10.77.64.51:9200, 10.77.64.30:9200, 10.77.64.4:9200, 10.77.64.5:9200, 10.77.64.95:9200, 10.77.64.99:9200, 10.77.64.45:9200, 10.77.64.78:9200, 10.77.64.29:9200, 10.77.64.49:9200, 10.77.64.93:9200, 10.77.64.56:9200, 10.77.64.33:9200, 10.77.64.89:9200, 10.77.64.18:9200, 10.77.64.32:9200, 10.77.64.76:9200, 10.77.64.46:9200, 10.77.64.96:9200, 10.77.64.19:9200, 10.77.64.63:9200, 10.77.64.6:9200, 10.77.64.1:9200, 10.77.64.92:9200, 10.77.64.61:9200, 10.77.64.97:9200, 10.77.64.77:9200, 10.77.64.62:9200, 10.77.64.71:9200, 10.77.64.3:9200, 10.77.64.65:9200, 10.77.64.90:9200, 10.77.64.91:9200]
16/06/07 14:48:49 TRACE CommonsHttpTransport: Closing HTTP transport to 10.77.64.228:9200
16/06/07 14:48:49 DEBUG CommonsHttpTransport: SSL Connection enabled
16/06/07 14:48:49 INFO CommonsHttpTransport: Using detected HTTP Auth credentials...
16/06/07 14:48:49 TRACE CommonsHttpTransport: Opening HTTP transport to 10.77.64.63:9200
16/06/07 14:48:49 TRACE CommonsHttpTransport: Tx [GET]@[10.77.64.63:9200][_nodes/http] w/ payload [null]
16/06/07 14:48:50 TRACE CommonsHttpTransport: Rx @[10.77.95.200] [200-OK] [{"cluster_name":"ELASTIC.PEI","nodes":{"3FAntaX_QDex5f3ZiIy-Kg":{"name":"elasticsearch-node38.fr","transport_address":"inet[/10.77.64.38:9300]","host":"elasticsearch-node38.fr","ip":"10.77.64.38","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node38.fr/10.77.64.38:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.38:9200]","publish_address":"inet[/10.77.64.38:9200]","max_content_length_in_bytes":104857600}},"aYPNkAnRQY21eXvqRo_RyQ":{"name":"elasticsearch-node50.fr","transport_address":"inet[/10.77.64.50:9300]","host":"elasticsearch-node50.fr","ip":"10.77.64.50","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node50.fr/10.77.64.50:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.50:9200]","publish_address":"inet[/10.77.64.50:9200]","max_content_length_in_bytes":104857600}},"F4ZWDp29QiuwOMd6IIcdgQ":{"name":"elasticsearch-node73.fr","transport_address":"inet[/10.77.64.73:9300]","host":"elasticsearch-node73.fr","ip":"10.77.64.73","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node73.fr/10.77.64.73:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.73:9200]","publish_address":"inet[/10.77.64.73:9200]","max_content_length_in_bytes":104857600}},"uWLxUQfrShKZU2_5xETEUA":{"name":"elasticsearch-node72.fr","transport_address":"inet[/10.77.64.72:9300]","host":"elasticsearch-node72.fr","ip":"10.77.64.72","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node72.fr/10.77.64.72:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.72:9200]","publish_address":"inet[/10.77.64.72:9200]","max_content_length_in_bytes":104857600}},"g_wg56c_TDuo9uQbwzNl1A":{"name":"elasticsearch-node74.fr","transport_address":"inet[/10.77.64.74:9300]","host":"elasticsearch-node74.fr","ip":"10.77.64.74","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node74.fr/10.77.64.74:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.74:9200]","publish_address":"inet[/10.77.64.74:9200]","max_content_length_in_bytes":104857600}},"5P5wxjEfT9KVrkFFjVjPYA":{"name":"elasticsearch-node21.fr","transport_address":"inet[/10.77.64.21:9300]","host":"elasticsearch-node21.fr","ip":"10.77.64.21","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node21.fr/10.77.64.21:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.21:9200]","publish_address":"inet[/10.77.64.21:9200]","max_content_length_in_bytes":104857600}},"3rmvVjN3QVycXMSJuuekmg":{"name":"elasticsearch-node81.fr","transport_address":"inet[/10.77.64.81:9300]","host":"elasticsearch-node81.fr","ip":"10.77.64.81","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node81.fr/10.77.64.81:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.81:9200]","publish_address":"inet[/10.77.64.81:9200]","max_content_length_in_bytes":104857600}},"Y8c09UTjRDScbd6UTSmKIg":{"name":"elasticsearch-node31.fr","transport_address":"inet[/10.77.64.31:9300]","host":"elasticsearch-node31.fr","ip":"10.77.64.31","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node31.fr/10.77.64.31:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.31:9200]","publish_address":"inet[/10.77.64.31:9200]","max_content_length_in_bytes":104857600}},"SmfUq1ePQ1auBQr6hAXWbQ":{"name":"elasticsearch-node55.fr","transport_address":"inet[/10.77.64.55:9300]","host":"elasticsearch-node55.fr","ip":"10.77.64.55","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node55.fr/10.77.64.55:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.55:9200]","publish_address":"inet[/10.77.64.55:9200]","max_content_length_in_bytes":104857600}},"93uIfLvfTV-zG1hXQ2Z33Q":{"name":"elasticsearch-node69.fr","transport_address":"inet[/10.77.64.69:9300]","host":"elasticsearch-node69.fr","ip":"10.77.64.69","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node69.fr/10.77.64.69:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.69:9200]","publish_address":"inet[/10.77.64.69:9200]","max_content_length_in_bytes":104857600}},"lbC_LvqYRleucdLJ-ooXgA":{"name":"elasticsearch-node35.fr","transport_address":"inet[/10.77.64.35:9300]","host":"elasticsearch-node35.fr","ip":"10.77.64.35","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node35.fr/10.77.64.35:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.35:9200]","publish_address":"inet[/10.77.64.35:9200]","max_content_length_in_bytes":104857600}},"UaRtkfHbRKuoloPXljIkHw":{"name":"elasticsearch-node24.fr","transport_address":"inet[/10.77.64.24:9300]","host":"elasticsearch-node24.fr","ip":"10.77.64.24","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node24.fr/10.77.64.24:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.24:9200]","publish_address":"inet[/10.77.64.24:9200]","max_content_length_in_bytes":104857600}},"YjYV8a77QySmdVGkd4up3A":{"name":"elasticsearch-node40.fr","transport_address":"inet[/10.77.64.40:9300]","host":"elasticsearch-node40.fr","ip":"10.77.64.40","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node40.fr/10.77.64.40:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.40:9200]","publish_address":"inet[/10.77.64.40:9200]","max_content_length_in_bytes":104857600}},"Sbpdh4G6QEyT_v89Rh2C0g":{"name":"elasticsearch-node23.fr","transport_address":"inet[/10.77.64.23:9300]","host":"elasticsearch-node23.fr","ip":"10.77.64.23","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node23.fr/10.77.64.23:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.23:9200]","publish_address":"inet[/10.77.64.23:9200]","max_content_length_in_bytes":104857600}},"LGQ9H5r7TPWOtIO3lzZLtg":{"name":"elasticsearch-node36.fr","transport_address":"inet[/10.77.64.36:9301]","host":"elasticsearch-node36.fr","ip":"10.77.64.36","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node36.fr/10.77.64.36:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.36:9200]","publish_address":"inet[/10.77.64.36:9200]","max_content_length_in_bytes":104857600}},"zygTCEqqQV6c1B7sE6mzfQ":{"name":"elasticsearch-node85.fr","transport_address":"inet[/10.77.64.85:9300]","host":"elasticsearch-node85.fr","ip":"10.77.64.85","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node85.fr/10.77.64.85:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.85:9200]","publish_address":"inet[/10.77.64.85:9200]","max_content_length_in_bytes":104857600}},"NfiSmfvPR9CMR_TA6FE25A":{"name":"elasticsearch-node58.fr","transport_address":"inet[/10.77.64.58:9300]","host":"elasticsearch-node58.fr","ip":"10.77.64.58","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node58.fr/10.77.64.58:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.58:9200]","publish_address":"inet[/10.77.64.58:9200]","max_content_length_in_bytes":104857600}},"rRUx96R0Sj-FmrtjpTXwOg":{"name":"elasticsearch-node59.fr","transport_address":"inet[/10.77.64.59:9300]","host":"elasticsearch-node59.fr","ip":"10.77.64.59","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node59.fr/10.77.64.59:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.59:9200]","publish_address":"inet[/10.77.64.59:9200]","max_content_length_in_bytes":104857600}},"hxIo-ZKuQliqvrzAAZOobQ":{"name":"elasticsearch-node70.fr","transport_address":"inet[/10.77.64.70:9300]","host":"elasticsearch-node70.fr","ip":"10.77.64.70","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node70.fr/10.77.64.70:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.70:9200]","publish_address":"inet[/10.77.64.70:9200]","max_content_length_in_bytes":104857600}},"tA2PGbXJSNm5n-GT0dV2dQ":{"name":"elasticsearch-node66.fr","transport_address":"inet[/10.77.64.66:9300]","host":"elasticsearch-node66.fr","ip":"10.77.64.66","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node66.fr/10.77.64.66:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.66:9200]","publish_address":"inet[/10.77.64.66:9200]","max_content_length_in_bytes":104857600}},"L12cIR6QSLW-iOmm7PRX-A":{"name":"elasticsearch-node75.fr","transport_address":"inet[/10.77.64.75:9300]","host":"elasticsearch-node75.fr","ip":"10.77.64.75","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node75.fr/10.77.64.75:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.75:9200]","publish_address":"inet[/10.77.64.75:9200]","max_content_length_in_bytes":104857600}},"E3PopHTCS7O3KDf_QgC4yA":{"name":"elasticsearch-node60.fr","transport_address":"inet[/10.77.64.60:9300]","host":"elasticsearch-node60.fr","ip":"10.77.64.60","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node60.fr/10.77.64.60:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.60:9200]","publish_address":"inet[/10.77.64.60:9200]","max_content_length_in_bytes":104857600}},"ktttj8bPR6SXp5dErzdNXA":{"name":"elasticsearch-node98.fr","transport_address":"inet[/10.77.64.98:9300]","host":"elasticsearch-node98.fr","ip":"10.77.64.98","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node98.fr/10.77.64.98:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.98:9200]","publish_address":"inet[/10.77.64.98:9200]","max_content_length_in_bytes":104857600}},"aDqdFsTPTYONo9PZ_SIR3g":{"name":"elasticsearch-node57.fr","transport_address":"inet[/10.77.64.57:9300]","host":"elasticsearch-node57.fr","ip":"10.77.64.57","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node57.fr/10.77.64.57:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.57:9200]","publish_address":"inet[/10.77.64.57:9200]","max_content_length_in_bytes":104857600}},"NFs8l04QQvmJbgVfWEtu5g":{"name":"elasticsearch-node64.fr","transport_address":"inet[/10.77.64.64:9300]","host":"elasticsearch-node64.fr","ip":"10.77.64.64","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node64.fr/10.77.64.64:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.64:9200]","publish_address":"inet[/10.77.64.64:9200]","max_content_length_in_bytes":104857600}},"6J00mVt6R4CN2_c-tGbXsQ":{"name":"elasticsearch-node25.fr","transport_address":"inet[/10.77.64.25:9300]","host":"elasticsearch-node25.fr","ip":"10.77.64.25","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node25.fr/10.77.64.25:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.25:9200]","publish_address":"inet[/10.77.64.25:9200]","max_content_length_in_bytes":104857600}},"dR7tA4RPSX-F0jugIZnjyA":{"name":"elasticsearch-node88.fr","transport_address":"inet[/10.77.64.88:9300]","host":"elasticsearch-node88.fr","ip":"10.77.64.88","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node88.fr/10.77.64.88:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.88:9200]","publish_address":"inet[/10.77.64.88:9200]","max_content_length_in_bytes":104857600}},"j-tSWR_sSr6sAFbBGtAsWw":{"name":"elasticsearch-node42.fr","transport_address":"inet[/10.77.64.42:9300]","host":"elasticsearch-node42.fr","ip":"10.77.64.42","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node42.fr/10.77.64.42:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.42:9200]","publish_address":"inet[/10.77.64.42:9200]","max_content_length_in_bytes":104857600}},"h1rO-PRzT_muTBV_3ZNQpQ":{"name":"elasticsearch-node48.fr","transport_address":"inet[/10.77.64.48:9300]","host":"elasticsearch-node48.fr","ip":"10.77.64.48","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node48.fr/10.77.64.48:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.48:9200]","publish_address":"inet[/10.77.64.48:9200]","max_content_length_in_bytes":104857600}},"MVzwePLLQyejCh5qiyt2aQ":{"name":"elasticsearch-node80.fr","transport_address":"inet[/10.77.64.80:9300]","host":"elasticsearch-node80.fr","ip":"10.77.64.80","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node80.fr/10.77.64.80:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.80:9200]","publish_address":"inet[/10.77.64.80:9200]","max_content_length_in_bytes":104857600}},"ht8JE_TcRXWuU6Ga7BLnDA":{"name":"uabigname02.fr","transport_address":"inet[/10.77.64.209:9300]","host":"uabigname02.fr","ip":"10.77.64.209","version":"1.6.2","build":"6220391","attributes":{"data":"false","master":"true"}},"gHVv8twTRjqlELi2f8ME8A":{"name":"elasticsearch-node52.fr","transport_address":"inet[/10.77.64.52:9300]","host":"elasticsearch-node52.fr","ip":"10.77.64.52","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node52.fr/10.77.64.52:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.52:9200]","publish_address":"inet[/10.77.64.52:9200]","max_content_length_in_bytes":104857600}},"8JEVlfUDRIaHTPKTuhhl0A":{"name":"elasticsearch-node16.fr","transport_address":"inet[/10.77.64.16:9300]","host":"elasticsearch-node16.fr","ip":"10.77.64.16","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node16.fr/10.77.64.16:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.16:9200]","publish_address":"inet[/10.77.64.16:9200]","max_content_length_in_bytes":104857600}},"B4R64qo2T5aBe84jtG8DWQ":{"name":"elasticsearch-node54.fr","transport_address":"inet[/10.77.64.54:9300]","host":"elasticsearch-node54.fr","ip":"10.77.64.54","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node54.fr/10.77.64.54:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.54:9200]","publish_address":"inet[/10.77.64.54:9200]","max_content_length_in_bytes":104857600}},"O0FTvFXvTmmUWY-n_VrYCg":{"name":"elasticsearch-node17.fr","transport_address":"inet[/10.77.64.17:9300]","host":"elasticsearch-node17.fr","ip":"10.77.64.17","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node17.fr/10.77.64.17:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.17:9200]","publish_address":"inet[/10.77.64.17:9200]","max_content_length_in_bytes":104857600}},"Nq9MGM9DTJa6nCpwzOBcUQ":{"name":"elasticsearch-node47.fr","transport_address":"inet[/10.77.64.47:9300]","host":"elasticsearch-node47.fr","ip":"10.77.64.47","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node47.fr/10.77.64.47:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.47:9200]","publish_address":"inet[/10.77.64.47:9200]","max_content_length_in_bytes":104857600}},"e5hSg7y6S-6YZybv39J9eQ":{"name":"elasticsearch-node39.fr","transport_address":"inet[/10.77.64.39:9300]","host":"elasticsearch-node39.fr","ip":"10.77.64.39","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node39.fr/10.77.64.39:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.39:9200]","publish_address":"inet[/10.77.64.39:9200]","max_content_length_in_bytes":104857600}},"ctiwbh6CR6ON-1370tpE7g":{"name":"elasticsearch-node44.fr","transport_address":"inet[/10.77.64.44:9300]","host":"elasticsearch-node44.fr","ip":"10.77.64.44","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node44.fr/10.77.64.44:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.44:9200]","publish_address":"inet[/10.77.64.44:9200]","max_content_length_in_bytes":104857600}},"Ss7W8CEeQh2HDrF4mAe-rA":{"name":"elasticsearch-node79.fr","transport_address":"inet[/10.77.64.79:9300]","host":"elasticsearch-node79.fr","ip":"10.77.64.79","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node79.fr/10.77.64.79:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.79:9200]","publish_address":"inet[/10.77.64.79:9200]","max_content_length_in_bytes":104857600}},"v5CEI6bwTZapN7EEemDtVg":{"name":"elasticsearch-node53.fr","transport_address":"inet[/10.77.64.53:9301]","host":"elasticsearch-node53.fr","ip":"10.77.64.53","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node53.fr/10.77.64.53:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.53:9200]","publish_address":"inet[/10.77.64.53:9200]","max_content_length_in_bytes":104857600}},"uwZ0yzkeS8qSVGeAOnHCZQ":{"name":"elasticsearch-node07.fr","transport_address":"inet[/10.77.64.7:9300]","host":"elasticsearch-node07.fr","ip":"10.77.64.7","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node07.fr/10.77.64.7:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.7:9200]","publish_address":"inet[/10.77.64.7:9200]","max_content_length_in_bytes":104857600}},"QWtJfybVS_WozXjunXNzkQ":{"name":"elasticsearch-node37.fr","transport_address":"inet[/10.77.64.37:9300]","host":"elasticsearch-node37.fr","ip":"10.77.64.37","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node37.fr/10.77.64.37:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.37:9200]","publish_address":"inet[/10.77.64.37:9200]","max_content_length_in_bytes":104857600}},"lwl6sbC_RNqNLtkZg8s8Fg":{"name":"elasticsearch-node87.fr","transport_address":"inet[/10.77.64.87:9300]","host":"elasticsearch-node87.fr","ip":"10.77.64.87","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node87.fr/10.77.64.87:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.87:9200]","publish_address":"inet[/10.77.64.87:9200]","max_content_length_in_bytes":104857600}},"-SzO3gkPT5eL659EhpaARw":{"name":"elasticsearch-node94.fr","transport_address":"inet[/10.77.64.94:9300]","host":"elasticsearch-node94.fr","ip":"10.77.64.94","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node94.fr/10.77.64.94:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.94:9200]","publish_address":"inet[/10.77.64.94:9200]","max_content_length_in_bytes":104857600}},"CYyn_m9VTViZvF6ynPb2sw":{"name":"elasticsearch-node43.fr","transport_address":"inet[/10.77.64.43:9300]","host":"elasticsearch-node43.fr","ip":"10.77.64.43","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node43.fr/10.77.64.43:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.43:9200]","publish_address":"inet[/10.77.64.43:9200]","max_content_length_in_bytes":104857600}},"yftKzd3WRkKQTdK6RxgF3w":{"name":"elasticsearch-node28.fr","transport_address":"inet[/10.77.64.28:9300]","host":"elasticsearch-node28.fr","ip":"10.77.64.28","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node28.fr/10.77.64.28:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.28:9200]","publish_address":"inet[/10.77.64.28:9200]","max_content_length_in_bytes":104857600}},"0EF66qyiTd2KiILZm9jOEQ":{"name":"elasticsearch-node02.fr","transport_address":"inet[/10.77.64.2:9300]","host":"elasticsearch-node02.fr","ip":"10.77.64.2","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node02.fr/10.77.64.2:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.2:9200]","publish_address":"inet[/10.77.64.2:9200]","max_content_length_in_bytes":104857600}},"qHJ6fUFdQDO-laWh5hTsUA":{"name":"elasticsearch-node67.fr","transport_address":"inet[/10.77.64.67:9301]","host":"elasticsearch-node67.fr","ip":"10.77.64.67","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node67.fr/10.77.64.67:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.67:9200]","publish_address":"inet[/10.77.64.67:9200]","max_content_length_in_bytes":104857600}},"_jiEy4H5R6ShgzdAlTwdyQ":{"name":"elasticsearch-node86.fr","transport_address":"inet[/10.77.64.86:9300]","host":"elasticsearch-node86.fr","ip":"10.77.64.86","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node86.fr/10.77.64.86:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.86:9200]","publish_address":"inet[/10.77.64.86:9200]","max_content_length_in_bytes":104857600}},"mLf16MJLQuSYiZMzOwefbw":{"name":"elasticsearch-node34.fr","transport_address":"inet[/10.77.64.34:9300]","host":"elasticsearch-node34.fr","ip":"10.77.64.34","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node34.fr/10.77.64.34:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.34:9200]","publish_address":"inet[/10.77.64.34:9200]","max_content_length_in_bytes":104857600}},"JCHGbkVuTWmgrQ7PHNArFA":{"name":"elasticsearch-node20.fr","transport_address":"inet[/10.77.64.20:9300]","host":"elasticsearch-node20.fr","ip":"10.77.64.20","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node20.fr/10.77.64.20:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.20:9200]","publish_address":"inet[/10.77.64.20:9200]","max_content_length_in_bytes":104857600}},"qWV6mM7kQm-vqWLwxJaTyw":{"name":"es-loadbalancer.cluster.fr","transport_address":"inet[/10.77.64.228:9300]","host":"es-loadbalancer.cluster.fr","ip":"10.77.64.228","version":"1.6.2","build":"6220391","http_address":"inet[es-loadbalancer.cluster.fr/10.77.64.228:9200]","attributes":{"data":"false","master":"false"},"http":{"bound_address":"inet[/0.0.0.0:9200]","publish_address":"inet[/10.77.64.228:9200]","max_content_length_in_bytes":104857600}},"gmhFB5NKSEaibJdOsT48tQ":{"name":"elasticsearch-node22.fr","transport_address":"inet[/10.77.64.22:9300]","host":"elasticsearch-node22.fr","ip":"10.77.64.22","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node22.fr/10.77.64.22:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.22:9200]","publish_address":"inet[/10.77.64.22:9200]","max_content_length_in_bytes":104857600}},"Vv2CbP5ISiiYHyXp_nnMvw":{"name":"elasticsearch-node51.fr","transport_address":"inet[/10.77.64.51:9300]","host":"elasticsearch-node51.fr","ip":"10.77.64.51","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node51.fr/10.77.64.51:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.51:9200]","publish_address":"inet[/10.77.64.51:9200]","max_content_length_in_bytes":104857600}},"q6KRwIQ7Rtuzjhq8BAY8AA":{"name":"elasticsearch-node30.fr","transport_address":"inet[/10.77.64.30:9300]","host":"elasticsearch-node30.fr","ip":"10.77.64.30","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node30.fr/10.77.64.30:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.30:9200]","publish_address":"inet[/10.77.64.30:9200]","max_content_length_in_bytes":104857600}},"GHRTk9DDQ-Wt3_FEpDXqkA":{"name":"elasticsearch-node04.fr","transport_address":"inet[/10.77.64.4:9300]","host":"elasticsearch-node04.fr","ip":"10.77.64.4","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node04.fr/10.77.64.4:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.4:9200]","publish_address":"inet[/10.77.64.4:9200]","max_content_length_in_bytes":104857600}},"zy2N4959RyeH0hdV4oOKGw":{"name":"elasticsearch-node05.fr","transport_address":"inet[/10.77.64.5:9300]","host":"elasticsearch-node05.fr","ip":"10.77.64.5","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node05.fr/10.77.64.5:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.5:9200]","publish_address":"inet[/10.77.64.5:9200]","max_content_length_in_bytes":104857600}},"HhgDBXfdRXGjT9-igKFbGQ":{"name":"elasticsearch-node95.fr","transport_address":"inet[/10.77.64.95:9300]","host":"elasticsearch-node95.fr","ip":"10.77.64.95","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node95.fr/10.77.64.95:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.95:9200]","publish_address":"inet[/10.77.64.95:9200]","max_content_length_in_bytes":104857600}},"gBgof58ORR6sRaaT8_47ZA":{"name":"elasticsearch-node99.fr","transport_address":"inet[/10.77.64.99:9300]","host":"elasticsearch-node99.fr","ip":"10.77.64.99","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node99.fr/10.77.64.99:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.99:9200]","publish_address":"inet[/10.77.64.99:9200]","max_content_length_in_bytes":104857600}},"XR3NEzi3RUWR9dJuWKF2DA":{"name":"elasticsearch-node45.fr","transport_address":"inet[/10.77.64.45:9300]","host":"elasticsearch-node45.fr","ip":"10.77.64.45","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node45.fr/10.77.64.45:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.45:9200]","publish_address":"inet[/10.77.64.45:9200]","max_content_length_in_bytes":104857600}},"NzNI7nuESfmZSx5fEjiS3w":{"name":"elasticsearch-node78.fr","transport_address":"inet[/10.77.64.78:9300]","host":"elasticsearch-node78.fr","ip":"10.77.64.78","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node78.fr/10.77.64.78:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.78:9200]","publish_address":"inet[/10.77.64.78:9200]","max_content_length_in_bytes":104857600}},"NqkuQkkTQuGJtSgpcSegSg":{"name":"elasticsearch-node29.fr","transport_address":"inet[/10.77.64.29:9300]","host":"elasticsearch-node29.fr","ip":"10.77.64.29","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node29.fr/10.77.64.29:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.29:9200]","publish_address":"inet[/10.77.64.29:9200]","max_content_length_in_bytes":104857600}},"7T3MeW98SFy9QxtR2Bu5gA":{"name":"elasticsearch-node49.fr","transport_address":"inet[/10.77.64.49:9300]","host":"elasticsearch-node49.fr","ip":"10.77.64.49","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node49.fr/10.77.64.49:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.49:9200]","publish_address":"inet[/10.77.64.49:9200]","max_content_length_in_bytes":104857600}},"pGMciSkvTl-_t0AR2taWhQ":{"name":"elasticsearch-node93.fr","transport_address":"inet[/10.77.64.93:9300]","host":"elasticsearch-node93.fr","ip":"10.77.64.93","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node93.fr/10.77.64.93:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.93:9200]","publish_address":"inet[/10.77.64.93:9200]","max_content_length_in_bytes":104857600}},"L70gvJHIS8SMCoWN3LZ5wQ":{"name":"elasticsearch-node56.fr","transport_address":"inet[/10.77.64.56:9300]","host":"elasticsearch-node56.fr","ip":"10.77.64.56","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node56.fr/10.77.64.56:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.56:9200]","publish_address":"inet[/10.77.64.56:9200]","max_content_length_in_bytes":104857600}},"_-9YKhdeSMqaflphgMblXQ":{"name":"elasticsearch-node33.fr","transport_address":"inet[/10.77.64.33:9300]","host":"elasticsearch-node33.fr","ip":"10.77.64.33","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node33.fr/10.77.64.33:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.33:9200]","publish_address":"inet[/10.77.64.33:9200]","max_content_length_in_bytes":104857600}},"MJ838Fb1QQC3VxGZxtYMpw":{"name":"elasticsearch-node89.fr","transport_address":"inet[/10.77.64.89:9300]","host":"elasticsearch-node89.fr","ip":"10.77.64.89","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node89.fr/10.77.64.89:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.89:9200]","publish_address":"inet[/10.77.64.89:9200]","max_content_length_in_bytes":104857600}},"_KnuGQyVRrC35UN1kucuSQ":{"name":"elasticsearch-node18.fr","transport_address":"inet[/10.77.64.18:9300]","host":"elasticsearch-node18.fr","ip":"10.77.64.18","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node18.fr/10.77.64.18:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.18:9200]","publish_address":"inet[/10.77.64.18:9200]","max_content_length_in_bytes":104857600}},"1-OGO83aSXavq1FoRmwqZg":{"name":"elasticsearch-node32.fr","transport_address":"inet[/10.77.64.32:9300]","host":"elasticsearch-node32.fr","ip":"10.77.64.32","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node32.fr/10.77.64.32:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.32:9200]","publish_address":"inet[/10.77.64.32:9200]","max_content_length_in_bytes":104857600}},"4XnggjnnTxmraC_w0j-pgg":{"name":"elasticsearch-node76.fr","transport_address":"inet[/10.77.64.76:9300]","host":"elasticsearch-node76.fr","ip":"10.77.64.76","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node76.fr/10.77.64.76:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.76:9200]","publish_address":"inet[/10.77.64.76:9200]","max_content_length_in_bytes":104857600}},"p3wJDiNuR7um6Gjr1j0rKA":{"name":"elasticsearch-node46.fr","transport_address":"inet[/10.77.64.46:9300]","host":"elasticsearch-node46.fr","ip":"10.77.64.46","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node46.fr/10.77.64.46:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.46:9200]","publish_address":"inet[/10.77.64.46:9200]","max_content_length_in_bytes":104857600}},"w43az6fnRN2QTC-2LOEnfA":{"name":"elasticsearch-node96.fr","transport_address":"inet[/10.77.64.96:9300]","host":"elasticsearch-node96.fr","ip":"10.77.64.96","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node96.fr/10.77.64.96:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.96:9200]","publish_address":"inet[/10.77.64.96:9200]","max_content_length_in_bytes":104857600}},"UMwrOxHWRU6DMac7dSv6eA":{"name":"elasticsearch-node19.fr","transport_address":"inet[/10.77.64.19:9300]","host":"elasticsearch-node19.fr","ip":"10.77.64.19","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node19.fr/10.77.64.19:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.19:9200]","publish_address":"inet[/10.77.64.19:9200]","max_content_length_in_bytes":104857600}},"eb-naCSMRQmi0PLQZ8wb4g":{"name":"elasticsearch-node63.fr","transport_address":"inet[elasticsearch-node63.fr/10.77.64.63:9300]","host":"elasticsearch-node63.fr","ip":"10.77.64.63","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node63.fr/10.77.64.63:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.63:9200]","publish_address":"inet[elasticsearch-node63.fr/10.77.64.63:9200]","max_content_length_in_bytes":104857600}},"o1borzldTZ6dAbWvs8Rp6Q":{"name":"elasticsearch-node06.fr","transport_address":"inet[/10.77.64.6:9300]","host":"elasticsearch-node06.fr","ip":"10.77.64.6","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node06.fr/10.77.64.6:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.6:9200]","publish_address":"inet[/10.77.64.6:9200]","max_content_length_in_bytes":104857600}},"oglmjzEXRQmtTHZnyYPY1Q":{"name":"elasticsearch-node01.fr","transport_address":"inet[/10.77.64.1:9300]","host":"elasticsearch-node01.fr","ip":"10.77.64.1","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node01.fr/10.77.64.1:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.1:9200]","publish_address":"inet[/10.77.64.1:9200]","max_content_length_in_bytes":104857600}},"3WH8AwUOQ8GDdRuMDs4kEg":{"name":"elasticsearch-node92.fr","transport_address":"inet[/10.77.64.92:9300]","host":"elasticsearch-node92.fr","ip":"10.77.64.92","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node92.fr/10.77.64.92:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.92:9200]","publish_address":"inet[/10.77.64.92:9200]","max_content_length_in_bytes":104857600}},"LIJcrgzWTZSIy6B6GN40SQ":{"name":"elasticsearch-node61.fr","transport_address":"inet[/10.77.64.61:9300]","host":"elasticsearch-node61.fr","ip":"10.77.64.61","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node61.fr/10.77.64.61:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.61:9200]","publish_address":"inet[/10.77.64.61:9200]","max_content_length_in_bytes":104857600}},"Bp3V7CBaRGWk01lZYhCycw":{"name":"elasticsearch-node97.fr","transport_address":"inet[/10.77.64.97:9300]","host":"elasticsearch-node97.fr","ip":"10.77.64.97","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node97.fr/10.77.64.97:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.97:9200]","publish_address":"inet[/10.77.64.97:9200]","max_content_length_in_bytes":104857600}},"kbJ0_giQReKngzNUL-t2Fg":{"name":"elasticsearch-node77.fr","transport_address":"inet[/10.77.64.77:9300]","host":"elasticsearch-node77.fr","ip":"10.77.64.77","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node77.fr/10.77.64.77:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.77:9200]","publish_address":"inet[/10.77.64.77:9200]","max_content_length_in_bytes":104857600}},"YHAllqqwTpeyqeBf7Ey_hg":{"name":"elasticsearch-node62.fr","transport_address":"inet[/10.77.64.62:9300]","host":"elasticsearch-node62.fr","ip":"10.77.64.62","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node62.fr/10.77.64.62:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.62:9200]","publish_address":"inet[/10.77.64.62:9200]","max_content_length_in_bytes":104857600}},"AQ12RKDhTdiXbCshcSjWFg":{"name":"elasticsearch-node71.fr","transport_address":"inet[/10.77.64.71:9300]","host":"elasticsearch-node71.fr","ip":"10.77.64.71","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node71.fr/10.77.64.71:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.71:9200]","publish_address":"inet[/10.77.64.71:9200]","max_content_length_in_bytes":104857600}},"gB5etmzKSIibCMy7u1gwZA":{"name":"elasticsearch-node03.fr","transport_address":"inet[/10.77.64.3:9300]","host":"elasticsearch-node03.fr","ip":"10.77.64.3","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node03.fr/10.77.64.3:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.3:9200]","publish_address":"inet[/10.77.64.3:9200]","max_content_length_in_bytes":104857600}},"iTNeXxEFT4CxEoayR-RFbg":{"name":"elasticsearch-node65.fr","transport_address":"inet[/10.77.64.65:9300]","host":"elasticsearch-node65.fr","ip":"10.77.64.65","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node65.fr/10.77.64.65:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.65:9200]","publish_address":"inet[/10.77.64.65:9200]","max_content_length_in_bytes":104857600}},"2ZDlxyPDSXahDmg24t2E9Q":{"name":"elasticsearch-node90.fr","transport_address":"inet[/10.77.64.90:9300]","host":"elasticsearch-node90.fr","ip":"10.77.64.90","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node90.fr/10.77.64.90:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.90:9200]","publish_address":"inet[/10.77.64.90:9200]","max_content_length_in_bytes":104857600}},"euZgjhuIQ62BAYq1-gg9mg":{"name":"elasticsearch-node91.fr","transport_address":"inet[/10.77.64.91:9300]","host":"elasticsearch-node91.fr","ip":"10.77.64.91","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node91.fr/10.77.64.91:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.91:9200]","publish_address":"inet[/10.77.64.91:9200]","max_content_length_in_bytes":104857600}}}}]
16/06/07 14:48:50 DEBUG ScalaEsRDD: Found data nodes [10.77.64.38:9200, 10.77.64.50:9200, 10.77.64.73:9200, 10.77.64.72:9200, 10.77.64.74:9200, 10.77.64.21:9200, 10.77.64.81:9200, 10.77.64.31:9200, 10.77.64.55:9200, 10.77.64.69:9200, 10.77.64.35:9200, 10.77.64.24:9200, 10.77.64.40:9200, 10.77.64.23:9200, 10.77.64.36:9200, 10.77.64.85:9200, 10.77.64.58:9200, 10.77.64.59:9200, 10.77.64.70:9200, 10.77.64.66:9200, 10.77.64.75:9200, 10.77.64.60:9200, 10.77.64.98:9200, 10.77.64.57:9200, 10.77.64.64:9200, 10.77.64.25:9200, 10.77.64.88:9200, 10.77.64.42:9200, 10.77.64.48:9200, 10.77.64.80:9200, 10.77.64.52:9200, 10.77.64.16:9200, 10.77.64.54:9200, 10.77.64.17:9200, 10.77.64.47:9200, 10.77.64.39:9200, 10.77.64.44:9200, 10.77.64.79:9200, 10.77.64.53:9200, 10.77.64.7:9200, 10.77.64.37:9200, 10.77.64.87:9200, 10.77.64.94:9200, 10.77.64.43:9200, 10.77.64.28:9200, 10.77.64.2:9200, 10.77.64.67:9200, 10.77.64.86:9200, 10.77.64.34:9200, 10.77.64.20:9200, 10.77.64.22:9200, 10.77.64.51:9200, 10.77.64.30:9200, 10.77.64.4:9200, 10.77.64.5:9200, 10.77.64.95:9200, 10.77.64.99:9200, 10.77.64.45:9200, 10.77.64.78:9200, 10.77.64.29:9200, 10.77.64.49:9200, 10.77.64.93:9200, 10.77.64.56:9200, 10.77.64.33:9200, 10.77.64.89:9200, 10.77.64.18:9200, 10.77.64.32:9200, 10.77.64.76:9200, 10.77.64.46:9200, 10.77.64.96:9200, 10.77.64.19:9200, 10.77.64.63:9200, 10.77.64.6:9200, 10.77.64.1:9200, 10.77.64.92:9200, 10.77.64.61:9200, 10.77.64.97:9200, 10.77.64.77:9200, 10.77.64.62:9200, 10.77.64.71:9200, 10.77.64.3:9200, 10.77.64.65:9200, 10.77.64.90:9200, 10.77.64.91:9200]
16/06/07 14:48:50 DEBUG ScalaEsRDD: Filtered discovered only nodes [10.77.64.228:9200, 10.77.64.38:9200, 10.77.64.50:9200, 10.77.64.73:9200, 10.77.64.72:9200, 10.77.64.74:9200, 10.77.64.21:9200, 10.77.64.81:9200, 10.77.64.31:9200, 10.77.64.55:9200, 10.77.64.69:9200, 10.77.64.35:9200, 10.77.64.24:9200, 10.77.64.40:9200, 10.77.64.23:9200, 10.77.64.36:9200, 10.77.64.85:9200, 10.77.64.58:9200, 10.77.64.59:9200, 10.77.64.70:9200, 10.77.64.66:9200, 10.77.64.75:9200, 10.77.64.60:9200, 10.77.64.98:9200, 10.77.64.57:9200, 10.77.64.64:9200, 10.77.64.25:9200, 10.77.64.88:9200, 10.77.64.42:9200, 10.77.64.48:9200, 10.77.64.80:9200, 10.77.64.52:9200, 10.77.64.16:9200, 10.77.64.54:9200, 10.77.64.17:9200, 10.77.64.47:9200, 10.77.64.39:9200, 10.77.64.44:9200, 10.77.64.79:9200, 10.77.64.53:9200, 10.77.64.7:9200, 10.77.64.37:9200, 10.77.64.87:9200, 10.77.64.94:9200, 10.77.64.43:9200, 10.77.64.28:9200, 10.77.64.2:9200, 10.77.64.67:9200, 10.77.64.86:9200, 10.77.64.34:9200, 10.77.64.20:9200, 10.77.64.22:9200, 10.77.64.51:9200, 10.77.64.30:9200, 10.77.64.4:9200, 10.77.64.5:9200, 10.77.64.95:9200, 10.77.64.99:9200, 10.77.64.45:9200, 10.77.64.78:9200, 10.77.64.29:9200, 10.77.64.49:9200, 10.77.64.93:9200, 10.77.64.56:9200, 10.77.64.33:9200, 10.77.64.89:9200, 10.77.64.18:9200, 10.77.64.32:9200, 10.77.64.76:9200, 10.77.64.46:9200, 10.77.64.96:9200, 10.77.64.19:9200, 10.77.64.63:9200, 10.77.64.6:9200, 10.77.64.1:9200, 10.77.64.92:9200, 10.77.64.61:9200, 10.77.64.97:9200, 10.77.64.77:9200, 10.77.64.62:9200, 10.77.64.71:9200, 10.77.64.3:9200, 10.77.64.65:9200, 10.77.64.90:9200, 10.77.64.91:9200] to data-only [10.77.64.38:9200, 10.77.64.50:9200, 10.77.64.73:9200, 10.77.64.72:9200, 10.77.64.74:9200, 10.77.64.21:9200, 10.77.64.81:9200, 10.77.64.31:9200, 10.77.64.55:9200, 10.77.64.69:9200, 10.77.64.35:9200, 10.77.64.24:9200, 10.77.64.40:9200, 10.77.64.23:9200, 10.77.64.36:9200, 10.77.64.85:9200, 10.77.64.58:9200, 10.77.64.59:9200, 10.77.64.70:9200, 10.77.64.66:9200, 10.77.64.75:9200, 10.77.64.60:9200, 10.77.64.98:9200, 10.77.64.57:9200, 10.77.64.64:9200, 10.77.64.25:9200, 10.77.64.88:9200, 10.77.64.42:9200, 10.77.64.48:9200, 10.77.64.80:9200, 10.77.64.52:9200, 10.77.64.16:9200, 10.77.64.54:9200, 10.77.64.17:9200, 10.77.64.47:9200, 10.77.64.39:9200, 10.77.64.44:9200, 10.77.64.79:9200, 10.77.64.53:9200, 10.77.64.7:9200, 10.77.64.37:9200, 10.77.64.87:9200, 10.77.64.94:9200, 10.77.64.43:9200, 10.77.64.28:9200, 10.77.64.2:9200, 10.77.64.67:9200, 10.77.64.86:9200, 10.77.64.34:9200, 10.77.64.20:9200, 10.77.64.22:9200, 10.77.64.51:9200, 10.77.64.30:9200, 10.77.64.4:9200, 10.77.64.5:9200, 10.77.64.95:9200, 10.77.64.99:9200, 10.77.64.45:9200, 10.77.64.78:9200, 10.77.64.29:9200, 10.77.64.49:9200, 10.77.64.93:9200, 10.77.64.56:9200, 10.77.64.33:9200, 10.77.64.89:9200, 10.77.64.18:9200, 10.77.64.32:9200, 10.77.64.76:9200, 10.77.64.46:9200, 10.77.64.96:9200, 10.77.64.19:9200, 10.77.64.63:9200, 10.77.64.6:9200, 10.77.64.1:9200, 10.77.64.92:9200, 10.77.64.61:9200, 10.77.64.97:9200, 10.77.64.77:9200, 10.77.64.62:9200, 10.77.64.71:9200, 10.77.64.3:9200, 10.77.64.65:9200, 10.77.64.90:9200, 10.77.64.91:9200]
16/06/07 14:48:50 TRACE CommonsHttpTransport: Closing HTTP transport to 10.77.64.63:9200
16/06/07 14:48:50 DEBUG CommonsHttpTransport: SSL Connection enabled
16/06/07 14:48:50 INFO CommonsHttpTransport: Using detected HTTP Auth credentials...
16/06/07 14:48:50 TRACE CommonsHttpTransport: Opening HTTP transport to 10.77.64.88:9200
16/06/07 14:48:50 TRACE CommonsHttpTransport: Tx [HEAD]@[10.77.64.88:9200][public_chicago/CSV] w/ payload [null]
16/06/07 14:48:50 TRACE CommonsHttpTransport: Rx @[10.77.95.200] [200-OK] [null]
16/06/07 14:48:50 TRACE CommonsHttpTransport: Tx [GET]@[10.77.64.88:9200][public_chicago/_search_shards] w/ payload [null]
16/06/07 14:48:50 TRACE CommonsHttpTransport: Rx @[10.77.95.200] [200-OK] [{"nodes":{"aDqdFsTPTYONo9PZ_SIR3g":{"name":"elasticsearch-node57.fr","transport_address":"inet[/10.77.64.57:9300]","attributes":{"master":"false"}},"F4ZWDp29QiuwOMd6IIcdgQ":{"name":"elasticsearch-node73.fr","transport_address":"inet[/10.77.64.73:9300]","attributes":{"master":"false"}},"UMwrOxHWRU6DMac7dSv6eA":{"name":"elasticsearch-node19.fr","transport_address":"inet[/10.77.64.19:9300]","attributes":{"master":"false"}},"mLf16MJLQuSYiZMzOwefbw":{"name":"elasticsearch-node34.fr","transport_address":"inet[/10.77.64.34:9300]","attributes":{"master":"false"}},"_jiEy4H5R6ShgzdAlTwdyQ":{"name":"elasticsearch-node86.fr","transport_address":"inet[/10.77.64.86:9300]","attributes":{"master":"false"}},"o1borzldTZ6dAbWvs8Rp6Q":{"name":"elasticsearch-node06.fr","transport_address":"inet[/10.77.64.6:9300]","attributes":{"master":"false"}},"oglmjzEXRQmtTHZnyYPY1Q":{"name":"elasticsearch-node01.fr","transport_address":"inet[/10.77.64.1:9300]","attributes":{"master":"false"}},"gHVv8twTRjqlELi2f8ME8A":{"name":"elasticsearch-node52.fr","transport_address":"inet[/10.77.64.52:9300]","attributes":{"master":"false"}},"8JEVlfUDRIaHTPKTuhhl0A":{"name":"elasticsearch-node16.fr","transport_address":"inet[/10.77.64.16:9300]","attributes":{"master":"false"}},"Vv2CbP5ISiiYHyXp_nnMvw":{"name":"elasticsearch-node51.fr","transport_address":"inet[/10.77.64.51:9300]","attributes":{"master":"false"}},"Nq9MGM9DTJa6nCpwzOBcUQ":{"name":"elasticsearch-node47.fr","transport_address":"inet[/10.77.64.47:9300]","attributes":{"master":"false"}},"NzNI7nuESfmZSx5fEjiS3w":{"name":"elasticsearch-node78.fr","transport_address":"inet[/10.77.64.78:9300]","attributes":{"master":"false"}},"XR3NEzi3RUWR9dJuWKF2DA":{"name":"elasticsearch-node45.fr","transport_address":"inet[/10.77.64.45:9300]","attributes":{"master":"false"}},"NqkuQkkTQuGJtSgpcSegSg":{"name":"elasticsearch-node29.fr","transport_address":"inet[/10.77.64.29:9300]","attributes":{"master":"false"}},"v5CEI6bwTZapN7EEemDtVg":{"name":"elasticsearch-node53.fr","transport_address":"inet[/10.77.64.53:9301]","attributes":{"master":"false"}},"2ZDlxyPDSXahDmg24t2E9Q":{"name":"elasticsearch-node90.fr","transport_address":"inet[/10.77.64.90:9300]","attributes":{"master":"false"}},"hxIo-ZKuQliqvrzAAZOobQ":{"name":"elasticsearch-node70.fr","transport_address":"inet[/10.77.64.70:9300]","attributes":{"master":"false"}},"7T3MeW98SFy9QxtR2Bu5gA":{"name":"elasticsearch-node49.fr","transport_address":"inet[/10.77.64.49:9300]","attributes":{"master":"false"}},"L12cIR6QSLW-iOmm7PRX-A":{"name":"elasticsearch-node75.fr","transport_address":"inet[/10.77.64.75:9300]","attributes":{"master":"false"}},"E3PopHTCS7O3KDf_QgC4yA":{"name":"elasticsearch-node60.fr","transport_address":"inet[/10.77.64.60:9300]","attributes":{"master":"false"}}},"shards":[[{"state":"STARTED","primary":true,"node":"7T3MeW98SFy9QxtR2Bu5gA","relocating_node":null,"shard":0,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"L12cIR6QSLW-iOmm7PRX-A","relocating_node":null,"shard":0,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"v5CEI6bwTZapN7EEemDtVg","relocating_node":null,"shard":0,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"NqkuQkkTQuGJtSgpcSegSg","relocating_node":null,"shard":0,"index":"public_chicago"}],[{"state":"STARTED","primary":true,"node":"2ZDlxyPDSXahDmg24t2E9Q","relocating_node":null,"shard":1,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"hxIo-ZKuQliqvrzAAZOobQ","relocating_node":null,"shard":1,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"aDqdFsTPTYONo9PZ_SIR3g","relocating_node":null,"shard":1,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"_jiEy4H5R6ShgzdAlTwdyQ","relocating_node":null,"shard":1,"index":"public_chicago"}],[{"state":"STARTED","primary":true,"node":"Nq9MGM9DTJa6nCpwzOBcUQ","relocating_node":null,"shard":2,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"Vv2CbP5ISiiYHyXp_nnMvw","relocating_node":null,"shard":2,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"o1borzldTZ6dAbWvs8Rp6Q","relocating_node":null,"shard":2,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"F4ZWDp29QiuwOMd6IIcdgQ","relocating_node":null,"shard":2,"index":"public_chicago"}],[{"state":"STARTED","primary":false,"node":"XR3NEzi3RUWR9dJuWKF2DA","relocating_node":null,"shard":3,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"UMwrOxHWRU6DMac7dSv6eA","relocating_node":null,"shard":3,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"gHVv8twTRjqlELi2f8ME8A","relocating_node":null,"shard":3,"index":"public_chicago"},{"state":"STARTED","primary":true,"node":"mLf16MJLQuSYiZMzOwefbw","relocating_node":null,"shard":3,"index":"public_chicago"}],[{"state":"STARTED","primary":false,"node":"E3PopHTCS7O3KDf_QgC4yA","relocating_node":null,"shard":4,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"8JEVlfUDRIaHTPKTuhhl0A","relocating_node":null,"shard":4,"index":"public_chicago"},{"state":"STARTED","primary":true,"node":"NzNI7nuESfmZSx5fEjiS3w","relocating_node":null,"shard":4,"index":"public_chicago"},{"state":"STARTED","primary":false,"node":"oglmjzEXRQmtTHZnyYPY1Q","relocating_node":null,"shard":4,"index":"public_chicago"}]]}]
16/06/07 14:48:50 TRACE CommonsHttpTransport: Tx [GET]@[10.77.64.88:9200][_nodes/http] w/ payload [null]
16/06/07 14:48:51 TRACE CommonsHttpTransport: Rx @[10.77.95.200] [200-OK] [{"cluster_name":"ELASTIC.PEI","nodes":{"3FAntaX_QDex5f3ZiIy-Kg":{"name":"elasticsearch-node38.fr","transport_address":"inet[/10.77.64.38:9300]","host":"elasticsearch-node38.fr","ip":"10.77.64.38","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node38.fr/10.77.64.38:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.38:9200]","publish_address":"inet[/10.77.64.38:9200]","max_content_length_in_bytes":104857600}},"aYPNkAnRQY21eXvqRo_RyQ":{"name":"elasticsearch-node50.fr","transport_address":"inet[/10.77.64.50:9300]","host":"elasticsearch-node50.fr","ip":"10.77.64.50","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node50.fr/10.77.64.50:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.50:9200]","publish_address":"inet[/10.77.64.50:9200]","max_content_length_in_bytes":104857600}},"F4ZWDp29QiuwOMd6IIcdgQ":{"name":"elasticsearch-node73.fr","transport_address":"inet[/10.77.64.73:9300]","host":"elasticsearch-node73.fr","ip":"10.77.64.73","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node73.fr/10.77.64.73:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.73:9200]","publish_address":"inet[/10.77.64.73:9200]","max_content_length_in_bytes":104857600}},"uWLxUQfrShKZU2_5xETEUA":{"name":"elasticsearch-node72.fr","transport_address":"inet[/10.77.64.72:9300]","host":"elasticsearch-node72.fr","ip":"10.77.64.72","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node72.fr/10.77.64.72:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.72:9200]","publish_address":"inet[/10.77.64.72:9200]","max_content_length_in_bytes":104857600}},"g_wg56c_TDuo9uQbwzNl1A":{"name":"elasticsearch-node74.fr","transport_address":"inet[/10.77.64.74:9300]","host":"elasticsearch-node74.fr","ip":"10.77.64.74","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node74.fr/10.77.64.74:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.74:9200]","publish_address":"inet[/10.77.64.74:9200]","max_content_length_in_bytes":104857600}},"5P5wxjEfT9KVrkFFjVjPYA":{"name":"elasticsearch-node21.fr","transport_address":"inet[/10.77.64.21:9300]","host":"elasticsearch-node21.fr","ip":"10.77.64.21","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node21.fr/10.77.64.21:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.21:9200]","publish_address":"inet[/10.77.64.21:9200]","max_content_length_in_bytes":104857600}},"3rmvVjN3QVycXMSJuuekmg":{"name":"elasticsearch-node81.fr","transport_address":"inet[/10.77.64.81:9300]","host":"elasticsearch-node81.fr","ip":"10.77.64.81","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node81.fr/10.77.64.81:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.81:9200]","publish_address":"inet[/10.77.64.81:9200]","max_content_length_in_bytes":104857600}},"Y8c09UTjRDScbd6UTSmKIg":{"name":"elasticsearch-node31.fr","transport_address":"inet[/10.77.64.31:9300]","host":"elasticsearch-node31.fr","ip":"10.77.64.31","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node31.fr/10.77.64.31:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.31:9200]","publish_address":"inet[/10.77.64.31:9200]","max_content_length_in_bytes":104857600}},"SmfUq1ePQ1auBQr6hAXWbQ":{"name":"elasticsearch-node55.fr","transport_address":"inet[/10.77.64.55:9300]","host":"elasticsearch-node55.fr","ip":"10.77.64.55","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node55.fr/10.77.64.55:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.55:9200]","publish_address":"inet[/10.77.64.55:9200]","max_content_length_in_bytes":104857600}},"93uIfLvfTV-zG1hXQ2Z33Q":{"name":"elasticsearch-node69.fr","transport_address":"inet[/10.77.64.69:9300]","host":"elasticsearch-node69.fr","ip":"10.77.64.69","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node69.fr/10.77.64.69:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.69:9200]","publish_address":"inet[/10.77.64.69:9200]","max_content_length_in_bytes":104857600}},"lbC_LvqYRleucdLJ-ooXgA":{"name":"elasticsearch-node35.fr","transport_address":"inet[/10.77.64.35:9300]","host":"elasticsearch-node35.fr","ip":"10.77.64.35","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node35.fr/10.77.64.35:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.35:9200]","publish_address":"inet[/10.77.64.35:9200]","max_content_length_in_bytes":104857600}},"UaRtkfHbRKuoloPXljIkHw":{"name":"elasticsearch-node24.fr","transport_address":"inet[/10.77.64.24:9300]","host":"elasticsearch-node24.fr","ip":"10.77.64.24","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node24.fr/10.77.64.24:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.24:9200]","publish_address":"inet[/10.77.64.24:9200]","max_content_length_in_bytes":104857600}},"YjYV8a77QySmdVGkd4up3A":{"name":"elasticsearch-node40.fr","transport_address":"inet[/10.77.64.40:9300]","host":"elasticsearch-node40.fr","ip":"10.77.64.40","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node40.fr/10.77.64.40:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.40:9200]","publish_address":"inet[/10.77.64.40:9200]","max_content_length_in_bytes":104857600}},"Sbpdh4G6QEyT_v89Rh2C0g":{"name":"elasticsearch-node23.fr","transport_address":"inet[/10.77.64.23:9300]","host":"elasticsearch-node23.fr","ip":"10.77.64.23","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node23.fr/10.77.64.23:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.23:9200]","publish_address":"inet[/10.77.64.23:9200]","max_content_length_in_bytes":104857600}},"LGQ9H5r7TPWOtIO3lzZLtg":{"name":"elasticsearch-node36.fr","transport_address":"inet[/10.77.64.36:9301]","host":"elasticsearch-node36.fr","ip":"10.77.64.36","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node36.fr/10.77.64.36:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.36:9200]","publish_address":"inet[/10.77.64.36:9200]","max_content_length_in_bytes":104857600}},"zygTCEqqQV6c1B7sE6mzfQ":{"name":"elasticsearch-node85.fr","transport_address":"inet[/10.77.64.85:9300]","host":"elasticsearch-node85.fr","ip":"10.77.64.85","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node85.fr/10.77.64.85:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.85:9200]","publish_address":"inet[/10.77.64.85:9200]","max_content_length_in_bytes":104857600}},"NfiSmfvPR9CMR_TA6FE25A":{"name":"elasticsearch-node58.fr","transport_address":"inet[/10.77.64.58:9300]","host":"elasticsearch-node58.fr","ip":"10.77.64.58","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node58.fr/10.77.64.58:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.58:9200]","publish_address":"inet[/10.77.64.58:9200]","max_content_length_in_bytes":104857600}},"rRUx96R0Sj-FmrtjpTXwOg":{"name":"elasticsearch-node59.fr","transport_address":"inet[/10.77.64.59:9300]","host":"elasticsearch-node59.fr","ip":"10.77.64.59","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node59.fr/10.77.64.59:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.59:9200]","publish_address":"inet[/10.77.64.59:9200]","max_content_length_in_bytes":104857600}},"hxIo-ZKuQliqvrzAAZOobQ":{"name":"elasticsearch-node70.fr","transport_address":"inet[/10.77.64.70:9300]","host":"elasticsearch-node70.fr","ip":"10.77.64.70","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node70.fr/10.77.64.70:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.70:9200]","publish_address":"inet[/10.77.64.70:9200]","max_content_length_in_bytes":104857600}},"tA2PGbXJSNm5n-GT0dV2dQ":{"name":"elasticsearch-node66.fr","transport_address":"inet[/10.77.64.66:9300]","host":"elasticsearch-node66.fr","ip":"10.77.64.66","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node66.fr/10.77.64.66:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.66:9200]","publish_address":"inet[/10.77.64.66:9200]","max_content_length_in_bytes":104857600}},"L12cIR6QSLW-iOmm7PRX-A":{"name":"elasticsearch-node75.fr","transport_address":"inet[/10.77.64.75:9300]","host":"elasticsearch-node75.fr","ip":"10.77.64.75","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node75.fr/10.77.64.75:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.75:9200]","publish_address":"inet[/10.77.64.75:9200]","max_content_length_in_bytes":104857600}},"E3PopHTCS7O3KDf_QgC4yA":{"name":"elasticsearch-node60.fr","transport_address":"inet[/10.77.64.60:9300]","host":"elasticsearch-node60.fr","ip":"10.77.64.60","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node60.fr/10.77.64.60:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.60:9200]","publish_address":"inet[/10.77.64.60:9200]","max_content_length_in_bytes":104857600}},"ktttj8bPR6SXp5dErzdNXA":{"name":"elasticsearch-node98.fr","transport_address":"inet[/10.77.64.98:9300]","host":"elasticsearch-node98.fr","ip":"10.77.64.98","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node98.fr/10.77.64.98:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.98:9200]","publish_address":"inet[/10.77.64.98:9200]","max_content_length_in_bytes":104857600}},"aDqdFsTPTYONo9PZ_SIR3g":{"name":"elasticsearch-node57.fr","transport_address":"inet[/10.77.64.57:9300]","host":"elasticsearch-node57.fr","ip":"10.77.64.57","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node57.fr/10.77.64.57:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.57:9200]","publish_address":"inet[/10.77.64.57:9200]","max_content_length_in_bytes":104857600}},"NFs8l04QQvmJbgVfWEtu5g":{"name":"elasticsearch-node64.fr","transport_address":"inet[/10.77.64.64:9300]","host":"elasticsearch-node64.fr","ip":"10.77.64.64","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node64.fr/10.77.64.64:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.64:9200]","publish_address":"inet[/10.77.64.64:9200]","max_content_length_in_bytes":104857600}},"6J00mVt6R4CN2_c-tGbXsQ":{"name":"elasticsearch-node25.fr","transport_address":"inet[/10.77.64.25:9300]","host":"elasticsearch-node25.fr","ip":"10.77.64.25","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node25.fr/10.77.64.25:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.25:9200]","publish_address":"inet[/10.77.64.25:9200]","max_content_length_in_bytes":104857600}},"dR7tA4RPSX-F0jugIZnjyA":{"name":"elasticsearch-node88.fr","transport_address":"inet[elasticsearch-node88.fr/10.77.64.88:9300]","host":"elasticsearch-node88.fr","ip":"10.77.64.88","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node88.fr/10.77.64.88:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.88:9200]","publish_address":"inet[elasticsearch-node88.fr/10.77.64.88:9200]","max_content_length_in_bytes":104857600}},"j-tSWR_sSr6sAFbBGtAsWw":{"name":"elasticsearch-node42.fr","transport_address":"inet[/10.77.64.42:9300]","host":"elasticsearch-node42.fr","ip":"10.77.64.42","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node42.fr/10.77.64.42:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.42:9200]","publish_address":"inet[/10.77.64.42:9200]","max_content_length_in_bytes":104857600}},"h1rO-PRzT_muTBV_3ZNQpQ":{"name":"elasticsearch-node48.fr","transport_address":"inet[/10.77.64.48:9300]","host":"elasticsearch-node48.fr","ip":"10.77.64.48","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node48.fr/10.77.64.48:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.48:9200]","publish_address":"inet[/10.77.64.48:9200]","max_content_length_in_bytes":104857600}},"MVzwePLLQyejCh5qiyt2aQ":{"name":"elasticsearch-node80.fr","transport_address":"inet[/10.77.64.80:9300]","host":"elasticsearch-node80.fr","ip":"10.77.64.80","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node80.fr/10.77.64.80:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.80:9200]","publish_address":"inet[/10.77.64.80:9200]","max_content_length_in_bytes":104857600}},"ht8JE_TcRXWuU6Ga7BLnDA":{"name":"uabigname02.fr","transport_address":"inet[/10.77.64.209:9300]","host":"uabigname02.fr","ip":"10.77.64.209","version":"1.6.2","build":"6220391","attributes":{"data":"false","master":"true"}},"gHVv8twTRjqlELi2f8ME8A":{"name":"elasticsearch-node52.fr","transport_address":"inet[/10.77.64.52:9300]","host":"elasticsearch-node52.fr","ip":"10.77.64.52","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node52.fr/10.77.64.52:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.52:9200]","publish_address":"inet[/10.77.64.52:9200]","max_content_length_in_bytes":104857600}},"8JEVlfUDRIaHTPKTuhhl0A":{"name":"elasticsearch-node16.fr","transport_address":"inet[/10.77.64.16:9300]","host":"elasticsearch-node16.fr","ip":"10.77.64.16","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node16.fr/10.77.64.16:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.16:9200]","publish_address":"inet[/10.77.64.16:9200]","max_content_length_in_bytes":104857600}},"B4R64qo2T5aBe84jtG8DWQ":{"name":"elasticsearch-node54.fr","transport_address":"inet[/10.77.64.54:9300]","host":"elasticsearch-node54.fr","ip":"10.77.64.54","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node54.fr/10.77.64.54:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.54:9200]","publish_address":"inet[/10.77.64.54:9200]","max_content_length_in_bytes":104857600}},"O0FTvFXvTmmUWY-n_VrYCg":{"name":"elasticsearch-node17.fr","transport_address":"inet[/10.77.64.17:9300]","host":"elasticsearch-node17.fr","ip":"10.77.64.17","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node17.fr/10.77.64.17:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.17:9200]","publish_address":"inet[/10.77.64.17:9200]","max_content_length_in_bytes":104857600}},"Nq9MGM9DTJa6nCpwzOBcUQ":{"name":"elasticsearch-node47.fr","transport_address":"inet[/10.77.64.47:9300]","host":"elasticsearch-node47.fr","ip":"10.77.64.47","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node47.fr/10.77.64.47:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.47:9200]","publish_address":"inet[/10.77.64.47:9200]","max_content_length_in_bytes":104857600}},"e5hSg7y6S-6YZybv39J9eQ":{"name":"elasticsearch-node39.fr","transport_address":"inet[/10.77.64.39:9300]","host":"elasticsearch-node39.fr","ip":"10.77.64.39","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node39.fr/10.77.64.39:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.39:9200]","publish_address":"inet[/10.77.64.39:9200]","max_content_length_in_bytes":104857600}},"ctiwbh6CR6ON-1370tpE7g":{"name":"elasticsearch-node44.fr","transport_address":"inet[/10.77.64.44:9300]","host":"elasticsearch-node44.fr","ip":"10.77.64.44","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node44.fr/10.77.64.44:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.44:9200]","publish_address":"inet[/10.77.64.44:9200]","max_content_length_in_bytes":104857600}},"Ss7W8CEeQh2HDrF4mAe-rA":{"name":"elasticsearch-node79.fr","transport_address":"inet[/10.77.64.79:9300]","host":"elasticsearch-node79.fr","ip":"10.77.64.79","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node79.fr/10.77.64.79:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.79:9200]","publish_address":"inet[/10.77.64.79:9200]","max_content_length_in_bytes":104857600}},"v5CEI6bwTZapN7EEemDtVg":{"name":"elasticsearch-node53.fr","transport_address":"inet[/10.77.64.53:9301]","host":"elasticsearch-node53.fr","ip":"10.77.64.53","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node53.fr/10.77.64.53:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.53:9200]","publish_address":"inet[/10.77.64.53:9200]","max_content_length_in_bytes":104857600}},"uwZ0yzkeS8qSVGeAOnHCZQ":{"name":"elasticsearch-node07.fr","transport_address":"inet[/10.77.64.7:9300]","host":"elasticsearch-node07.fr","ip":"10.77.64.7","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node07.fr/10.77.64.7:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.7:9200]","publish_address":"inet[/10.77.64.7:9200]","max_content_length_in_bytes":104857600}},"QWtJfybVS_WozXjunXNzkQ":{"name":"elasticsearch-node37.fr","transport_address":"inet[/10.77.64.37:9300]","host":"elasticsearch-node37.fr","ip":"10.77.64.37","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node37.fr/10.77.64.37:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.37:9200]","publish_address":"inet[/10.77.64.37:9200]","max_content_length_in_bytes":104857600}},"lwl6sbC_RNqNLtkZg8s8Fg":{"name":"elasticsearch-node87.fr","transport_address":"inet[/10.77.64.87:9300]","host":"elasticsearch-node87.fr","ip":"10.77.64.87","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node87.fr/10.77.64.87:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.87:9200]","publish_address":"inet[/10.77.64.87:9200]","max_content_length_in_bytes":104857600}},"-SzO3gkPT5eL659EhpaARw":{"name":"elasticsearch-node94.fr","transport_address":"inet[/10.77.64.94:9300]","host":"elasticsearch-node94.fr","ip":"10.77.64.94","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node94.fr/10.77.64.94:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.94:9200]","publish_address":"inet[/10.77.64.94:9200]","max_content_length_in_bytes":104857600}},"CYyn_m9VTViZvF6ynPb2sw":{"name":"elasticsearch-node43.fr","transport_address":"inet[/10.77.64.43:9300]","host":"elasticsearch-node43.fr","ip":"10.77.64.43","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node43.fr/10.77.64.43:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.43:9200]","publish_address":"inet[/10.77.64.43:9200]","max_content_length_in_bytes":104857600}},"yftKzd3WRkKQTdK6RxgF3w":{"name":"elasticsearch-node28.fr","transport_address":"inet[/10.77.64.28:9300]","host":"elasticsearch-node28.fr","ip":"10.77.64.28","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node28.fr/10.77.64.28:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.28:9200]","publish_address":"inet[/10.77.64.28:9200]","max_content_length_in_bytes":104857600}},"0EF66qyiTd2KiILZm9jOEQ":{"name":"elasticsearch-node02.fr","transport_address":"inet[/10.77.64.2:9300]","host":"elasticsearch-node02.fr","ip":"10.77.64.2","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node02.fr/10.77.64.2:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.2:9200]","publish_address":"inet[/10.77.64.2:9200]","max_content_length_in_bytes":104857600}},"qHJ6fUFdQDO-laWh5hTsUA":{"name":"elasticsearch-node67.fr","transport_address":"inet[/10.77.64.67:9301]","host":"elasticsearch-node67.fr","ip":"10.77.64.67","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node67.fr/10.77.64.67:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.67:9200]","publish_address":"inet[/10.77.64.67:9200]","max_content_length_in_bytes":104857600}},"_jiEy4H5R6ShgzdAlTwdyQ":{"name":"elasticsearch-node86.fr","transport_address":"inet[/10.77.64.86:9300]","host":"elasticsearch-node86.fr","ip":"10.77.64.86","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node86.fr/10.77.64.86:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.86:9200]","publish_address":"inet[/10.77.64.86:9200]","max_content_length_in_bytes":104857600}},"mLf16MJLQuSYiZMzOwefbw":{"name":"elasticsearch-node34.fr","transport_address":"inet[/10.77.64.34:9300]","host":"elasticsearch-node34.fr","ip":"10.77.64.34","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node34.fr/10.77.64.34:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.34:9200]","publish_address":"inet[/10.77.64.34:9200]","max_content_length_in_bytes":104857600}},"JCHGbkVuTWmgrQ7PHNArFA":{"name":"elasticsearch-node20.fr","transport_address":"inet[/10.77.64.20:9300]","host":"elasticsearch-node20.fr","ip":"10.77.64.20","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node20.fr/10.77.64.20:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.20:9200]","publish_address":"inet[/10.77.64.20:9200]","max_content_length_in_bytes":104857600}},"qWV6mM7kQm-vqWLwxJaTyw":{"name":"es-loadbalancer.cluster.fr","transport_address":"inet[/10.77.64.228:9300]","host":"es-loadbalancer.cluster.fr","ip":"10.77.64.228","version":"1.6.2","build":"6220391","http_address":"inet[es-loadbalancer.cluster.fr/10.77.64.228:9200]","attributes":{"data":"false","master":"false"},"http":{"bound_address":"inet[/0.0.0.0:9200]","publish_address":"inet[/10.77.64.228:9200]","max_content_length_in_bytes":104857600}},"gmhFB5NKSEaibJdOsT48tQ":{"name":"elasticsearch-node22.fr","transport_address":"inet[/10.77.64.22:9300]","host":"elasticsearch-node22.fr","ip":"10.77.64.22","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node22.fr/10.77.64.22:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.22:9200]","publish_address":"inet[/10.77.64.22:9200]","max_content_length_in_bytes":104857600}},"Vv2CbP5ISiiYHyXp_nnMvw":{"name":"elasticsearch-node51.fr","transport_address":"inet[/10.77.64.51:9300]","host":"elasticsearch-node51.fr","ip":"10.77.64.51","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node51.fr/10.77.64.51:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.51:9200]","publish_address":"inet[/10.77.64.51:9200]","max_content_length_in_bytes":104857600}},"q6KRwIQ7Rtuzjhq8BAY8AA":{"name":"elasticsearch-node30.fr","transport_address":"inet[/10.77.64.30:9300]","host":"elasticsearch-node30.fr","ip":"10.77.64.30","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node30.fr/10.77.64.30:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.30:9200]","publish_address":"inet[/10.77.64.30:9200]","max_content_length_in_bytes":104857600}},"GHRTk9DDQ-Wt3_FEpDXqkA":{"name":"elasticsearch-node04.fr","transport_address":"inet[/10.77.64.4:9300]","host":"elasticsearch-node04.fr","ip":"10.77.64.4","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node04.fr/10.77.64.4:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.4:9200]","publish_address":"inet[/10.77.64.4:9200]","max_content_length_in_bytes":104857600}},"zy2N4959RyeH0hdV4oOKGw":{"name":"elasticsearch-node05.fr","transport_address":"inet[/10.77.64.5:9300]","host":"elasticsearch-node05.fr","ip":"10.77.64.5","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node05.fr/10.77.64.5:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.5:9200]","publish_address":"inet[/10.77.64.5:9200]","max_content_length_in_bytes":104857600}},"HhgDBXfdRXGjT9-igKFbGQ":{"name":"elasticsearch-node95.fr","transport_address":"inet[/10.77.64.95:9300]","host":"elasticsearch-node95.fr","ip":"10.77.64.95","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node95.fr/10.77.64.95:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.95:9200]","publish_address":"inet[/10.77.64.95:9200]","max_content_length_in_bytes":104857600}},"gBgof58ORR6sRaaT8_47ZA":{"name":"elasticsearch-node99.fr","transport_address":"inet[/10.77.64.99:9300]","host":"elasticsearch-node99.fr","ip":"10.77.64.99","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node99.fr/10.77.64.99:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.99:9200]","publish_address":"inet[/10.77.64.99:9200]","max_content_length_in_bytes":104857600}},"XR3NEzi3RUWR9dJuWKF2DA":{"name":"elasticsearch-node45.fr","transport_address":"inet[/10.77.64.45:9300]","host":"elasticsearch-node45.fr","ip":"10.77.64.45","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node45.fr/10.77.64.45:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.45:9200]","publish_address":"inet[/10.77.64.45:9200]","max_content_length_in_bytes":104857600}},"NzNI7nuESfmZSx5fEjiS3w":{"name":"elasticsearch-node78.fr","transport_address":"inet[/10.77.64.78:9300]","host":"elasticsearch-node78.fr","ip":"10.77.64.78","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node78.fr/10.77.64.78:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.78:9200]","publish_address":"inet[/10.77.64.78:9200]","max_content_length_in_bytes":104857600}},"NqkuQkkTQuGJtSgpcSegSg":{"name":"elasticsearch-node29.fr","transport_address":"inet[/10.77.64.29:9300]","host":"elasticsearch-node29.fr","ip":"10.77.64.29","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node29.fr/10.77.64.29:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.29:9200]","publish_address":"inet[/10.77.64.29:9200]","max_content_length_in_bytes":104857600}},"7T3MeW98SFy9QxtR2Bu5gA":{"name":"elasticsearch-node49.fr","transport_address":"inet[/10.77.64.49:9300]","host":"elasticsearch-node49.fr","ip":"10.77.64.49","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node49.fr/10.77.64.49:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.49:9200]","publish_address":"inet[/10.77.64.49:9200]","max_content_length_in_bytes":104857600}},"pGMciSkvTl-_t0AR2taWhQ":{"name":"elasticsearch-node93.fr","transport_address":"inet[/10.77.64.93:9300]","host":"elasticsearch-node93.fr","ip":"10.77.64.93","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node93.fr/10.77.64.93:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.93:9200]","publish_address":"inet[/10.77.64.93:9200]","max_content_length_in_bytes":104857600}},"L70gvJHIS8SMCoWN3LZ5wQ":{"name":"elasticsearch-node56.fr","transport_address":"inet[/10.77.64.56:9300]","host":"elasticsearch-node56.fr","ip":"10.77.64.56","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node56.fr/10.77.64.56:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.56:9200]","publish_address":"inet[/10.77.64.56:9200]","max_content_length_in_bytes":104857600}},"_-9YKhdeSMqaflphgMblXQ":{"name":"elasticsearch-node33.fr","transport_address":"inet[/10.77.64.33:9300]","host":"elasticsearch-node33.fr","ip":"10.77.64.33","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node33.fr/10.77.64.33:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.33:9200]","publish_address":"inet[/10.77.64.33:9200]","max_content_length_in_bytes":104857600}},"MJ838Fb1QQC3VxGZxtYMpw":{"name":"elasticsearch-node89.fr","transport_address":"inet[/10.77.64.89:9300]","host":"elasticsearch-node89.fr","ip":"10.77.64.89","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node89.fr/10.77.64.89:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.89:9200]","publish_address":"inet[/10.77.64.89:9200]","max_content_length_in_bytes":104857600}},"_KnuGQyVRrC35UN1kucuSQ":{"name":"elasticsearch-node18.fr","transport_address":"inet[/10.77.64.18:9300]","host":"elasticsearch-node18.fr","ip":"10.77.64.18","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node18.fr/10.77.64.18:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.18:9200]","publish_address":"inet[/10.77.64.18:9200]","max_content_length_in_bytes":104857600}},"1-OGO83aSXavq1FoRmwqZg":{"name":"elasticsearch-node32.fr","transport_address":"inet[/10.77.64.32:9300]","host":"elasticsearch-node32.fr","ip":"10.77.64.32","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node32.fr/10.77.64.32:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.32:9200]","publish_address":"inet[/10.77.64.32:9200]","max_content_length_in_bytes":104857600}},"4XnggjnnTxmraC_w0j-pgg":{"name":"elasticsearch-node76.fr","transport_address":"inet[/10.77.64.76:9300]","host":"elasticsearch-node76.fr","ip":"10.77.64.76","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node76.fr/10.77.64.76:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.76:9200]","publish_address":"inet[/10.77.64.76:9200]","max_content_length_in_bytes":104857600}},"p3wJDiNuR7um6Gjr1j0rKA":{"name":"elasticsearch-node46.fr","transport_address":"inet[/10.77.64.46:9300]","host":"elasticsearch-node46.fr","ip":"10.77.64.46","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node46.fr/10.77.64.46:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.46:9200]","publish_address":"inet[/10.77.64.46:9200]","max_content_length_in_bytes":104857600}},"w43az6fnRN2QTC-2LOEnfA":{"name":"elasticsearch-node96.fr","transport_address":"inet[/10.77.64.96:9300]","host":"elasticsearch-node96.fr","ip":"10.77.64.96","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node96.fr/10.77.64.96:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.96:9200]","publish_address":"inet[/10.77.64.96:9200]","max_content_length_in_bytes":104857600}},"UMwrOxHWRU6DMac7dSv6eA":{"name":"elasticsearch-node19.fr","transport_address":"inet[/10.77.64.19:9300]","host":"elasticsearch-node19.fr","ip":"10.77.64.19","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node19.fr/10.77.64.19:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.19:9200]","publish_address":"inet[/10.77.64.19:9200]","max_content_length_in_bytes":104857600}},"eb-naCSMRQmi0PLQZ8wb4g":{"name":"elasticsearch-node63.fr","transport_address":"inet[/10.77.64.63:9300]","host":"elasticsearch-node63.fr","ip":"10.77.64.63","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node63.fr/10.77.64.63:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.63:9200]","publish_address":"inet[/10.77.64.63:9200]","max_content_length_in_bytes":104857600}},"o1borzldTZ6dAbWvs8Rp6Q":{"name":"elasticsearch-node06.fr","transport_address":"inet[/10.77.64.6:9300]","host":"elasticsearch-node06.fr","ip":"10.77.64.6","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node06.fr/10.77.64.6:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.6:9200]","publish_address":"inet[/10.77.64.6:9200]","max_content_length_in_bytes":104857600}},"oglmjzEXRQmtTHZnyYPY1Q":{"name":"elasticsearch-node01.fr","transport_address":"inet[/10.77.64.1:9300]","host":"elasticsearch-node01.fr","ip":"10.77.64.1","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node01.fr/10.77.64.1:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.1:9200]","publish_address":"inet[/10.77.64.1:9200]","max_content_length_in_bytes":104857600}},"3WH8AwUOQ8GDdRuMDs4kEg":{"name":"elasticsearch-node92.fr","transport_address":"inet[/10.77.64.92:9300]","host":"elasticsearch-node92.fr","ip":"10.77.64.92","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node92.fr/10.77.64.92:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.92:9200]","publish_address":"inet[/10.77.64.92:9200]","max_content_length_in_bytes":104857600}},"LIJcrgzWTZSIy6B6GN40SQ":{"name":"elasticsearch-node61.fr","transport_address":"inet[/10.77.64.61:9300]","host":"elasticsearch-node61.fr","ip":"10.77.64.61","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node61.fr/10.77.64.61:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.61:9200]","publish_address":"inet[/10.77.64.61:9200]","max_content_length_in_bytes":104857600}},"Bp3V7CBaRGWk01lZYhCycw":{"name":"elasticsearch-node97.fr","transport_address":"inet[/10.77.64.97:9300]","host":"elasticsearch-node97.fr","ip":"10.77.64.97","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node97.fr/10.77.64.97:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.97:9200]","publish_address":"inet[/10.77.64.97:9200]","max_content_length_in_bytes":104857600}},"kbJ0_giQReKngzNUL-t2Fg":{"name":"elasticsearch-node77.fr","transport_address":"inet[/10.77.64.77:9300]","host":"elasticsearch-node77.fr","ip":"10.77.64.77","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node77.fr/10.77.64.77:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.77:9200]","publish_address":"inet[/10.77.64.77:9200]","max_content_length_in_bytes":104857600}},"YHAllqqwTpeyqeBf7Ey_hg":{"name":"elasticsearch-node62.fr","transport_address":"inet[/10.77.64.62:9300]","host":"elasticsearch-node62.fr","ip":"10.77.64.62","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node62.fr/10.77.64.62:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.62:9200]","publish_address":"inet[/10.77.64.62:9200]","max_content_length_in_bytes":104857600}},"AQ12RKDhTdiXbCshcSjWFg":{"name":"elasticsearch-node71.fr","transport_address":"inet[/10.77.64.71:9300]","host":"elasticsearch-node71.fr","ip":"10.77.64.71","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node71.fr/10.77.64.71:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.71:9200]","publish_address":"inet[/10.77.64.71:9200]","max_content_length_in_bytes":104857600}},"gB5etmzKSIibCMy7u1gwZA":{"name":"elasticsearch-node03.fr","transport_address":"inet[/10.77.64.3:9300]","host":"elasticsearch-node03.fr","ip":"10.77.64.3","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node03.fr/10.77.64.3:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.3:9200]","publish_address":"inet[/10.77.64.3:9200]","max_content_length_in_bytes":104857600}},"iTNeXxEFT4CxEoayR-RFbg":{"name":"elasticsearch-node65.fr","transport_address":"inet[/10.77.64.65:9300]","host":"elasticsearch-node65.fr","ip":"10.77.64.65","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node65.fr/10.77.64.65:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.65:9200]","publish_address":"inet[/10.77.64.65:9200]","max_content_length_in_bytes":104857600}},"2ZDlxyPDSXahDmg24t2E9Q":{"name":"elasticsearch-node90.fr","transport_address":"inet[/10.77.64.90:9300]","host":"elasticsearch-node90.fr","ip":"10.77.64.90","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node90.fr/10.77.64.90:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.90:9200]","publish_address":"inet[/10.77.64.90:9200]","max_content_length_in_bytes":104857600}},"euZgjhuIQ62BAYq1-gg9mg":{"name":"elasticsearch-node91.fr","transport_address":"inet[/10.77.64.91:9300]","host":"elasticsearch-node91.fr","ip":"10.77.64.91","version":"1.6.2","build":"6220391","http_address":"inet[elasticsearch-node91.fr/10.77.64.91:9200]","attributes":{"master":"false"},"http":{"bound_address":"inet[/10.77.64.91:9200]","publish_address":"inet[/10.77.64.91:9200]","max_content_length_in_bytes":104857600}}}}]
16/06/07 14:48:51 TRACE CommonsHttpTransport: Tx [GET]@[10.77.64.88:9200][public_chicago/_aliases] w/ payload [null]
16/06/07 14:48:51 TRACE CommonsHttpTransport: Rx @[10.77.95.200] [200-OK] [{"public_chicago":{"aliases":{}}}]
16/06/07 14:48:51 TRACE ScalaEsRDD: Creating splits for shards {Shard[state=STARTED, primary=true, node=7T3MeW98SFy9QxtR2Bu5gA, name=0, index=public_chicago]=Node[id=7T3MeW98SFy9QxtR2Bu5gA, name=elasticsearch-node49.fr, ipAddress=10.77.64.49, httpPort=9200, isClient=false, isData=true], Shard[state=STARTED, primary=true, node=2ZDlxyPDSXahDmg24t2E9Q, name=1, index=public_chicago]=Node[id=2ZDlxyPDSXahDmg24t2E9Q, name=elasticsearch-node90.fr, ipAddress=10.77.64.90, httpPort=9200, isClient=false, isData=true], Shard[state=STARTED, primary=true, node=Nq9MGM9DTJa6nCpwzOBcUQ, name=2, index=public_chicago]=Node[id=Nq9MGM9DTJa6nCpwzOBcUQ, name=elasticsearch-node47.fr, ipAddress=10.77.64.47, httpPort=9200, isClient=false, isData=true], Shard[state=STARTED, primary=false, node=XR3NEzi3RUWR9dJuWKF2DA, name=3, index=public_chicago]=Node[id=XR3NEzi3RUWR9dJuWKF2DA, name=elasticsearch-node45.fr, ipAddress=10.77.64.45, httpPort=9200, isClient=false, isData=true], Shard[state=STARTED, primary=false, node=E3PopHTCS7O3KDf_QgC4yA, name=4, index=public_chicago]=Node[id=E3PopHTCS7O3KDf_QgC4yA, name=elasticsearch-node60.fr, ipAddress=10.77.64.60, httpPort=9200, isClient=false, isData=true]}
16/06/07 14:48:51 INFO ScalaEsRDD: Reading from [public_chicago/CSV]
16/06/07 14:48:51 TRACE CommonsHttpTransport: Tx [GET]@[10.77.64.88:9200][public_chicago/CSV/_mapping] w/ payload [null]
16/06/07 14:48:52 TRACE CommonsHttpTransport: Rx @[10.77.95.200] [200-OK] [{"public_chicago":{"mappings":{"CSV":{"properties":{"arrest":{"type":"boolean"},"beat":{"type":"long"},"block":{"type":"string"},"casenumber":{"type":"string"},"communityarea":{"type":"long"},"date":{"type":"string"},"description":{"type":"string"},"district":{"type":"long"},"domestic":{"type":"boolean"},"fbicode":{"type":"string"},"geolocation":{"type":"string"},"id":{"type":"long"},"iucr":{"type":"string"},"latitude":{"type":"string"},"locationdescription":{"type":"string"},"longitude":{"type":"string"},"primarytype":{"type":"string"},"updatedon":{"type":"string"},"ward":{"type":"long"},"xcoordinate":{"type":"long"},"ycoordinate":{"type":"long"},"year":{"type":"long"}}}}}}]
16/06/07 14:48:52 INFO ScalaEsRDD: Discovered mapping {CSV=[arrest=BOOLEAN, beat=LONG, block=STRING, casenumber=STRING, communityarea=LONG, date=STRING, description=STRING, district=LONG, domestic=BOOLEAN, fbicode=STRING, geolocation=STRING, id=LONG, iucr=STRING, latitude=STRING, locationdescription=STRING, longitude=STRING, primarytype=STRING, updatedon=STRING, ward=LONG, xcoordinate=LONG, ycoordinate=LONG, year=LONG]} for [public_chicago/CSV]
16/06/07 14:48:52 DEBUG RestRepository: Closing repository and connection to Elasticsearch ...
16/06/07 14:48:52 TRACE CommonsHttpTransport: Closing HTTP transport to 10.77.64.88:9200
[Stage 0:>                                                          (0 + 5) / 5]
jbaiera commented 8 years ago

I'm assuming that you're running the tasks on a cluster and not locally. Could you post the same level of logging for some of the worker processes? Also, could you run jstack a few times for a thread dump on the executing worker processes to see if they're hung up on something? Thanks

ArcTheMaster commented 8 years ago

Hi @jbaiera, thank you for your reply. You're right, I'm working on a cluster (with more than 50 datanodes).

You can find below the logs of a Spark executor during a collect: 16/06/23 15:24:14 INFO executor.CoarseGrainedExecutorBackend: Got assigned task 4 16/06/23 15:24:14 INFO executor.Executor: Running task 0.0 in stage 4.0 (TID 4) 16/06/23 15:24:14 INFO executor.CoarseGrainedExecutorBackend: Got assigned task 8 16/06/23 15:24:14 INFO executor.Executor: Running task 4.0 in stage 4.0 (TID 8) 16/06/23 15:24:14 INFO broadcast.TorrentBroadcast: Started reading broadcast variable 4 16/06/23 15:24:14 INFO storage.MemoryStore: Block broadcast_4_piece0 stored as bytes in memory (estimated size 1007.0 B, free 1007.0 B) 16/06/23 15:24:14 INFO broadcast.TorrentBroadcast: Reading broadcast variable 4 took 30 ms 16/06/23 15:24:14 INFO storage.MemoryStore: Block broadcast_4 stored as values in memory (estimated size 1528.0 B, free 2.5 KB) 16/06/23 15:38:48 ERROR executor.Executor: Exception in task 4.0 in stage 4.0 (TID 8) org.elasticsearch.hadoop.rest.EsHadoopInvalidRequest: AuthException[org.apache.directory.api.ldap.model.exception.LdapException: The response queue has been emptied, no response was found.]; nested: LdapException[The response queue has been emptied, no response was found.]; nested: LdapException[TimeOut occurred]; at org.elasticsearch.hadoop.rest.RestClient.checkResponse(RestClient.java:478) at org.elasticsearch.hadoop.rest.RestClient.execute(RestClient.java:436) at org.elasticsearch.hadoop.rest.RestClient.execute(RestClient.java:426) at org.elasticsearch.hadoop.rest.RestClient.scroll(RestClient.java:496) at org.elasticsearch.hadoop.rest.RestRepository.scroll(RestRepository.java:454) at org.elasticsearch.hadoop.rest.ScrollQuery.hasNext(ScrollQuery.java:86) at org.elasticsearch.spark.rdd.AbstractEsRDDIterator.hasNext(AbstractEsRDDIterator.scala:43) at scala.collection.Iterator$class.foreach(Iterator.scala:727) at org.elasticsearch.spark.rdd.AbstractEsRDDIterator.foreach(AbstractEsRDDIterator.scala:10) at scala.collection.generic.Growable$class.$plus$plus$eq(Growable.scala:48) at scala.collection.mutable.ArrayBuffer.$plus$plus$eq(ArrayBuffer.scala:103) at scala.collection.mutable.ArrayBuffer.$plus$plus$eq(ArrayBuffer.scala:47) at scala.collection.TraversableOnce$class.to(TraversableOnce.scala:273) at org.elasticsearch.spark.rdd.AbstractEsRDDIterator.to(AbstractEsRDDIterator.scala:10) at scala.collection.TraversableOnce$class.toBuffer(TraversableOnce.scala:265) at org.elasticsearch.spark.rdd.AbstractEsRDDIterator.toBuffer(AbstractEsRDDIterator.scala:10) at scala.collection.TraversableOnce$class.toArray(TraversableOnce.scala:252) at org.elasticsearch.spark.rdd.AbstractEsRDDIterator.toArray(AbstractEsRDDIterator.scala:10) at org.apache.spark.rdd.RDD$$anonfun$collect$1$$anonfun$12.apply(RDD.scala:927) at org.apache.spark.rdd.RDD$$anonfun$collect$1$$anonfun$12.apply(RDD.scala:927) at org.apache.spark.SparkContext$$anonfun$runJob$5.apply(SparkContext.scala:1858) at org.apache.spark.SparkContext$$anonfun$runJob$5.apply(SparkContext.scala:1858) at org.apache.spark.scheduler.ResultTask.runTask(ResultTask.scala:66) at org.apache.spark.scheduler.Task.run(Task.scala:89) at org.apache.spark.executor.Executor$TaskRunner.run(Executor.scala:214) at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145) at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615) at java.lang.Thread.run(Thread.java:745) 16/06/23 15:38:54 INFO executor.CoarseGrainedExecutorBackend: Got assigned task 11 16/06/23 15:38:54 INFO executor.Executor: Running task 1.1 in stage 4.0 (TID 11)

The AuthException is very strange because a curl like the following will work: curl -XGET "http://datanode81.domain.fr:9200/public_chicago/CSV/_search?q=*&pretty" -u shfs3453

This is also the same if I restrict the number of documents returned by Spark, through a take for example (I give the example on Spark but it's the same behavior with the others): RDD1.take(10000).foreach(println)

The take produces a strack trace like this one: 16/06/23 14:58:06 INFO executor.CoarseGrainedExecutorBackend: Got assigned task 1 16/06/23 14:58:06 INFO executor.Executor: Running task 0.0 in stage 1.0 (TID 1) 16/06/23 14:58:06 INFO executor.Executor: Fetching http://10.77.95.201:55596/jars/elasticsearch-hadoop.jar with timestamp 1466686424868 16/06/23 14:58:06 INFO util.Utils: Fetching http://10.77.95.201:55596/jars/elasticsearch-hadoop.jar to /mnt/hd6/hadoop/yarn/local/usercache/shfs3453/appcache/application_1461692698792_81063/spark-88497755-37b1-4b4c-bda2-63076e6b99e6/fetchFileTemp3865958073615203249.tmp 16/06/23 14:58:06 INFO util.Utils: Copying /mnt/hd6/hadoop/yarn/local/usercache/shfs3453/appcache/application_1461692698792_81063/spark-88497755-37b1-4b4c-bda2-63076e6b99e6/-17184871161466686424868_cache to /mnt/hd1/hadoop/yarn/local/usercache/shfs3453/appcache/application_1461692698792_81063/container_1461692698792_81063_01_000003/./elasticsearch-hadoop.jar 16/06/23 14:58:06 INFO executor.Executor: Adding file:/mnt/hd1/hadoop/yarn/local/usercache/shfs3453/appcache/application_1461692698792_81063/container_1461692698792_81063_01_000003/./elasticsearch-hadoop.jar to class loader 16/06/23 14:58:06 INFO broadcast.TorrentBroadcast: Started reading broadcast variable 1 16/06/23 14:58:06 INFO storage.MemoryStore: Block broadcast_1_piece0 stored as bytes in memory (estimated size 1057.0 B, free 1057.0 B) 16/06/23 14:58:06 INFO broadcast.TorrentBroadcast: Reading broadcast variable 1 took 116 ms 16/06/23 14:58:07 INFO storage.MemoryStore: Block broadcast_1 stored as values in memory (estimated size 1560.0 B, free 2.6 KB) 16/06/23 14:58:28 INFO executor.Executor: Finished task 0.0 in stage 1.0 (TID 1). 459989 bytes result sent to driver

jbaiera commented 7 years ago

This is a fairly old ticket and the conversation has seemed to trail off. Based on previous discussion it seems that there's a problem in communication between ES and LDAP that is causing the requests to hang for long periods. If this is still an issue we can start up the conversation again. Closing this until then.