private long getTablePartitionCreateTimeMetric(String feedUriTemplate)
throws IOException, URISyntaxException, FalconException {
CatalogStorage storage = (CatalogStorage)
FeedHelper.createStorage(Storage.TYPE.TABLE.name(), feedUriTemplate);
CatalogPartition partition = CatalogServiceFactory.getCatalogService().getPartition(
storage.getCatalogUrl(), storage.getDatabase(), storage.getTable(), storage.getPartitions());
return partition == null ? 0 : partition.getCreateTime();
}