Questions tagged [ilm]
26 questions
3
votes
0 answers
Why ILM in ElasticSearch slowly change every rollover action status
I have elastic search 7.7.1 with ILM enabled from logstash, i created an ILM policy with hot and delete phase with 2 seconds everyone of them and 48gb for hot phase. So my question is. Why Elasticsearch very slowly moving the indexses from Hot phase…

SolarCore
- 133
- 2
- 16
2
votes
1 answer
Index policy or Index template for Elasticsearh
I have elasticsearch cluster for storing logs, and i have indices like this
logs-2021.01.01
logs-2021.01.02
logs.2021.01.03 ...etc
so indices creates at daily basis, and i have index template for this indices
PUT _index_template/template_1
{
…

noze_potato
- 157
- 4
- 14
2
votes
0 answers
How properly rollover indices in elasticsearch
I harvest logs with filebeat from all docker containers, sending them to logstash and from logstash are forwarded to elasticsearch. I would like to rollover my indices, that are automatically created, if they are too big or too old. There are few…

dorinand
- 1,397
- 1
- 24
- 49
2
votes
1 answer
Elasticsearch ILM terminologies and concepts
I have started reading elasticsearch life cycle management and trying to understand how ILM works. I understood some terminologies like below
Indices - The actual data stores in it as "index"
Index pattern - To select multiple indices
Index…

Veerendra K
- 2,145
- 7
- 32
- 61
2
votes
1 answer
Elasticsearch Opendistro ISM: What approach can be taken to apply the rollover alias and policy to new indices, automatically?
When ISM policies are used, the index policy settings need to be applied during index creation but those settings are lost once a new index is created from the rollover action applied by a certain stage/phase in the policy.
For instance, having…

ericson.cepeda
- 1,875
- 2
- 16
- 15
1
vote
1 answer
Can you set auto deletion for every bucket and every future bucket on MinIO
I'm using MinIO and want to set a service-wide lifecycle policy that will delete every bucket that's old than a specific period of time (In my case it's 1 day).
I also want this policy to work on buckets that will be created at the future
I wonder…

user16713791
- 59
- 3
1
vote
0 answers
Best pratices for for ilm and dynamic indices in logstash elasticsearch output plugin
I am struggeling to find a suitable way to handle ilm rollover on dynamic indices from a logstash pipeline to elasticsearch.
The pipeline looks like that:
input {
pipeline {
address => "some_pipeline_name"
}
}
output {
elasticsearch {
…

sbstnmrwld
- 36
- 5
1
vote
1 answer
Index life cycle policy
I would like to create a Hot-warm policy , and the index should rollover when the index is 20Gb of size or max_age equal to 30days BUT, if the size condition occur before the age condition, the index should rollover but the data have to stay in the…

abdelhalim
- 165
- 2
- 12
1
vote
0 answers
Packetbeat does not point to a write index
I tried to edit packetbeat Policy, and then from index management on Kibana I removed the policy from that index and then added it again (to take on consideration the new configuration),
unfortunately I a getting a lifecycle…

abdelhalim
- 165
- 2
- 12
0
votes
1 answer
Index historical time-series data into an Elasticsearch data stream - ILM
My use case is the following : I have continuously produced time-series data + one year history. I want to index them into Elasticsearch in such a way that data is deleted after one year (according to the @timestamp field).
Data streams seem to be…

qcha
- 523
- 1
- 5
- 19
0
votes
1 answer
How to Customize Index name in ILM(index lifecycle management) of Elastic Search?
I am using ILM (Index Lifecycle Management) of Elastic to Index my live data(Email recieved).
The policy is created to rollover to new index on every 30 days.
The Index template is : WikiEmail-*.
So, Index is getting created every 30 days named as :…

siddhartha chakraborty
- 425
- 1
- 5
- 12
0
votes
1 answer
Can I use ILM for deleting indices which are old and do not belong to an alias
I am looking for a way to periodically clean up Elastic search indices which are older than X days and do not belong to an alias.
I know that ILM can be used for "older than" part, but is it possible to also configure it somehow so it can check and…

Shobhit Tyagi
- 93
- 1
- 9
0
votes
1 answer
How to configure Elasticsearch ILM rollover to create indexes tiwh date?
My data source write index MyIndex-%{+YYYY.MM.dd.HH.mm}, but data in index in each day to big.
I need rollover to create new index if data more than 10gb
For example
MyIndex-2022.12.23-1 size 10GB
MyIndex-2022.12.23-2 size…

user411906
- 1
- 1
0
votes
0 answers
Problem with rotating (ILM) Cloudflare indices on ELK cluster
The problem I have is that my Cloudflare indices report the following ILM errors:
on index with alias: illegal_argument_exception: rollover target [cloudflare] does not point to a write index
on index without alias: illegal_argument_exception:…

bdzkv
- 1
- 1
0
votes
2 answers
Is it possible to define two ILM policies in single filebeat.yml
I'd like to know if it is feasible to configure FileBeat in following way:
I have single rabbitmq with several MQTT topics.
I'd like to save messages from topics foo/# in index index-foo and messages from topics bar/# in index index-bar in order to…

Kragh
- 170
- 1
- 13