Skip to content
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

Hive properties #204

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions core/src/main/resources/Samples/Input_Json_Specification.json
Original file line number Diff line number Diff line change
Expand Up @@ -264,7 +264,13 @@
"source_hive": {
"platform": "hive",
"comment_query": "Mandatory , the provided query will be executed as sql in Spark Session",
"query": "select * from db.table"
"query": "select * from db.table",
"comment_properties": "this to set additional configs for spark session config i.e. spark.conf",
"properties": {
"fs.s3.enableServerSideEncryption": "true",
"fs.s3.serverSideEncryptionAlgorithm": "AES256",
"fs.s3.connection.ssl.enabled": "true"
}
},
"destination_hive": {
"platform": "hive",
Expand All @@ -275,7 +281,13 @@
"comment_savemode": "Mandatory, specify how data will be saved to the destination table. If partitioned, enter true. Options include append, overwrite, ignore",
"savemode": "append",
"comment_partitions": "Mandatory, specify whether or not the destination table is partitioned. If partitioned, enter true. If not, enter false",
"partitions": false
"partitions": false,
"comment_properties": "this to set additional configs for spark session config i.e. spark.conf",
"properties": {
"fs.s3.enableServerSideEncryption": "true",
"fs.s3.serverSideEncryptionAlgorithm": "AES256",
"fs.s3.connection.ssl.enabled": "true"
}
},
"source_kafka": {
"platform": "kafka",
Expand Down