Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
dolphindb配置文件中workerNum和localExcutors有什么区别?在教程中,我们经常看到workerNum 比localExcutors 大1,这是为什么呢?
工作人员旨在接收和协调用户的请求。workerNum 限制了 DolphinDB 实例可以同时处理的作业数量。如果请求的工作很简单,工人就自己做。否则,协调工作者将作业分解为子任务,然后将这些子任务分配给自己和池中的本地执行者。完成所有子任务后,协调工作者将子任务的各个结果合并,然后将其返回给客户端。
总之,一个worker既可以作为coordinator又可以作为executor,而local executor只能作为job executor。