-
Notifications
You must be signed in to change notification settings - Fork 2.5k
[HUDI-1285] Fix merge on read DAG to make docker demo pass #2092
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,23 +17,23 @@ first_insert: | |
| config: | ||
| record_size: 70000 | ||
| num_insert_partitions: 1 | ||
| repeat_count: 5 | ||
| repeat_count: 1 | ||
| num_records_insert: 100 | ||
| type: InsertNode | ||
| deps: none | ||
| second_insert: | ||
| config: | ||
| record_size: 70000 | ||
| num_insert_partitions: 1 | ||
| repeat_count: 5 | ||
| repeat_count: 1 | ||
| num_records_insert: 100 | ||
| deps: first_insert | ||
| type: InsertNode | ||
| third_insert: | ||
| config: | ||
| record_size: 70000 | ||
| num_insert_partitions: 1 | ||
| repeat_count: 2 | ||
| repeat_count: 1 | ||
| num_records_insert: 300 | ||
| deps: second_insert | ||
| type: InsertNode | ||
|
|
@@ -46,7 +46,7 @@ first_upsert: | |
| record_size: 70000 | ||
| num_insert_partitions: 1 | ||
| num_records_insert: 300 | ||
| repeat_count: 5 | ||
| repeat_count: 1 | ||
| num_records_upsert: 100 | ||
| num_upsert_partitions: 10 | ||
| type: UpsertNode | ||
|
|
@@ -68,7 +68,7 @@ second_upsert: | |
| record_size: 70000 | ||
| num_insert_partitions: 1 | ||
| num_records_insert: 300 | ||
| repeat_count: 5 | ||
| repeat_count: 1 | ||
| num_records_upsert: 100 | ||
| num_upsert_partitions: 10 | ||
| type: UpsertNode | ||
|
|
@@ -81,11 +81,7 @@ second_hive_query: | |
| query1: "select count(*) from testdb.table1 group by `_row_key` having count(*) > 1" | ||
| result1: 0 | ||
| query2: "select count(*) from testdb.table1" | ||
| result2: 3100 | ||
| query3: "select count(*) from testdb.table1_rt group by `_row_key` having count(*) > 1" | ||
| result3: 0 | ||
| query4: "select count(*) from testdb.table1_rt" | ||
| result4: 3100 | ||
| result2: 1100 | ||
|
||
| type: HiveQueryNode | ||
| deps: second_upsert | ||
| first_schedule_compact: | ||
|
|
@@ -97,7 +93,7 @@ third_upsert: | |
| record_size: 70000 | ||
| num_insert_partitions: 1 | ||
| num_records_insert: 300 | ||
| repeat_count: 5 | ||
| repeat_count: 1 | ||
| num_records_upsert: 100 | ||
| num_upsert_partitions: 10 | ||
| type: UpsertNode | ||
|
|
@@ -114,6 +110,6 @@ third_hive_query: | |
| query1: "select count(*) from testdb.table1 group by `_row_key` having count(*) > 1" | ||
| result1: 0 | ||
| query2: "select count(*) from testdb.table1" | ||
| result2: 2210 | ||
| result2: 1400 | ||
| type: HiveQueryNode | ||
| deps: second_upsert | ||
| deps: first_compact | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@n3nash : all dags need to be fixed for partition config.
right ones are
num_partitions_insert
num_partitions_upsert.
where as so far we are using
num_insert_partitions
num_upsert_partitions.
Can you fix these and re-run all your tests and dags. specially around upsert and rollbacks to ensure things are looking good.