Hi, We have a number of hive databases, tables, columns and views already created on the Hive before we installed Atlas on our servers.
For getting the metadata for all the existing hive objects we used the COMPUTE STATISTICS command in Hive to make sure that the metadata is available in the Atlas. It works fine with the Hive tables.
ANALYZE
TABLE <TABLENAME>
COMPUTE STATISTICS;
But we are still missing the Hive views in the Atlas, is there any command that we can use to make sure that the Hive Views are also available in the Atlas? One way that I can think of is the drop and recreate the views. But wanted to see if there is any alternative approach for this.