azure-functions-golang-worker
azure-functions-golang-worker copied to clipboard
Investigate performance and number of goroutines
Right now, for every incoming gRPC message is executed in a new goroutine. We need to investigate the performance, the number of goroutines and to understand the lifetime of goroutines - to make sure that after a request is completed, the goroutine is finished.
Also, investigate and set the maximum number of goroutines and processes.