forked from uber/cadence
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created GRPC handlers and internal clients (uber#4057)
* Created GRPC handlers and internal clients * GRPC port config for remaining config files * Fix metric tags for grpc handlers * Proper mapping for WorkflowExecutionCloseStatus * Return yarpcerrors.Status with no match * Updated changelog * Fix after merge * Do not fatal on outbound dispatcher failure * Updated integration tests * Minor rename * Fix after merge
- Loading branch information
1 parent
8d3519b
commit d0a8f7e
Showing
33 changed files
with
1,748 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,129 @@ | ||
// Copyright (c) 2021 Uber Technologies, Inc. | ||
// | ||
// Permission is hereby granted, free of charge, to any person obtaining a copy | ||
// of this software and associated documentation files (the "Software"), to deal | ||
// in the Software without restriction, including without limitation the rights | ||
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
// copies of the Software, and to permit persons to whom the Software is | ||
// furnished to do so, subject to the following conditions: | ||
// | ||
// The above copyright notice and this permission notice shall be included in | ||
// all copies or substantial portions of the Software. | ||
// | ||
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
// THE SOFTWARE. | ||
|
||
package admin | ||
|
||
import ( | ||
"context" | ||
|
||
"go.uber.org/yarpc" | ||
|
||
adminv1 "github.com/uber/cadence/.gen/proto/admin/v1" | ||
"github.com/uber/cadence/common/types" | ||
"github.com/uber/cadence/common/types/mapper/proto" | ||
) | ||
|
||
type grpcClient struct { | ||
c adminv1.AdminAPIYARPCClient | ||
} | ||
|
||
func NewGRPCClient(c adminv1.AdminAPIYARPCClient) Client { | ||
return grpcClient{c} | ||
} | ||
|
||
func (g grpcClient) AddSearchAttribute(ctx context.Context, request *types.AddSearchAttributeRequest, opts ...yarpc.CallOption) error { | ||
_, err := g.c.AddSearchAttribute(ctx, proto.FromAdminAddSearchAttributeRequest(request), opts...) | ||
return proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) CloseShard(ctx context.Context, request *types.CloseShardRequest, opts ...yarpc.CallOption) error { | ||
_, err := g.c.CloseShard(ctx, proto.FromAdminCloseShardRequest(request), opts...) | ||
return proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) DescribeCluster(ctx context.Context, opts ...yarpc.CallOption) (*types.DescribeClusterResponse, error) { | ||
response, err := g.c.DescribeCluster(ctx, &adminv1.DescribeClusterRequest{}, opts...) | ||
return proto.ToAdminDescribeClusterResponse(response), proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) DescribeHistoryHost(ctx context.Context, request *types.DescribeHistoryHostRequest, opts ...yarpc.CallOption) (*types.DescribeHistoryHostResponse, error) { | ||
response, err := g.c.DescribeHistoryHost(ctx, proto.FromAdminDescribeHistoryHostRequest(request), opts...) | ||
return proto.ToAdminDescribeHistoryHostResponse(response), proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) DescribeQueue(ctx context.Context, request *types.DescribeQueueRequest, opts ...yarpc.CallOption) (*types.DescribeQueueResponse, error) { | ||
response, err := g.c.DescribeQueue(ctx, proto.FromAdminDescribeQueueRequest(request), opts...) | ||
return proto.ToAdminDescribeQueueResponse(response), proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) DescribeWorkflowExecution(ctx context.Context, request *types.AdminDescribeWorkflowExecutionRequest, opts ...yarpc.CallOption) (*types.AdminDescribeWorkflowExecutionResponse, error) { | ||
response, err := g.c.DescribeWorkflowExecution(ctx, proto.FromAdminDescribeWorkflowExecutionRequest(request), opts...) | ||
return proto.ToAdminDescribeWorkflowExecutionResponse(response), proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) GetDLQReplicationMessages(ctx context.Context, request *types.GetDLQReplicationMessagesRequest, opts ...yarpc.CallOption) (*types.GetDLQReplicationMessagesResponse, error) { | ||
response, err := g.c.GetDLQReplicationMessages(ctx, proto.FromAdminGetDLQReplicationMessagesRequest(request), opts...) | ||
return proto.ToAdminGetDLQReplicationMessagesResponse(response), proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) GetDomainReplicationMessages(ctx context.Context, request *types.GetDomainReplicationMessagesRequest, opts ...yarpc.CallOption) (*types.GetDomainReplicationMessagesResponse, error) { | ||
response, err := g.c.GetDomainReplicationMessages(ctx, proto.FromAdminGetDomainReplicationMessagesRequest(request), opts...) | ||
return proto.ToAdminGetDomainReplicationMessagesResponse(response), proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) GetReplicationMessages(ctx context.Context, request *types.GetReplicationMessagesRequest, opts ...yarpc.CallOption) (*types.GetReplicationMessagesResponse, error) { | ||
response, err := g.c.GetReplicationMessages(ctx, proto.FromAdminGetReplicationMessagesRequest(request), opts...) | ||
return proto.ToAdminGetReplicationMessagesResponse(response), proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) GetWorkflowExecutionRawHistoryV2(ctx context.Context, request *types.GetWorkflowExecutionRawHistoryV2Request, opts ...yarpc.CallOption) (*types.GetWorkflowExecutionRawHistoryV2Response, error) { | ||
response, err := g.c.GetWorkflowExecutionRawHistoryV2(ctx, proto.FromAdminGetWorkflowExecutionRawHistoryV2Request(request), opts...) | ||
return proto.ToAdminGetWorkflowExecutionRawHistoryV2Response(response), proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) MergeDLQMessages(ctx context.Context, request *types.MergeDLQMessagesRequest, opts ...yarpc.CallOption) (*types.MergeDLQMessagesResponse, error) { | ||
response, err := g.c.MergeDLQMessages(ctx, proto.FromAdminMergeDLQMessagesRequest(request), opts...) | ||
return proto.ToAdminMergeDLQMessagesResponse(response), proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) PurgeDLQMessages(ctx context.Context, request *types.PurgeDLQMessagesRequest, opts ...yarpc.CallOption) error { | ||
_, err := g.c.PurgeDLQMessages(ctx, proto.FromAdminPurgeDLQMessagesRequest(request), opts...) | ||
return proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) ReadDLQMessages(ctx context.Context, request *types.ReadDLQMessagesRequest, opts ...yarpc.CallOption) (*types.ReadDLQMessagesResponse, error) { | ||
response, err := g.c.ReadDLQMessages(ctx, proto.FromAdminReadDLQMessagesRequest(request), opts...) | ||
return proto.ToAdminReadDLQMessagesResponse(response), proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) ReapplyEvents(ctx context.Context, request *types.ReapplyEventsRequest, opts ...yarpc.CallOption) error { | ||
_, err := g.c.ReapplyEvents(ctx, proto.FromAdminReapplyEventsRequest(request), opts...) | ||
return proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) RefreshWorkflowTasks(ctx context.Context, request *types.RefreshWorkflowTasksRequest, opts ...yarpc.CallOption) error { | ||
_, err := g.c.RefreshWorkflowTasks(ctx, proto.FromAdminRefreshWorkflowTasksRequest(request), opts...) | ||
return proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) RemoveTask(ctx context.Context, request *types.RemoveTaskRequest, opts ...yarpc.CallOption) error { | ||
_, err := g.c.RemoveTask(ctx, proto.FromAdminRemoveTaskRequest(request), opts...) | ||
return proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) ResendReplicationTasks(ctx context.Context, request *types.ResendReplicationTasksRequest, opts ...yarpc.CallOption) error { | ||
_, err := g.c.ResendReplicationTasks(ctx, proto.FromAdminResendReplicationTasksRequest(request), opts...) | ||
return proto.ToError(err) | ||
} | ||
|
||
func (g grpcClient) ResetQueue(ctx context.Context, request *types.ResetQueueRequest, opts ...yarpc.CallOption) error { | ||
_, err := g.c.ResetQueue(ctx, proto.FromAdminResetQueueRequest(request), opts...) | ||
return proto.ToError(err) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.