当前位置: 首页>>代码示例>>Golang>>正文


Golang Vtworker_ExecuteVtworkerCommandServer.Context方法代码示例

本文整理汇总了Golang中github.com/youtube/vitess/go/vt/proto/vtworkerservice.Vtworker_ExecuteVtworkerCommandServer.Context方法的典型用法代码示例。如果您正苦于以下问题:Golang Vtworker_ExecuteVtworkerCommandServer.Context方法的具体用法?Golang Vtworker_ExecuteVtworkerCommandServer.Context怎么用?Golang Vtworker_ExecuteVtworkerCommandServer.Context使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在github.com/youtube/vitess/go/vt/proto/vtworkerservice.Vtworker_ExecuteVtworkerCommandServer的用法示例。


在下文中一共展示了Vtworker_ExecuteVtworkerCommandServer.Context方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。

示例1: ExecuteVtworkerCommand

// ExecuteVtworkerCommand is part of the vtworkerdatapb.VtworkerServer interface
func (s *VtworkerServer) ExecuteVtworkerCommand(args *vtworkerdatapb.ExecuteVtworkerCommandRequest, stream vtworkerservicepb.Vtworker_ExecuteVtworkerCommandServer) (err error) {
	// Please note that this panic handler catches only panics occuring in the code below.
	// The actual execution of the vtworker command takes place in a new go routine
	// (started in Instance.setAndStartWorker()) which has its own panic handler.
	defer servenv.HandlePanic("vtworker", &err)

	// Stream everything back what the Wrangler is logging.
	logstream := logutil.NewCallbackLogger(func(e *logutilpb.Event) {
		stream.Send(&vtworkerdatapb.ExecuteVtworkerCommandResponse{
			Event: e,
		})
	})
	// Let the Wrangler also log everything to the console (and thereby
	// effectively to a logfile) to make sure that any information or errors
	// is preserved in the logs in case the RPC or vtworker crashes.
	logger := logutil.NewTeeLogger(logstream, logutil.NewConsoleLogger())

	wr := s.wi.CreateWrangler(logger)

	// Run the command as long as the RPC Context is valid.
	worker, done, err := s.wi.RunCommand(stream.Context(), args.Args, wr, false /*runFromCli*/)
	if err == nil && worker != nil && done != nil {
		err = s.wi.WaitForCommand(worker, done)
	}

	return vterrors.ToGRPCError(err)
}
开发者ID:dumbunny,项目名称:vitess,代码行数:28,代码来源:server.go


注:本文中的github.com/youtube/vitess/go/vt/proto/vtworkerservice.Vtworker_ExecuteVtworkerCommandServer.Context方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。