public static interface TajoMasterClientProtocol.TajoMasterClientProtocolService.Interface
Modifier and Type | Method and Description |
---|---|
void |
createDatabase(com.google.protobuf.RpcController controller,
ClientProtos.SessionedStringProto request,
com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc createDatabase(.SessionedStringProto) returns (.BoolProto); |
void |
createExternalTable(com.google.protobuf.RpcController controller,
ClientProtos.CreateTableRequest request,
com.google.protobuf.RpcCallback<ClientProtos.TableResponse> done)
rpc createExternalTable(.CreateTableRequest) returns (.TableResponse); |
void |
createSession(com.google.protobuf.RpcController controller,
ClientProtos.CreateSessionRequest request,
com.google.protobuf.RpcCallback<ClientProtos.CreateSessionResponse> done)
rpc createSession(.CreateSessionRequest) returns (.CreateSessionResponse); |
void |
dropDatabase(com.google.protobuf.RpcController controller,
ClientProtos.SessionedStringProto request,
com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc dropDatabase(.SessionedStringProto) returns (.BoolProto); |
void |
dropTable(com.google.protobuf.RpcController controller,
ClientProtos.DropTableRequest request,
com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc dropTable(.DropTableRequest) returns (.BoolProto); |
void |
existDatabase(com.google.protobuf.RpcController controller,
ClientProtos.SessionedStringProto request,
com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc existDatabase(.SessionedStringProto) returns (.BoolProto); |
void |
existSessionVariable(com.google.protobuf.RpcController controller,
ClientProtos.SessionedStringProto request,
com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc existSessionVariable(.SessionedStringProto) returns (.BoolProto); |
void |
existTable(com.google.protobuf.RpcController controller,
ClientProtos.SessionedStringProto request,
com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc existTable(.SessionedStringProto) returns (.BoolProto); |
void |
getAllDatabases(com.google.protobuf.RpcController controller,
TajoIdProtos.SessionIdProto request,
com.google.protobuf.RpcCallback<PrimitiveProtos.StringListProto> done)
rpc getAllDatabases(.SessionIdProto) returns (.StringListProto); |
void |
getAllSessionVariables(com.google.protobuf.RpcController controller,
TajoIdProtos.SessionIdProto request,
com.google.protobuf.RpcCallback<CatalogProtos.KeyValueSetProto> done)
rpc getAllSessionVariables(.SessionIdProto) returns (.KeyValueSetProto); |
void |
getClusterInfo(com.google.protobuf.RpcController controller,
ClientProtos.GetClusterInfoRequest request,
com.google.protobuf.RpcCallback<ClientProtos.GetClusterInfoResponse> done)
rpc getClusterInfo(.GetClusterInfoRequest) returns (.GetClusterInfoResponse); |
void |
getCurrentDatabase(com.google.protobuf.RpcController controller,
TajoIdProtos.SessionIdProto request,
com.google.protobuf.RpcCallback<PrimitiveProtos.StringProto> done)
rpc getCurrentDatabase(.SessionIdProto) returns (.StringProto); |
void |
getFinishedQueryList(com.google.protobuf.RpcController controller,
ClientProtos.GetQueryListRequest request,
com.google.protobuf.RpcCallback<ClientProtos.GetQueryListResponse> done)
rpc getFinishedQueryList(.GetQueryListRequest) returns (.GetQueryListResponse); |
void |
getFunctionList(com.google.protobuf.RpcController controller,
ClientProtos.SessionedStringProto request,
com.google.protobuf.RpcCallback<ClientProtos.FunctionResponse> done)
rpc getFunctionList(.SessionedStringProto) returns (.FunctionResponse); |
void |
getQueryResult(com.google.protobuf.RpcController controller,
ClientProtos.GetQueryResultRequest request,
com.google.protobuf.RpcCallback<ClientProtos.GetQueryResultResponse> done)
rpc getQueryResult(.GetQueryResultRequest) returns (.GetQueryResultResponse); |
void |
getQueryStatus(com.google.protobuf.RpcController controller,
ClientProtos.GetQueryStatusRequest request,
com.google.protobuf.RpcCallback<ClientProtos.GetQueryStatusResponse> done)
rpc getQueryStatus(.GetQueryStatusRequest) returns (.GetQueryStatusResponse); |
void |
getRunningQueryList(com.google.protobuf.RpcController controller,
ClientProtos.GetQueryListRequest request,
com.google.protobuf.RpcCallback<ClientProtos.GetQueryListResponse> done)
rpc getRunningQueryList(.GetQueryListRequest) returns (.GetQueryListResponse); |
void |
getSessionVariable(com.google.protobuf.RpcController controller,
ClientProtos.SessionedStringProto request,
com.google.protobuf.RpcCallback<PrimitiveProtos.StringProto> done)
rpc getSessionVariable(.SessionedStringProto) returns (.StringProto); |
void |
getTableDesc(com.google.protobuf.RpcController controller,
ClientProtos.GetTableDescRequest request,
com.google.protobuf.RpcCallback<ClientProtos.TableResponse> done)
rpc getTableDesc(.GetTableDescRequest) returns (.TableResponse); |
void |
getTableList(com.google.protobuf.RpcController controller,
ClientProtos.GetTableListRequest request,
com.google.protobuf.RpcCallback<ClientProtos.GetTableListResponse> done)
rpc getTableList(.GetTableListRequest) returns (.GetTableListResponse); |
void |
killQuery(com.google.protobuf.RpcController controller,
ClientProtos.KillQueryRequest request,
com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc killQuery(.KillQueryRequest) returns (.BoolProto); |
void |
removeSession(com.google.protobuf.RpcController controller,
TajoIdProtos.SessionIdProto request,
com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc removeSession(.SessionIdProto) returns (.BoolProto); |
void |
selectDatabase(com.google.protobuf.RpcController controller,
ClientProtos.SessionedStringProto request,
com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc selectDatabase(.SessionedStringProto) returns (.BoolProto); |
void |
submitQuery(com.google.protobuf.RpcController controller,
ClientProtos.QueryRequest request,
com.google.protobuf.RpcCallback<ClientProtos.SubmitQueryResponse> done)
rpc submitQuery(.QueryRequest) returns (.SubmitQueryResponse); |
void |
updateQuery(com.google.protobuf.RpcController controller,
ClientProtos.QueryRequest request,
com.google.protobuf.RpcCallback<ClientProtos.UpdateQueryResponse> done)
rpc updateQuery(.QueryRequest) returns (.UpdateQueryResponse); |
void |
updateSessionVariables(com.google.protobuf.RpcController controller,
ClientProtos.UpdateSessionVariableRequest request,
com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc updateSessionVariables(.UpdateSessionVariableRequest) returns (.BoolProto); |
void createSession(com.google.protobuf.RpcController controller, ClientProtos.CreateSessionRequest request, com.google.protobuf.RpcCallback<ClientProtos.CreateSessionResponse> done)
rpc createSession(.CreateSessionRequest) returns (.CreateSessionResponse);
Session APIs
void removeSession(com.google.protobuf.RpcController controller, TajoIdProtos.SessionIdProto request, com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc removeSession(.SessionIdProto) returns (.BoolProto);
void updateSessionVariables(com.google.protobuf.RpcController controller, ClientProtos.UpdateSessionVariableRequest request, com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc updateSessionVariables(.UpdateSessionVariableRequest) returns (.BoolProto);
void existSessionVariable(com.google.protobuf.RpcController controller, ClientProtos.SessionedStringProto request, com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc existSessionVariable(.SessionedStringProto) returns (.BoolProto);
void getSessionVariable(com.google.protobuf.RpcController controller, ClientProtos.SessionedStringProto request, com.google.protobuf.RpcCallback<PrimitiveProtos.StringProto> done)
rpc getSessionVariable(.SessionedStringProto) returns (.StringProto);
void getAllSessionVariables(com.google.protobuf.RpcController controller, TajoIdProtos.SessionIdProto request, com.google.protobuf.RpcCallback<CatalogProtos.KeyValueSetProto> done)
rpc getAllSessionVariables(.SessionIdProto) returns (.KeyValueSetProto);
void submitQuery(com.google.protobuf.RpcController controller, ClientProtos.QueryRequest request, com.google.protobuf.RpcCallback<ClientProtos.SubmitQueryResponse> done)
rpc submitQuery(.QueryRequest) returns (.SubmitQueryResponse);
Query Submission and Result APIs
void updateQuery(com.google.protobuf.RpcController controller, ClientProtos.QueryRequest request, com.google.protobuf.RpcCallback<ClientProtos.UpdateQueryResponse> done)
rpc updateQuery(.QueryRequest) returns (.UpdateQueryResponse);
void getQueryResult(com.google.protobuf.RpcController controller, ClientProtos.GetQueryResultRequest request, com.google.protobuf.RpcCallback<ClientProtos.GetQueryResultResponse> done)
rpc getQueryResult(.GetQueryResultRequest) returns (.GetQueryResultResponse);
void getQueryStatus(com.google.protobuf.RpcController controller, ClientProtos.GetQueryStatusRequest request, com.google.protobuf.RpcCallback<ClientProtos.GetQueryStatusResponse> done)
rpc getQueryStatus(.GetQueryStatusRequest) returns (.GetQueryStatusResponse);
Query And Resource Management APIs
void getRunningQueryList(com.google.protobuf.RpcController controller, ClientProtos.GetQueryListRequest request, com.google.protobuf.RpcCallback<ClientProtos.GetQueryListResponse> done)
rpc getRunningQueryList(.GetQueryListRequest) returns (.GetQueryListResponse);
void getFinishedQueryList(com.google.protobuf.RpcController controller, ClientProtos.GetQueryListRequest request, com.google.protobuf.RpcCallback<ClientProtos.GetQueryListResponse> done)
rpc getFinishedQueryList(.GetQueryListRequest) returns (.GetQueryListResponse);
void killQuery(com.google.protobuf.RpcController controller, ClientProtos.KillQueryRequest request, com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc killQuery(.KillQueryRequest) returns (.BoolProto);
void getClusterInfo(com.google.protobuf.RpcController controller, ClientProtos.GetClusterInfoRequest request, com.google.protobuf.RpcCallback<ClientProtos.GetClusterInfoResponse> done)
rpc getClusterInfo(.GetClusterInfoRequest) returns (.GetClusterInfoResponse);
void createDatabase(com.google.protobuf.RpcController controller, ClientProtos.SessionedStringProto request, com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc createDatabase(.SessionedStringProto) returns (.BoolProto);
Database Management APIs
void existDatabase(com.google.protobuf.RpcController controller, ClientProtos.SessionedStringProto request, com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc existDatabase(.SessionedStringProto) returns (.BoolProto);
void dropDatabase(com.google.protobuf.RpcController controller, ClientProtos.SessionedStringProto request, com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc dropDatabase(.SessionedStringProto) returns (.BoolProto);
void getAllDatabases(com.google.protobuf.RpcController controller, TajoIdProtos.SessionIdProto request, com.google.protobuf.RpcCallback<PrimitiveProtos.StringListProto> done)
rpc getAllDatabases(.SessionIdProto) returns (.StringListProto);
void getCurrentDatabase(com.google.protobuf.RpcController controller, TajoIdProtos.SessionIdProto request, com.google.protobuf.RpcCallback<PrimitiveProtos.StringProto> done)
rpc getCurrentDatabase(.SessionIdProto) returns (.StringProto);
void selectDatabase(com.google.protobuf.RpcController controller, ClientProtos.SessionedStringProto request, com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc selectDatabase(.SessionedStringProto) returns (.BoolProto);
void createExternalTable(com.google.protobuf.RpcController controller, ClientProtos.CreateTableRequest request, com.google.protobuf.RpcCallback<ClientProtos.TableResponse> done)
rpc createExternalTable(.CreateTableRequest) returns (.TableResponse);
Table Management APIs
void existTable(com.google.protobuf.RpcController controller, ClientProtos.SessionedStringProto request, com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc existTable(.SessionedStringProto) returns (.BoolProto);
void dropTable(com.google.protobuf.RpcController controller, ClientProtos.DropTableRequest request, com.google.protobuf.RpcCallback<PrimitiveProtos.BoolProto> done)
rpc dropTable(.DropTableRequest) returns (.BoolProto);
void getTableList(com.google.protobuf.RpcController controller, ClientProtos.GetTableListRequest request, com.google.protobuf.RpcCallback<ClientProtos.GetTableListResponse> done)
rpc getTableList(.GetTableListRequest) returns (.GetTableListResponse);
void getTableDesc(com.google.protobuf.RpcController controller, ClientProtos.GetTableDescRequest request, com.google.protobuf.RpcCallback<ClientProtos.TableResponse> done)
rpc getTableDesc(.GetTableDescRequest) returns (.TableResponse);
void getFunctionList(com.google.protobuf.RpcController controller, ClientProtos.SessionedStringProto request, com.google.protobuf.RpcCallback<ClientProtos.FunctionResponse> done)
rpc getFunctionList(.SessionedStringProto) returns (.FunctionResponse);
Copyright © 2014 Apache Software Foundation. All Rights Reserved.