feature(web): 增加 hdfs 路径补全

This commit is contained in:
2023-07-07 15:55:27 +08:00
parent bd0a56217d
commit b13e70d9cb
6 changed files with 117 additions and 22 deletions

View File

@@ -105,4 +105,13 @@ public interface InfoService {
@Get("/non_exists_table")
Boolean nonExistsTable(@Query("flink_job_id") Long flinkJobId, @Query("alias") String alias);
@Get("/all_flink_job_id")
ImmutableList<Long> allFlinkJobId();
@Get("/all_alias")
ImmutableList<String> allAlias();
@Get("/all_hdfs")
ImmutableList<String> allHdfs();
}