Closed alberttwong closed 8 months ago
CREATE SCHEMA iceberg_db LOCATION 's3://warehouse/';
CALL hive_prod.system.register_table(
table => 'hive_prod.iceberg_db.user_behavior',
metadata_file => 's3://huditest/hudi_ecommerce_user_behavior/metadata/v2.metadata.json'
);
CALL hive_prod.system.register_table(
table => 'hive_prod.iceberg_db.item',
metadata_file => 's3://huditest/hudi_ecommerce_item/metadata/v2.metadata.json'
);
CREATE SCHEMA delta_db LOCATION 's3://warehouse/';
CREATE TABLE delta_db.user_behavior USING DELTA LOCATION 's3://huditest/hudi_ecommerce_user_behavior';
CREATE TABLE delta_db.item USING DELTA LOCATION 's3://huditest/hudi_ecommerce_item';
Using https://github.com/StarRocks/demo/tree/master/documentation-samples/datalakehouse and https://github.com/StarRocks/demo/pull/56
Create huditest bucket.
output
output
output