Created
May 14, 2011 21:22
-
-
Save jperras/972655 to your computer and use it in GitHub Desktop.
elasticsearch.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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"] | |
} | |
} | |
} | |
} | |
} |
Author
jperras
commented
May 14, 2011
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment