Posts

Setup Elasticsearch and Kibana use Docker windows

 https://www.youtube.com/watch?v=BYcXvhJTDpg  docker-compose.yml version: '3.7' services:   elasticsearch:     image: docker.elastic.co/elasticsearch/elasticsearch:7.4.0     container_name: elasticsearch     environment:       - node.name=elasticsearch       - cluster.name=datasearch       - bootstrap.memory_lock=true       - "ES_JAVA_OPTS=-Xms512m -Xmx512m"       - cluster.initial_master_nodes=elasticsearch     ulimits:       memlock:         soft: -1         hard: -1     volumes:       - esdata:/usr/share/elasticsearch/data     ports:       - 9200:9200     networks:       - elk...

Analyzer

  https://viblo.asia/p/elasticsearch-va-qua-trinh-phan-tich-du-lieu-cac-thanh-phan-cua-mot-analyzer-XL6lAvjg5ek

Joining queries

  https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-nested-query.html

Query string query

  https://www.elastic.co/guide/en/elasticsearch/reference/current/query-dsl-query-string-query.html