-
Notifications
You must be signed in to change notification settings - Fork 3.6k
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
Add backfill option to into clause parser #662 #682
Conversation
Is it possible to do a structure with this so backfill isn't named in the parser directly? Something more along the lines of: it will parse a function call with any number of parameters. Then use that function name (in this case backfill) to map to a collection of continuous query modification functions. Seems like it would be nice to make other functions or modifications to backfill easier later. Although maybe I'm over thinking things? |
This is my first stab at this and I was going by your query sample in #662 |
I think new features should be discussed on the mailing list first, especially when it touches the query language or any other user facing api. I don't think we need to have a generic solution at the moment. Instead i prefer a much simpler syntax with |
I just added continuous query hooks, let me know what you guys think. |
Thanks @dhammika! I think it looks good. I would update the backfill to be |
Signed-off-by: Dhammika Pathirana <dhammika@gmail.com>
Signed-off-by: Dhammika Pathirana <dhammika@gmail.com>
Signed-off-by: Dhammika Pathirana <dhammika@gmail.com>
@dhammika can you sign the CLA. You can find the CLA on the website here http://influxdb.com/community/cla.html |
Once the cla is signed, I'll merge this into master |
@jvshahid I just submitted the CLA. |
Patch to add backfill flag to parser. I'll send a separate patch to hook this up with continuous query logic.
Signed-off-by: Dhammika Pathirana dhammika@gmail.com