From 73f7d3085af7b01cd649b5c6d860867fa6913245 Mon Sep 17 00:00:00 2001 From: v-zhangjc9 Date: Mon, 14 Oct 2024 14:26:27 +0800 Subject: [PATCH] =?UTF-8?q?feat(scheduler):=20=E8=B0=83=E6=95=B4b12?= =?UTF-8?q?=E7=9A=84=E8=B5=84=E6=BA=90=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 反正也没有备用集群的需求,一个集群用到头就好 --- .../service/scheduler/quartz/distribute/cluster/B12Cluster.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service-scheduler/src/main/java/com/lanyuanxiaoyao/service/scheduler/quartz/distribute/cluster/B12Cluster.java b/service-scheduler/src/main/java/com/lanyuanxiaoyao/service/scheduler/quartz/distribute/cluster/B12Cluster.java index 8e31971..1af88ca 100644 --- a/service-scheduler/src/main/java/com/lanyuanxiaoyao/service/scheduler/quartz/distribute/cluster/B12Cluster.java +++ b/service-scheduler/src/main/java/com/lanyuanxiaoyao/service/scheduler/quartz/distribute/cluster/B12Cluster.java @@ -23,7 +23,7 @@ public class B12Cluster extends Cluster { Constants.COMPACTION_QUEUE_B12, AvailableStrategy.and( new QueueSizeLimit(client, Constants.COMPACTION_QUEUE_B12, 20), - new YarnQueueUsedLimit(yarnService, Constants.CLUSTER_B12, "default", 0.9) + new YarnQueueUsedLimit(yarnService, Constants.CLUSTER_B12, "default", 1.0) ) ); }