Reputation: 127
I am using logstash 2.3 in an Ubuntu 14.04 , not as a service ( just extracted the tar.gz ). I successfully ran logstash jdbc input plug-in and fetched some data from my SQL server. Now I wanna re run the same, I forgot to set record_last_run
to false during the test run.
When I try to re run it logstash is still standing. How can I get it to read the data again?
I tried to locate .logstash_jdbc_last_run
with no luck in /home , /root and even /tmp. When I echo $USER_HOME
it shows an empty line.
Upvotes: 0
Views: 2596
Reputation: 4655
You can try to set clean_run
to true
.
clean_run
- Value type is boolean
- Default value is false
Whether the previous run state should be preserved
Upvotes: 1