在 Hive metastore db 中,如何获取 alter table 的 update_time
In Hive metastore db, How can I get the update_time of alter table
我已经使用 "alter table " 像这样更改了 Hive 中的 table。
alter table tbl_name add columns (...);
alter table tbl_name change col1 col2 string comment 'test';
在Hive metastore数据库的tableTBLS
中,只记录了table的create_time。如何获取alter table.
的更新时间
使用下面的命令
desc formatted tbl_name
并寻找 last_modified_time
它将告诉您上次更新的时间。
它将在 unixtimestamp 中。
我已经使用 "alter table " 像这样更改了 Hive 中的 table。
alter table tbl_name add columns (...);
alter table tbl_name change col1 col2 string comment 'test';
在Hive metastore数据库的tableTBLS
中,只记录了table的create_time。如何获取alter table.
使用下面的命令
desc formatted tbl_name
并寻找 last_modified_time
它将告诉您上次更新的时间。 它将在 unixtimestamp 中。