feat(hudi-query): 增加关于hdfs文件数相关的接口

This commit is contained in:
v-zhangjc9
2024-10-12 14:43:05 +08:00
parent b9f6aa0cc2
commit 57a828c5b4
3 changed files with 47 additions and 0 deletions

View File

@@ -107,4 +107,13 @@ public interface HudiService {
@Get("/hdfs/size")
Long size(@Query("root") String root);
@Get("/hdfs/count")
Long count(@Query("root") String root);
@Get("/hdfs/file_count")
Long fileCount(@Query("root") String root);
@Get("/hdfs/directory_count")
Long directoryCount(@Query("root") String root);
}