ORC-529: Allow configuration and table properties to control encryption.#415
Closed
omalley wants to merge 1 commit intoapache:masterfrom
Closed
ORC-529: Allow configuration and table properties to control encryption.#415omalley wants to merge 1 commit intoapache:masterfrom
omalley wants to merge 1 commit intoapache:masterfrom
Conversation
d2a501e to
635fe42
Compare
Fixes apache#415 Signed-off-by: Owen O'Malley <omalley@apache.org>
|
hi omalley , currently i want to use the orc encryption and mask feature, but i can not find any manual about how to used in hive? |
|
I also have this requirement. Do you know how to use it |
Member
|
I didn't tried it in Hive, but Apache ORC provides a document for Apache Spark. CREATE TABLE encrypted (
ssn STRING,
email STRING,
name STRING
)
USING ORC
OPTIONS (
hadoop.security.key.provider.path "kms://http@localhost:9600/kms",
orc.key.provider "hadoop",
orc.encrypt "pii:ssn,email",
orc.mask "nullify:ssn;sha256:email"
) |
zratkai
pushed a commit
to zratkai/orc
that referenced
this pull request
Jun 20, 2024
…rol encryption. Fixes apache#415 Signed-off-by: Owen O'Malley <omalley@apache.org> Change-Id: I6bc1198c5a8a20a12453c59cab2cc9aaa1f4f3fa
zratkai
pushed a commit
to zratkai/orc
that referenced
this pull request
Jun 20, 2024
…rol encryption. Fixes apache#415 Signed-off-by: Owen O'Malley <omalley@apache.org> Change-Id: I25795e9dd8757ec2b7aa54cb3933aabf983c7a1e
zratkai
pushed a commit
to zratkai/orc
that referenced
this pull request
Jun 20, 2024
…rol encryption. Fixes apache#415 Signed-off-by: Owen O'Malley <omalley@apache.org> Change-Id: I25795e9dd8757ec2b7aa54cb3933aabf983c7a1e
zratkai
pushed a commit
to zratkai/orc
that referenced
this pull request
Jun 20, 2024
…rol encryption. Fixes apache#415 Signed-off-by: Owen O'Malley <omalley@apache.org> Change-Id: Ia91341c11c093eef947fd508ca8e7a9b3cda637d
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We need to allow the configuration to control encryption. This PR changes a few things: