-
Notifications
You must be signed in to change notification settings - Fork 88
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[feature] Support configurations so it behaves like JDBC input #93
Comments
+1 |
We think this will solve a couple problems for us. Curious if anyone has a PR or modifications they have made that implement this that they can share. |
I have a same problem. I'm having some problems with ElasticSearch. Keeping it short, I need to look into my logs and normalize them in various indexes. |
I have same problem. |
Any updates on this? We really needs this |
+1 |
1 similar comment
+1 |
+1. Anyone found a reasonable solution for this issue? |
When I ran into this issue in 2019 I ended up creating a pipeline that read from elasticsearch and then updated the documents read in elasticsearch to have a "processed" field set to true (in addition to the other processing I needed). The elasticsearch input query would exclude documents with processed set to true. Giving me the ability to only process data once at the expense of writing each document twice. |
Currently, the ES input plugin has no way to pick up from where it left off last time it executed, just as the JDBC input does with the
sql_last_value
value.I propose a set of configurations that makes ES input plugin query from a past known
@timestamp
(by default)The text was updated successfully, but these errors were encountered: