consistency is not always a thing, ignore it...
diff --git a/src/plugins/brokers/kibbleES.py b/src/plugins/brokers/kibbleES.py
index fd3790e..e948a7c 100644
--- a/src/plugins/brokers/kibbleES.py
+++ b/src/plugins/brokers/kibbleES.py
@@ -193,7 +193,6 @@
                 dbname += "_%s" % js['doctype']
                 js_arr.append({
                     '_op_type': 'update' if js.get('upsert') else 'index',
-                    '_consistency': 'quorum',
                     '_index': dbname,
                     '_type': '_doc',
                     '_id': js['id'],
@@ -203,7 +202,6 @@
             else:
                 js_arr.append({
                     '_op_type': 'update' if js.get('upsert') else 'index',
-                    '_consistency': 'quorum',
                     '_index': dbname,
                     '_type': js['doctype'],
                     '_id': js['id'],