ahh, maybe that's why) I just went ahead and installed it on 2nd node:
# ./bin/elasticsearch-plugin install ingest-geoip
-> Downloading ingest-geoip from elastic
[=================================================] 100%
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
@ WARNING: plugin requires additional permissions @
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
* java.lang.RuntimePermission accessDeclaredMembers
See http://docs.oracle.com/javase/8/docs/technotes/guides/security/permissions.html
for descriptions of what these permissions allow and the associated risks.
Continue with installation? [y/N]y
-> Installed ingest-geoip
#
GET /_nodes/ingest
:
# curl --request GET localhost:9200/_nodes/ingest?pretty
{
"_nodes" : {
"total" : 2,
"successful" : 2,
"failed" : 0
},
"cluster_name" : "xxxxx",
"nodes" : {
"P3GVaQ1zRMCcbQr5yYnVtA" : {
"name" : "7pvelk02.xxxxx.local",
"transport_address" : "xx.xx.xxx.xxx:9300",
"host" : "xx.xx.xxx.xxx",
"ip" : "xx.xx.xxx.xxx",
"version" : "6.0.0",
"build_hash" : "8f0685b",
"roles" : [
"master",
"data",
"ingest"
],
"ingest" : {
"processors" : [
{
"type" : "append"
},
{
"type" : "convert"
},
{
"type" : "date"
},
{
"type" : "date_index_name"
},
{
"type" : "dot_expander"
},
{
"type" : "fail"
},
{
"type" : "foreach"
},
{
"type" : "grok"
},
{
"type" : "gsub"
},
{
"type" : "join"
},
{
"type" : "json"
},
{
"type" : "kv"
},
{
"type" : "lowercase"
},
{
"type" : "remove"
},
{
"type" : "rename"
},
{
"type" : "script"
},
{
"type" : "set"
},
{
"type" : "sort"
},
{
"type" : "split"
},
{
"type" : "trim"
},
{
"type" : "uppercase"
}
]
}
},
"liqXQP8OTA6H6kamVxmtyw" : {
"name" : "7pvelk01.xxxxx.local",
"transport_address" : "xx.xx.xxx.xxx:9300",
"host" : "xx.xx.xxx.xxx",
"ip" : "xx.xx.xxx.xxx",
"version" : "6.0.0",
"build_hash" : "8f0685b",
"roles" : [
"master",
"data",
"ingest"
],
"ingest" : {
"processors" : [
{
"type" : "append"
},
{
"type" : "convert"
},
{
"type" : "date"
},
{
"type" : "date_index_name"
},
{
"type" : "dot_expander"
},
{
"type" : "fail"
},
{
"type" : "foreach"
},
{
"type" : "geoip"
},
{
"type" : "grok"
},
{
"type" : "gsub"
},
{
"type" : "join"
},
{
"type" : "json"
},
{
"type" : "kv"
},
{
"type" : "lowercase"
},
{
"type" : "remove"
},
{
"type" : "rename"
},
{
"type" : "script"
},
{
"type" : "set"
},
{
"type" : "sort"
},
{
"type" : "split"
},
{
"type" : "trim"
},
{
"type" : "uppercase"
}
]
}
}
}
}
#