Github user guoyuepeng commented on a diff in the pull request:
https://github.com/apache/incubator-griffin/pull/447#discussion_r228419404
--- Diff:
service/src/main/java/org/apache/griffin/core/metastore/hive/HiveMetaStoreServiceImpl.java
---
@@ -99,8 +100,17 @@ public HiveMetaStoreServiceImpl() {
public List<Table> getAllTable(String db) {
return getTables(db);
}
-
-
+
+ @Override
+ @Cacheable(unless = "#result==null || #result.isEmpty()")
--- End diff --
ok, add one more service for all table names.
---