1

I am using Logstash to send data to Elasticsearch using jdbc as input which takes data from MySQL table. Everything is working fine, but I have an issue that whenever I delete the index I don't get the same data back which was in that index. Does Logstash maintain a registry file like Filebeat?

How do I get back the data? Is there any way?

Any help would be appreciated.

Mark Rotteveel
  • 100,966
  • 191
  • 140
  • 197
Aman Prakash
  • 340
  • 4
  • 15

1 Answers1

0

Try clean_run=> true in your logstash input.This will set sql_last_value to Jan 1, 1970, or 0.

dave Miller
  • 304
  • 1
  • 6
  • 16