state 3

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

2014.10.15 - 번역 - Elasticsearch from the Top Down ...

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로 알려져 있다.The previous article in this series, Elasticsearch from the Bottom Up, covered essential data structures within a single shard. In this article, we will look at t..

Blog 2019.01.06

1-10-02. Deleting an Index

To delete an index, use the following request:index를 삭제하기 위해서, 아래 request를 사용한다.DELETE /my_indexYou can delete multiple indices with this:아래와 같이, 다수의 indices를 지울 수도 있다.DELETE /index_one,index_two DELETE /index_*You can even delete all indices with this:_모든_ indices를 지울 수도 있다.DELETE /_all DELETE /*For some, the ability to delete all your data with a single command is a very scary prospect. If you..