/try-elk-postgres

DBのデータを全文検索したい

Primary LanguageJava

Links

全般

Elasticsearch

Usage

docker-compose up
curl -X GET "localhost:9200/zipcode/_search?pretty" -H 'Content-Type: application/json' -d'
{
  "query": {
    "match": {
      "city": "門真"
    }
  }
}
'

Kibana

http://localhost:5601

PostgreSQL

docker container exec -it postgres psql -U postgres -d postgres