[ElasticSearch] 데이터 조회(Search)
youngjun._.
실습 환경 💡 Elasticsearch 7.9.0 💡 Windows 10 💡 Git Bash ElasticSearch에 메인 기능이라고 볼 수 있는 Search를 실습해보자. 먼저 sample 데이터를 bulk해보자. sample 데이터 소스 { "index" : { "_index" : "basketball", "_type" : "record", "_id" : "1" } } {"team" : "Chicago Bulls","name" : "Michael Jordan", "points" : 30,"rebounds" : 3,"assists" : 4, "submit_date" : "1996-10-11"} { "index" : { "_index" : "basketball", "_type" : "record", "..