【发布时间】:2021-08-03 17:28:37
【问题描述】:
我有大约 16 个并行配置的任务,例如 <AAA && BBB|| CCC && DDD || EEE && FFF || GGG && ......>。
我的意图是一次只运行 3 个任务。只要保持顺序任务的顺序,我不介意哪些任务先运行(BBB 总是在 AAA 之后运行,DDD 在 CCC 之后等)
根据此处的文档 - https://docs.spring.io/spring-cloud-dataflow/docs/current/reference/htmlsingle/#_configuration_options,我尝试设置 --split-thread-core-pool-size=3,但它给了我这个错误 -
Split thread core pool size 3 should be equal or greater than the depth of split flows 17. Try setting the composed task property splitThreadCorePoolSize
我在这里做什么?
【问题讨论】:
标签: spring spring-batch spring-cloud-dataflow spring-cloud-task