Iceberg from entry to master series nine: flink sql modify Iceberg table and delete Iceberg table

Iceberg from entry to proficiency series nine: flink sql to modify the Iceberg table

1. Modify table properties

ALTER TABLE `hive_catalog`.`default`.`sample` SET ('write.format.default'='avro');

2. Modify the table name

ALTER TABLE `hive_catalog`.`default`.`sample` RENAME TO `hive_catalog`.`default`.`new_sample`;

3. Delete the table

DROP TABLE `hive_catalog`.`default`.`sample`;

Supongo que te gusta

Origin blog.csdn.net/zhengzaifeidelushang/article/details/131484203
Recomendado
Clasificación