com.clickzetta.client.jdbc.core.LakehouseClient Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clickzetta-java Show documentation
Show all versions of clickzetta-java Show documentation
The java SDK for clickzetta's Lakehouse
package com.clickzetta.client.jdbc.core;
import cz.proto.coordinator.CoordinatorServiceOuterClass;
public interface LakehouseClient {
CoordinatorServiceOuterClass.SubmitJobResponse submitJob(String request, CZConnectContext connectContext, String jobId) throws Exception;
CoordinatorServiceOuterClass.GetJobResultResponse getJobResult(String request, CZConnectContext connectContext, String jobId) throws Exception;
CoordinatorServiceOuterClass.GetJobProgressResponse getJobProgress(String request, CZConnectContext connectContext, String jobId) throws Exception;
CoordinatorServiceOuterClass.GetJobProfileResponse getJobProfile(String request, CZConnectContext connectContext, String jobId) throws Exception;
CoordinatorServiceOuterClass.GetJobSummaryResponse getJobSummary(String request, CZConnectContext connectContext, String jobId) throws Exception;
CoordinatorServiceOuterClass.GetJobPlanResponse getJobPlan(String request, CZConnectContext connectContext, String jobId) throws Exception;
CoordinatorServiceOuterClass.CancelJobResponse cancelJob(String request, CZConnectContext connectContext, String jobId) throws Exception;
CoordinatorServiceOuterClass.OpenTableResponse openTable(String request,
CZConnectContext connectContext, String schema, String table) throws Exception;
CoordinatorServiceOuterClass.CreateWorkspaceResponse createWorkspace(String request, CZConnectContext connectContext) throws Exception;
CoordinatorServiceOuterClass.GetWorkspaceResponse getWorkspace(String request, CZConnectContext connectContext) throws Exception;
CoordinatorServiceOuterClass.DeleteWorkspaceResponse deleteWorkspace(String request, CZConnectContext connectContext) throws Exception;
CoordinatorServiceOuterClass.UpdateWorkspaceResponse updateWorkspace(String request, CZConnectContext connectContext) throws Exception;
CoordinatorServiceOuterClass.ListWorkspacesResponse listWorkspaces(String request, CZConnectContext connectContext) throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy