Skip to content

Instantly share code, notes, and snippets.

@jperras
Created May 14, 2011 21:22
Show Gist options
  • Save jperras/972655 to your computer and use it in GitHub Desktop.
Save jperras/972655 to your computer and use it in GitHub Desktop.
elasticsearch.json
{
"cluster": {"name": "testcluster"},
"cloud": {
"aws": {
"access_key": "<redacted>",
"secret_key": "<redacted>"
}
},
"discovery": { "type": "ec2" },
"index": {
"analysis": {
"analyzer": {
"std": {
"type": "custom",
"tokenizer": "standard",
"filter": ["standard", "lowercase", "stop", "asciifolding", "porterStem"]
},
"names": {
"type": "custom",
"tokenizer": "standard",
"filter": ["standard", "lowercase", "asciifolding"]
},
"tags": {
"type": "custom",
"tokenizer": "standard",
"filter": ["standard", "lowercase", "asciifolding"]
}
}
}
}
}
@jperras
Copy link
Author

jperras commented May 14, 2011

[2011-05-14 17:07:32,086][INFO ][node                     ] [Everyman] {elasticsearch/0.14.2}[6100]: initializing ...
[2011-05-14 17:07:32,092][INFO ][plugins                  ] [Everyman] loaded [cloud-aws]
[2011-05-14 17:07:35,821][INFO ][node                     ] [Everyman] {elasticsearch/0.14.2}[6100]: initialized
[2011-05-14 17:07:35,821][INFO ][node                     ] [Everyman] {elasticsearch/0.14.2}[6100]: starting ...
[2011-05-14 17:07:35,980][INFO ][transport                ] [Everyman] bound_address {inet[/0:0:0:0:0:0:0:0:9300]}, publish_address {inet[/10.211.151.144:9300]}
[2011-05-14 17:08:05,995][WARN ][discovery                ] [Everyman] waited for 30s and no initial state was set by the discovery
[2011-05-14 17:08:05,996][INFO ][discovery                ] [Everyman] revjam/uDuhQbK7RTK6BQP-Jd4idg
[2011-05-14 17:08:05,998][INFO ][http                     ] [Everyman] bound_address {inet[/0:0:0:0:0:0:0:0:9200]}, publish_address {inet[/10.211.151.144:9200]}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment