feat(executor-manager): 增加表数据查询10条采样任务

This commit is contained in:
v-zhangjc9
2024-06-03 16:17:41 +08:00
parent 8aba2475be
commit 6f2fce4359
6 changed files with 121 additions and 4 deletions

View File

@@ -28,6 +28,9 @@ public interface TaskService {
@Get(value = "/task/table_summary", readTimeout = 2 * 60 * 1000)
String tableSummary(@Query("hdfs") String hdfs);
@Get(value = "/task/table_sampling", readTimeout = 2 * 60 * 1000)
String tableSampling(@Query("hdfs") String hdfs);
@Get("/task/results")
ImmutableList<String> results(@Query("task_id") String taskId);