Can't run Cadence workflow from GoLang
According to php editor Banana, some users have recently reported that they cannot successfully run the Cadence workflow in the GoLang environment. Cadence is a powerful distributed workflow engine, but you may encounter some problems in the GoLang environment. These issues may involve configuration, version compatibility, etc. If you encounter similar problems, you may try checking configuration and version compatibility, or consult official documentation and community discussions for more solutions.
Question content
I am very new to cadence and am trying to implement hello world, but the following error occurred
2023-10-05T10:30:50.695+0530 INFO internal/internal_worker.go:834 Started Workflow Worker {"Domain": "test-domain", "TaskList": "cadence-samples-worker", "WorkerID": "[email protected]@cadence-samples-worker@256dcb1f-1769-4183-9604-174160f79e7a"} 2023-10-05T10:30:50.724+0530 INFO internal/internal_worker.go:859 Started Activity Worker {"Domain": "test-domain", "TaskList": "cadence-samples-worker", "WorkerID": "[email protected]@cadence-samples-worker@256dcb1f-1769-4183-9604-174160f79e7a"} 2023-10-05T10:30:50.724+0530 INFO cadence-test/worker.go:49 Started Worker. {"worker": "cadence-samples-worker"} 2023-10-05T10:30:50.724+0530 ERROR cadence-test/trigger.go:32 Failed to create workflow {"error": "BadRequestError{Message: missing TTL}"}
The following is my Go code
func startWorkflow() { // This workflow ID can be user business logic identifier as well. workflowID := "cron_" + uuid.New().String() startTime := int32(60) domainName := "test-domain" logger, workflowClient := BuildLogger(), BuildCadenceClient() startRequest := shared.StartWorkflowExecutionRequest{ WorkflowId: &workflowID, Domain: &domainName, TaskList: &shared.TaskList{ Name: &domainName, }, ExecutionStartToCloseTimeoutSeconds: &startTime, TaskStartToCloseTimeoutSeconds: &startTime, //DecisionTaskStartToCloseTimeout: time.Minute, } we, err := workflowClient.StartWorkflowExecution(context.Background(), &startRequest) if err != nil { logger.Error("Failed to create workflow", zap.Error(err)) panic("Failed to create workflow.") } else { logger.Info("Started Workflow", zap.String("WorkflowID", *we.RunId), zap.String("RunID", *we.RunId)) } }
These are the dependencies in my go.mod
module cadence-test go 1.21 require ( github.com/google/uuid v1.3.0 github.com/uber-go/tally v3.3.15+incompatible github.com/uber/cadence-idl v0.0.0-20230905165949-03586319b849 go.uber.org/cadence v1.0.2 go.uber.org/yarpc v1.70.4 go.uber.org/zap v1.13.0 ) require ( github.com/BurntSushi/toml v0.4.1 // indirect github.com/apache/thrift v0.16.0 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/cespare/xxhash/v2 v2.1.1 // indirect github.com/cristalhq/jwt/v3 v3.1.0 // indirect github.com/davecgh/go-spew v1.1.1 // indirect github.com/facebookgo/clock v0.0.0-20150410010913-600d898af40a // indirect github.com/go-ole/go-ole v1.2.6 // indirect github.com/gogo/googleapis v1.3.2 // indirect github.com/gogo/protobuf v1.3.2 // indirect github.com/gogo/status v1.1.0 // indirect github.com/golang/mock v1.6.0 // indirect github.com/golang/protobuf v1.5.2 // indirect github.com/google/go-cmp v0.5.8 // indirect github.com/kr/pretty v0.3.0 // indirect github.com/marusama/semaphore/v2 v2.5.0 // indirect github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect github.com/opentracing/opentracing-go v1.2.0 // indirect github.com/pborman/uuid v0.0.0-20180906182336-adf5a7427709 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/prometheus/client_golang v1.11.1 // indirect github.com/prometheus/client_model v0.2.0 // indirect github.com/prometheus/common v0.26.0 // indirect github.com/prometheus/procfs v0.6.0 // indirect github.com/robfig/cron v1.2.0 // indirect github.com/shirou/gopsutil v3.21.11+incompatible // indirect github.com/stretchr/objx v0.5.0 // indirect github.com/stretchr/testify v1.8.1 // indirect github.com/tklauser/go-sysconf v0.3.11 // indirect github.com/tklauser/numcpus v0.6.0 // indirect github.com/uber-go/mapdecode v1.0.0 // indirect github.com/uber/tchannel-go v1.33.0 // indirect github.com/yusufpapurcu/wmi v1.2.3 // indirect go.uber.org/atomic v1.10.0 // indirect go.uber.org/dig v1.10.0 // indirect go.uber.org/fx v1.13.1 // indirect go.uber.org/multierr v1.6.0 // indirect go.uber.org/net/metrics v1.3.0 // indirect go.uber.org/thriftrw v1.29.2 // indirect golang.org/x/exp/typeparams v0.0.0-20220218215828-6cf2b201936e // indirect golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect golang.org/x/mod v0.8.0 // indirect golang.org/x/net v0.14.0 // indirect golang.org/x/sys v0.11.0 // indirect golang.org/x/text v0.12.0 // indirect golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect golang.org/x/tools v0.6.0 // indirect google.golang.org/genproto v0.0.0-20220617124728-180714bec0ad // indirect google.golang.org/grpc v1.47.0 // indirect google.golang.org/protobuf v1.28.0 // indirect gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect gopkg.in/yaml.v2 v2.4.0 // indirect gopkg.in/yaml.v3 v3.0.1 // indirect honnef.co/go/tools v0.3.2 // indirect )
Can anyone help?
Solution
The problem comes from this line we, err :=workflowClient.StartWorkflowExecution(context.Background(), &startRequest)
This is actually not a Cadence problem, but a yarpc problem. yarpc requires a context with a timeout, so if you change to use context.WithTimeout
you should solve the first problem.
Another issue I noticed is that in the request, you may miss the RequestID
field. It must be a UUID, so simply passing a string won't work. However, you don't need to specify them if you use the Cadence CLI to call the workflow directly. The CLI simplifies some input parameters, and this inconsistency is expected.
The above is the detailed content of Can't run Cadence workflow from GoLang. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Go language performs well in building efficient and scalable systems. Its advantages include: 1. High performance: compiled into machine code, fast running speed; 2. Concurrent programming: simplify multitasking through goroutines and channels; 3. Simplicity: concise syntax, reducing learning and maintenance costs; 4. Cross-platform: supports cross-platform compilation, easy deployment.

Golang is better than C in concurrency, while C is better than Golang in raw speed. 1) Golang achieves efficient concurrency through goroutine and channel, which is suitable for handling a large number of concurrent tasks. 2)C Through compiler optimization and standard library, it provides high performance close to hardware, suitable for applications that require extreme optimization.

