Is it possible to load fresh data in elasticsearch index again and again using logstash

Hi,
I am new to logstash and elasticsearch. I have a query.
I have a csv file and the data in the file will keep on changing after every 3 hours. Is it possible to load fresh data to elasticsearch index everytime and delete the entire old data of the index using logstash.

Hey,

yes that is possible. I think the easiest way to go would be to index in a new index everytime you do an import, and have an alias point to the latest index, after indexing is finished (the alias pointing cannot be done with logstash however).

Hope this helps.

--Alex

Thankyou for your reply.
But in my scenario the index name should be fixed.
Is there any other way?

--Amrita

you would need to delete that index manually before starting logstash. but then this would work as well.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.