merge 10

2017.09.18 - 번역 - How many shards should I have in my Elasticsearch cluster? ...

Elasticsearch is a very versatile platform, that supports a variety of use cases, and provides great flexibility around data organisation and replication strategies. This flexibility can however sometimes make it hard to determine up-front how to best organize your data into indices and shards, especially if you are new to the Elastic Stack. While suboptimal choices will not necessarily cause pr..

Blog 2019.01.07

2017.08.21 - 번역 - Intorducing Index Sorting in Elasticsearch 6.0 ...

In Elasticsearch 6.0 we’re introducing a new feature called Index Sorting. Users can now optimize Elasticsearch indexes to store documents on disk in a specific order. We’re very excited for Index Sorting, as it’s another useful tool in optimizing Elasticsearch performance! Elasticsearch 6.0 에서 Index Sorting 이라 불리는 새로운 기능을 도입하였다. 이제 사용자는 document를 disk에 특정 순서로 저장하여 Elasticsearch index를 최적화할 수 있다..

Blog 2019.01.07

2017.01.16 - 번역 - “Hot-Warm” Architecture in Elasticsearch 5.x ...

When using elasticsearch for larger time data analytics use cases, we recommend using time-based indices and a tiered architecture with 3 different types of nodes (Master, Hot-Node and Warm-Node), which we refer to as the "Hot-Warm" architecture. Each node has their own characteristics, which are described below.더 큰 시간 data 분석 사례에 대해 elasticsearch를 사용할 경우, 시간 기반의 index와 3가지 다른 유형의 node(Master, H..

Blog 2019.01.07

2015.11.03 - 번역 - Performance Considerations for Elasticsearch 2.0 Indexing ...

A little over a year ago I described how to maximize indexing throughput with Elasticsearch, but a lot has changed since then so here I explain the changes that affect indexing performance in Elasticsearch 2.0.0.약 1년전, Elasticsearch에서 처리량을 최대화하는 방법에 대해 설명한 적이 있다. 그런데, 그때에 비해 많은 것이 변경되어, 여기에서 Elasticsearch 2.0.0 에서 index 성능에 영향을 미치는 변경 사항에 대해 설명한다.Store throttling is now automaticPrior to 2.0.0, ..

Blog 2019.01.06

2014.09.03 - 번역 - Performance Considerations for Elasticsearch Indexing ...

Running Elasticsearch 2.0? Check out this updated post about performance considerations for Elasticsearch 2.0 indexing. Elasticsearch 2.0을 운영 중이라면? Elasticsearch 2.0 indexing에 대한 성능 고려 사항에서 update된 post를 확인해 보자. Elasticsearch users have delightfully diverse use cases, ranging from appending tiny log-line documents to indexing Web-scale collections of large documents, and maximizing indexing thro..

Blog 2019.01.06

2013.09.16 - 번역 - Elasticsearch from the Bottom Up, Part 1 ...

UPDATE: This article refers to our hosted Elasticsearch offering by an older name, Found. Please note that Found is now known as Elastic Cloud.이 게시물은 기존에 Found라는 이름으로 제공된 Elasticsearch 서비스에 관한 것이다. Found은 이제 Elasticsearch Cloud로 알려져 있다.In this article series, we look at Elasticsearch from a new perspective. We'll start at the "bottom" (or close enough!) of the many abstraction levels, and gradua..

Blog 2019.01.05

5. Tune for search speed

Give memory to the filesystem cache Elasticsearch heavily relies on the filesystem cache in order to make search fast. In general, you should make sure that at least half the available memory goes to the filesystem cache so that Elasticsearch can keep hot regions of the index in physical memory.Elasticsearch는 search 속도를 빠르게 하기 위해, filesystem cache에 많이 의존한다. 일반적으로, Elasticsearch가 index 중 많이 사용하는 ..