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
Currently we support encryption and decryption of fixed key fields.
https://github.com/apache/seatunnel/blob/dev/docs/en/connector-v2/Config-Encryption-Decryption.md
https://github.com/apache/seatunnel/blob/dev/seatunnel-core/seatunnel-core-starter/src/main/java/org/apache/seatunnel/core/starter/utils/ConfigShadeUtils.java#L50
input
env { parallelism = 1 shade.identifier = "base64" } source { test-source1 { username = "c2VhdHVubmVs" password = "c2VhdHVubmVsX3Bhc3N3b3Jk" database-name = "inventory_vwyw0n" table-name = "products" base-url = "jdbc:mysql://localhost:56725" # f1 = "c2VhdHVubmVs" config1.f1 = "c2VhdHVubmVs" config2.list = ["c2VhdHVubmVsX3Bhc3N3b3Jk", "c2VhdHVubmVsX3Bhc3N3b3Jk", "c2VhdHVubmVsX3Bhc3N3b3Jk"] config3 = { f2 = "c2VhdHVubmVs" } } } sink { console { } }
env { parallelism = 1 shade.identifier = "base64" } source { test-source1 { username = "seatunnel" password = "seatunnel_password" database-name = "inventory_vwyw0n" table-name = "products" base-url = "jdbc:mysql://localhost:56725" # current unsuported custom f1 = "c2VhdHVubmVs" config1.f1 = "c2VhdHVubmVs" config2.list = ["c2VhdHVubmVsX3Bhc3N3b3Jk", "c2VhdHVubmVsX3Bhc3N3b3Jk", "c2VhdHVubmVsX3Bhc3N3b3Jk"] config3 = { f2 = "c2VhdHVubmVs" } } } sink { console { } }
We expect to be able to customize the encryption and decryption field list after the change
env { parallelism = 1 shade.identifier = "base64" shade.options = ["username", "password", "f1", "config1.f1 ", "config2.list", "f2"] } source { test-source1 { username = "c2VhdHVubmVs" password = "c2VhdHVubmVsX3Bhc3N3b3Jk" database-name = "inventory_vwyw0n" table-name = "products" base-url = "jdbc:mysql://localhost:56725" # f1 = "c2VhdHVubmVs" config1.f1 = "c2VhdHVubmVs" config2.list = ["c2VhdHVubmVsX3Bhc3N3b3Jk", "c2VhdHVubmVsX3Bhc3N3b3Jk", "c2VhdHVubmVsX3Bhc3N3b3Jk"] config3 = { f2 = "c2VhdHVubmVs" } } } sink { console { } }
env { parallelism = 1 shade.identifier = "base64" shade.options = ["username", "password", "f1", "config1.f1 ", "config2.list"] } source { test-source1 { username = "seatunnel" password = "seatunnel_password" database-name = "inventory_vwyw0n" table-name = "products" base-url = "jdbc:mysql://localhost:56725" # f1 = "seatunnel" config1.f1 = "seatunnel" config2.list = ["seatunnel_password", "seatunnel_password", "seatunnel_password"] config3 = { f2 = "seatunnel" } } } sink { console { } }
update
No response
The text was updated successfully, but these errors were encountered:
Hi @hailin0 , I‘m a beginner of SeaTunnel, and I wanna try it
Sorry, something went wrong.
thanks @remones
Indeed, if custom encryption and decryption for fields are supported, then the S3 access_key and secret_key do not need to be handled separately.
remones
No branches or pull requests
Search before asking
Description
Current
Currently we support encryption and decryption of fixed key fields.
https://github.com/apache/seatunnel/blob/dev/docs/en/connector-v2/Config-Encryption-Decryption.md
https://github.com/apache/seatunnel/blob/dev/seatunnel-core/seatunnel-core-starter/src/main/java/org/apache/seatunnel/core/starter/utils/ConfigShadeUtils.java#L50
input
After changes
We expect to be able to customize the encryption and decryption field list after the change
update
Usage Scenario
No response
Related issues
No response
Are you willing to submit a PR?
Code of Conduct
The text was updated successfully, but these errors were encountered: