feature(info-query): 增加 hive 表维度统计

This commit is contained in:
2023-06-13 18:46:49 +08:00
parent 24e0387268
commit 266584cece
3 changed files with 43 additions and 4 deletions

View File

@@ -10,9 +10,8 @@ import com.lanyuanxiaoyao.service.configuration.entity.PageResponse;
import com.lanyuanxiaoyao.service.configuration.entity.info.JobAndMetas;
import com.lanyuanxiaoyao.service.configuration.entity.info.JobIdAndAlias;
import com.lanyuanxiaoyao.service.configuration.entity.info.VersionUpdated;
import org.eclipse.collections.api.list.ImmutableList;
import java.util.Map;
import org.eclipse.collections.api.list.ImmutableList;
/**
* Info 接口
@@ -34,6 +33,12 @@ public interface InfoService {
@Get("/hudi_focus_count")
Long hudiFocusCount();
@Get("/hive_count")
Long hiveCount();
@Get("/hive_focus_count")
Long hiveFocusCount();
@Get("/un_receive_version_normal_table")
ImmutableList<JobIdAndAlias> unReceiveVersionNormalTable(@Query("version") String version);