Skip to content

This is for documenting the lessons and knowledge gained out of using Elastic Search from real world projects

License

Notifications You must be signed in to change notification settings

yubeiluo/elasticsearch-findings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 

Repository files navigation

elasticsearch-findings

This is for documenting the lessons and knowledge gained out of using Elastic Search from real world projects�

Findings

  • About the indexing operation and real time GET and index refresh rate

    • The index is not updated asynchronously, when you index data its applied to the shard and the replicas in a sync manner including writing to a transaction log. A "fresh" view of the content to be searchable is opened every 1 second by default (thats NRT).
    • [NRT-search-with-elastic-search][1]
    • [Realtime GET #1060][2]
  • About the stored fields and _source document

    • That's exactly what elasticsearch does for you when a field is not stored (default) and the _source field is enabled (default too).
    • [why-do-i-need-storeyes-in-elasticsearch][3]
  • JetSlide Uses Elastic Search as Database

    • [jetslide-uses-elasticsearch-as-database][4]
  • When and why to use routing in ES for indexing/searching?

    • [Over-allocation of shards][5]
    • [When-Why-to-use-Routing-for-indexing-searching][6]
    • [some-ES-stats-at-yfrog-com][7]
  • Index alias use cases

    • [I'm loving ElasticSearch index alias feature][8]
  • Aggregations

  • Null Values

  • Scroll

Geo Spatial Search

  1. Spatial Search ElasticSearch tutorial
  2. Using Elastic Search for geo-spatial search

Videos

APIs & Endpoints

  • View the current settings for all indexes curl -XGET 'localhost:9200/_settings?pretty=true'

SysAdmins

How to scale and achieve HA?

  1. How we optimized 100 sec elasticsearch queries to be under a sub second
  2. Elasticsearch in Production
  3. Thoughts on Launching and Scaling Elasticsearch

Plugins

  1. elasticsearch-head
  2. elasticseach-hq

Percolators

  1. redesigned percolator
  2. introduction to percolator
  3. Percolator for alerts between specific time intervals

Misc

  1. Exact Substring Searches in ElasticSearch

About

This is for documenting the lessons and knowledge gained out of using Elastic Search from real world projects

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published