Commit 33d3af7e authored by Ewen Cheslack-Postava's avatar Ewen Cheslack-Postava
Browse files

Merge branch 'master' into 0.10.0.0

parents 7591fecd c51cd00c
Loading
Loading
Loading
Loading
+3 −8
Original line number Diff line number Diff line
@@ -82,17 +82,12 @@ is available in Elasticsearch::
       "_id" : "test-elasticsearch-sink+0+0",
       "_score" : 1.0,
       "_source" : {
         "_children" : {
           "f1" : {
             "_value" : "value1"
           }
         },
         "_nodeFactory" : {
           "_cfgBigDecimalExact" : false
         }
         "f1" : "value1"
       }
     }]
   }
  }

Features
--------
The Elasticsearch connector offers a bunch of features:
+1 −1
Original line number Diff line number Diff line
@@ -62,7 +62,7 @@ public class HttpClient implements Client<Response> {
      } catch (IOException e) {
        callback.onFailure(e);
      }
      Index index = new Index.Builder(data)
      Index index = new Index.Builder(data.toString())
          .index(request.getIndex())
          .type(request.getType())
          .id(request.getId())