Skip to content

Commit

Permalink
reslove confict
Browse files Browse the repository at this point in the history
  • Loading branch information
JNSimba committed Jul 29, 2024
1 parent 056853b commit 6aa4948
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions gensrc/proto/internal_service.proto
Original file line number Diff line number Diff line change
Expand Up @@ -721,13 +721,12 @@ message PJdbcTestConnectionResult {
optional PStatus status = 1;
}

message PCdcJobStartRequest {
message PStartCdcScannerRequest {
optional string params = 1;
}

message PCdcJobStartResult {
message PStartCdcScannerResult {
optional PStatus status = 1;
optional int32 port = 2;
}

message PRowLocation {
Expand Down Expand Up @@ -955,6 +954,19 @@ message PAlterVaultSyncRequest {
message PAlterVaultSyncResponse {
}

message PGetBeResourceRequest {
}

message PGlobalResourceUsage {
optional int64 mem_limit = 1;
optional int64 mem_usage = 2;
}

message PGetBeResourceResponse {
optional PStatus status = 1;
optional PGlobalResourceUsage global_be_resource_usage = 2;
}

service PBackendService {
rpc transmit_data(PTransmitDataParams) returns (PTransmitDataResult);
rpc transmit_data_by_http(PEmptyRequest) returns (PTransmitDataResult);
Expand Down Expand Up @@ -1005,6 +1017,7 @@ service PBackendService {
rpc fetch_remote_tablet_schema(PFetchRemoteSchemaRequest) returns (PFetchRemoteSchemaResponse);
rpc test_jdbc_connection(PJdbcTestConnectionRequest) returns (PJdbcTestConnectionResult);
rpc alter_vault_sync(PAlterVaultSyncRequest) returns (PAlterVaultSyncResponse);
rpc start_cdc_job_async(PCdcJobStartRequest) returns (PCdcJobStartResult);
rpc get_be_resource(PGetBeResourceRequest) returns (PGetBeResourceResponse);
rpc start_cdc_scanner(PStartCdcScannerRequest) returns (PStartCdcScannerResult);
};

0 comments on commit 6aa4948

Please sign in to comment.