We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
drop_on_abort
Is your feature request related to a problem? Please describe.
As reported on the Discord https://discord.com/channels/908281611840282624/915644818988863558/1335798024382971924
Quickwit always record a warn log on explicitly aborted transform with abort expression. But users may want to drop it.
abort
Describe the solution you'd like
Originally there is drop_on_abort (default: true) option in Vector configuration.
https://vector.dev/highlights/2021-04-21-vrl-abort/
I'd like to suggest adding the same to Quickwit.
Describe alternatives you've considered
User could set RUST_LOG to such as quickwit_indexing::actors::vrl_processing=error to avoid the warning.
RUST_LOG
quickwit_indexing::actors::vrl_processing=error
But it's far from ideal solution because it'll not inform user what is real problems or intentionally aborted ones.
The text was updated successfully, but these errors were encountered:
Add drop_on_abort option to transform config
35e51a8
Closes quickwit-oss#5664
No branches or pull requests
Is your feature request related to a problem? Please describe.
As reported on the Discord https://discord.com/channels/908281611840282624/915644818988863558/1335798024382971924
Quickwit always record a warn log on explicitly aborted transform with
abort
expression. But users may want to drop it.Describe the solution you'd like
Originally there is
drop_on_abort
(default: true) option in Vector configuration.https://vector.dev/highlights/2021-04-21-vrl-abort/
I'd like to suggest adding the same to Quickwit.
Describe alternatives you've considered
User could set
RUST_LOG
to such asquickwit_indexing::actors::vrl_processing=error
to avoid the warning.But it's far from ideal solution because it'll not inform user what is real problems or intentionally aborted ones.
The text was updated successfully, but these errors were encountered: