[HUDI-68] Pom cleanup & demo automation (#846)
- [HUDI-172] Cleanup Maven POM/Classpath - Fix ordering of dependencies in poms, to enable better resolution - Idea is to place more specific ones at the top - And place dependencies which use them below them - [HUDI-68] : Automate demo steps on docker setup - Move hive queries from hive cli to beeline - Standardize on taking query input from text command files - Deltastreamer ingest, also does hive sync in a single step - Spark Incremental Query materialized as a derived Hive table using datasource - Fix flakiness in HDFS spin up and output comparison - Code cleanup around streamlining and loc reduction - Also fixed pom to not shade some hive classs in spark, to enable hive sync
This commit is contained in:
10
docker/demo/hive-incremental.commands
Normal file
10
docker/demo/hive-incremental.commands
Normal file
@@ -0,0 +1,10 @@
|
||||
add jar ${hudi.hadoop.bundle};
|
||||
|
||||
set hoodie.stock_ticks_cow.consume.mode=INCREMENTAL;
|
||||
set hoodie.stock_ticks_cow.consume.max.commits=3;
|
||||
set hoodie.stock_ticks_cow.consume.start.timestamp=${min.commit.time};
|
||||
|
||||
select symbol, ts, volume, open, close from stock_ticks_cow where symbol = 'GOOG' and `_hoodie_commit_time` > '${min.commit.time}';
|
||||
|
||||
!quit
|
||||
|
||||
Reference in New Issue
Block a user