Last active
June 1, 2016 21:16
-
-
Save srikanthjeeva/bfde0f568fa35282f34a36272e38af4a to your computer and use it in GitHub Desktop.
Disable full text search for an Elasticsearch Field
This file contains 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
//PUT indexName | |
{ | |
"mappings": { | |
"type": { | |
"properties": { | |
"filepath": { | |
"type": "string", | |
"index": "not_analyzed" | |
} | |
} | |
} | |
} | |
} | |
// (or) | |
//PUT indexName/_mapping/type | |
{ | |
"properties": { | |
"filepath": { | |
"type": "string", | |
"index": "not_analyzed" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment