Skip to content

Instantly share code, notes, and snippets.

@katzefudder
Last active June 20, 2020 09:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save katzefudder/ebd70b7d6e7cd1aa9dfa5ab1daed99c1 to your computer and use it in GitHub Desktop.
Save katzefudder/ebd70b7d6e7cd1aa9dfa5ab1daed99c1 to your computer and use it in GitHub Desktop.
Elasticsearch with images and fuzzy search
docker run --rm -d --name elasticsearch -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" elasticsearch:7.8.0
{
"id": 1,
"name" : "20200516_Fanclub_RT_001",
"date": "20200301",
"headline" : "Hier steht eine Headline",
"description" : "Fanclub Rote Teufel, v.l. Steffen Leitner, Andrea-Nikolaus-Schnarr, Peter Weber, Franzisco Lucio Tippmann, Bad Nauheim, Colonel-Knight-Stadion, 01.03.20",
"imgsrc" : "/app/images/gallery/20200516_Fanclub_RT_001.jpg",
"thumb_small" : "/app/images/thumbs_min/20200516_Fanclub_RT_001.jpg",
"thumb_medium" : "/app/images/thumbs_med/20200516_Fanclub_RT_001.jpg",
"thumb_maximum" : "/app/images/thumbs_max/20200516_Fanclub_RT_001.jpg",
"keywords": [
"19/20",
"2019/20",
"CKS",
"Colonel-Knight-Stadion",
"DEL 2",
"DEL2",
"EC Bad Nauheim",
"Eishockey",
"Eissport",
"Fanpakete",
"Hockey",
"Kurstadt",
"Mannschaft",
"Rote Teufel",
"Sason 2019/2020",
"Stadion",
"T-Shirt Aktion",
"Team",
"Wetterau",
"Winter",
"Wintersport",
"icehockey"
],
"PhotoSource": "https://example.com"
}
curl --request PUT \
--url http://localhost:9200/gallery \
--header 'content-type: application/json' \
--data '{
"mappings": {
"properties": {
"name": { "type": "text" },
"date": { "type": "integer" },
"headline": { "type": "text" },
"description": { "type": "text" },
"imgsrc": { "type": "text" },
"thumbs_small": { "type": "text" },
"thumbs_medium": { "type": "text" },
"thumbs_maximum": { "type": "text" },
"keywords": {"type": "keyword"}
}
}
}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment