-
I was doing some local testing (using v0.7.1 of the agent) to see what execution plans look like for different data sources, standing up a backend that simply logs the requests from the Spline agent. When running a Spark job that reads from a JDBC source, all of the connection parameters were included in the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
There is a spline.postProcessingFilter.composite.filters=dsPasswordReplace See https://github.com/AbsaOSS/spline-spark-agent/blob/release/0.7.1/core/src/main/resources/spline.default.properties#L104 for details. I think, we need to enabled it by default in the next major release. |
Beta Was this translation helpful? Give feedback.
-
Confirmed fix in latest release. Thanks for turning that around so quickly.
… On Dec 22, 2021, at 10:22 AM, Alex Vayda ***@***.***> wrote:
Should be fixed in 0.7.2 - 837e76a
Please check.
—
Reply to this email directly, view it on GitHub, or unsubscribe.
Triage notifications on the go with GitHub Mobile for iOS or Android.
You are receiving this because you authored the thread.
|
Beta Was this translation helpful? Give feedback.
There is a
DataSourcePasswordReplacingFilter
that removes sensitive information from the agent output. The filter isn't enabled by default, so you need to enable it explicitly via agent configuration. For example:spline.postProcessingFilter.composite.filters=dsPasswordReplace
See https://github.com/AbsaOSS/spline-spark-agent/blob/release/0.7.1/core/src/main/resources/spline.default.properties#L104 for details.
I think, we need to enabled it by default in the next major release.