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

Update example tables.yml #80

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
6 changes: 3 additions & 3 deletions examples/sqoop-parquet-full-load/tables.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ source_database:
cmd: "mysql -P 3306 -uroot -pcloudera -h mysql <"
staging_database:
name: "default" # Staging database name.
path: "{{ hdfs_basedir }}/staging" # Staging database HDFS path
path: "{{ hdfs_basedir }}/clean" # Staging database HDFS path
raw_database:
name: "default" # Result database
path: "{{ hdfs_basedir }}/result" # Result database HDFS path
path: "{{ hdfs_basedir }}/raw" # Result database HDFS path
final_database:
name: "default" # Result database
tables:
Expand All @@ -31,7 +31,7 @@ tables:
source:
name: "employees_kudu" # Source table name
destination:
name: "employees/kudu.test" # Destination (Impala) table name
name: "employees_kudu_test" # Destination (Impala) table name. Typically this is the same as the source table
split_by_column: "emp_no" # Sqoop split by column (--split-by)
primary_keys: # List of primary keys
- emp_no
Expand Down