Golang and C each have their own advantages in performance competitions: 1) Golang is suitable for high concurrency and rapid development, and 2) C provides higher performance and fine-grained control. The selection should be based on project requirements and team technology stack.

Golang is better than Python in terms of performance and scalability. 1) Golang's compilation-type characteristics and efficient concurrency model make it perform well in high concurrency scenarios. 2) Python, as an interpreted language, executes slowly, but can optimize performance through tools such as Cython.

Golang and Python each have their own advantages: Golang is suitable for high performance and concurrent programming, while Python is suitable for data science and web development. Golang is known for its concurrency model and efficient performance, while Python is known for its concise syntax and rich library ecosystem.

C is more suitable for scenarios where direct control of hardware resources and high performance optimization is required, while Golang is more suitable for scenarios where rapid development and high concurrency processing are required. 1.C's advantage lies in its close to hardware characteristics and high optimization capabilities, which are suitable for high-performance needs such as game development. 2.Golang's advantage lies in its concise syntax and natural concurrency support, which is suitable for high concurrency service development.

Goimpactsdevelopmentpositivelythroughspeed,efficiency,andsimplicity.1)Speed:Gocompilesquicklyandrunsefficiently,idealforlargeprojects.2)Efficiency:Itscomprehensivestandardlibraryreducesexternaldependencies,enhancingdevelopmentefficiency.3)Simplicity:

The performance differences between Golang and C are mainly reflected in memory management, compilation optimization and runtime efficiency. 1) Golang's garbage collection mechanism is convenient but may affect performance, 2) C's manual memory management and compiler optimization are more efficient in recursive computing.
