我正在将 GoESL (https://www.php.cn/link/d9b64cee05c46d31b10b9869a3198a6d) 与 Temporal 集成,以通过 FreeSWITCH 自动拨号。该设置允许 1,000 个并发通道和每秒 50 个调用 (CPS)。每次拨号尝试都会启动一个临时工作流程,该工作流程通过活动发起呼叫。
成功发起 96 个呼叫(可变数量)后,FreeSWITCH 不再处理更多呼叫。 CLI 中没有日志,事件套接字层中没有事件指示进一步的尝试。但是,如果我停止 Temporal Worker,之前“卡住”的调用会出现在 FreeSWITCH CLI 中,表明它们已由 GoESL 客户端排队。我可以确认工作人员不会陷入困境,因为它会继续启动主要工作流程。
以下是相关代码片段:
潜在客户处理循环:
for _, lead := range leadResult.Leads { // [omitted setup and checks] // Checking for channel availability and sleeping to respect CPS limits workflow.Await(ctx, func() bool { return dialerQueryResponse.AvailableChannels > 0 }) timeToSleep := time.Second / time.Duration(dialerQueryResponse.CallsPerSecondLimit) workflow.Sleep(ctx, timeToSleep) // Dialing the lead fmt.Printf("dialing lead %s\n", lead) dialLead(lead, selectedDialer.Id, callTimeout) fmt.Print("lead dialed\n\n") }
拨号引导逻辑:
dialLead := func(lead string, selectedDialerId, dialerCallTimeout int) { // Setup child workflow context with unique ID cwo.WorkflowID = fmt.Sprintf("Campaign_Call_%s", lead) childCtx := workflow.WithChildOptions(ctx, cwo) // Struct to pass input to the child workflow input := domain.CallWorkflowInput{ Lead: lead, DialerId: selectedDialerId, CampaignName: cds.CampaignName, DialplanExtension: cc.Survey.DialplanExtension, CallTimeout: dialerCallTimeout, } // Executing the child workflow and handling its future future := workflow.ExecuteChildWorkflow(childCtx, CallWorkflow, input) var dialerId int selector.AddFuture(future, func(f workflow.Future) { err := f.Get(ctx, &dialerId) // Error handling and updating concurrency state // ... }) }
调用工作流函数:
func CallWorkflow(ctx workflow.Context, input domain.CallWorkflowInput) (int, error) { // [omitted setup] // Executing the originate call activity var dialLeadResult domain.DialLeadResponse if err := workflow.ExecuteActivity(ctx, activity.Dialer.OriginateCallActivity, dialInput).Get(ctx, &dialLeadResult); err != nil { // Error handling } // [omitted post-call handling] }
依次执行发起呼叫活动:
func (a *DialerActivities) OriginateCallActivity(ctx context.Context, input domain.DialLeadRequest) (domain.DialLeadResponse, error) { // [omitted client selection] // Command to originate the call cmd := fmt.Sprintf("originate {%s}%s/%s/%s 704 XML default test %s 10", variables, protocol, gateway, input.DestinationNumber, input.OriginatingNumber) err := selectedClient.BgApi(cmd) if err != nil { // Error handling } // [omitted response preparation] }}, nil }
是否有人在使用 GoESL 或 Temporal 时遇到过类似的问题,其中调用似乎在排队并且超过某个点后未执行?关于如何调试这种情况或为什么终止临时工作线程可能会触发排队调用的处理有什么建议吗?
我尝试过的:
workflow.Sleep
持续时间从几毫秒修改为 5 - 10 秒,以确保不是网络延迟导致问题。决定更换 GoESL 软件包 (https://www.php.cn/link/d9b64cee05c46d31b10b9869a3198a6d )使用不同的 GoESL 包(https://www.php.cn/link/8c8566b78ac2b99c542bef8c37cac179)和问题已经解决了。似乎是初始 GoESL 包中的一个根本问题。
我在此处的 Github 存储库上提出了一个问题 (https://github.com /0x19/goesl/issues/40)以防将来有人遇到同样的问题。
以上是GoESL 与 Temporal:呼叫并非源自 FreeSWITCH 中的某个点的详细内容。更多信息请关注PHP中文网其他相关文章!