Skip to content

Instantly share code, notes, and snippets.

@CarlosLannister
Created March 9, 2021 19:20
Show Gist options
  • Save CarlosLannister/547db010234c3d2d70d1b6ea86036466 to your computer and use it in GitHub Desktop.
Save CarlosLannister/547db010234c3d2d70d1b6ea86036466 to your computer and use it in GitHub Desktop.
Update Elastic Mapping
curl --user elastic:medium -X PUT "localhost:9200/twitter/_mapping" -H 'Content-Type: application/json' -d'
{
"properties": {
"name": {
"properties": {
"last": {
"type": "text"
}
}
},
"user_id": {
"type": "keyword"
}
}
}
'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment