feat(all): 补充b9集群配置

This commit is contained in:
2024-02-29 18:30:43 +08:00
parent 54f2738b2e
commit e9aa11a15d
6 changed files with 42 additions and 13 deletions

View File

@@ -0,0 +1,23 @@
package com.lanyuanxiaoyao.service.scheduler.quartz.distribute.cluster;
import com.lanyuanxiaoyao.service.common.Constants;
import com.lanyuanxiaoyao.service.forest.service.YarnService;
import org.springframework.cloud.client.discovery.DiscoveryClient;
import org.springframework.stereotype.Component;
/**
* A4
*
* @author lanyuanxiaoyao
* @date 2023-06-08
*/
@SuppressWarnings("SpringJavaInjectionPointsAutowiringInspection")
@Component
public class B9Cluster extends Cluster {
public B9Cluster(DiscoveryClient client, YarnService yarnService) {
super(
Constants.CLUSTER_B9,
Constants.COMPACTION_QUEUE_B9
);
}
}