Fixed - RedissonNode unable to start due to ClassNotFoundException #3621
parent
dc4754377a
commit
383237229a
@ -0,0 +1,125 @@
|
|||||||
|
/**
|
||||||
|
* Copyright (c) 2013-2021 Nikita Koksharov
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
package org.redisson.config;
|
||||||
|
|
||||||
|
import org.redisson.api.RedissonNodeInitializer;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Redisson Node file configuration
|
||||||
|
*
|
||||||
|
* @author Nikita Koksharov
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class RedissonNodeFileConfig extends Config {
|
||||||
|
|
||||||
|
private int mapReduceWorkers = 0;
|
||||||
|
private RedissonNodeInitializer redissonNodeInitializer;
|
||||||
|
private Map<String, Integer> executorServiceWorkers = new HashMap<>();
|
||||||
|
|
||||||
|
public RedissonNodeFileConfig() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public RedissonNodeFileConfig(Config oldConf) {
|
||||||
|
super(oldConf);
|
||||||
|
}
|
||||||
|
|
||||||
|
public RedissonNodeFileConfig(RedissonNodeFileConfig oldConf) {
|
||||||
|
super(oldConf);
|
||||||
|
this.executorServiceWorkers = new HashMap<>(oldConf.executorServiceWorkers);
|
||||||
|
this.redissonNodeInitializer = oldConf.redissonNodeInitializer;
|
||||||
|
this.mapReduceWorkers = oldConf.mapReduceWorkers;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* MapReduce workers amount.
|
||||||
|
* <p>
|
||||||
|
* <code>0 = current_processors_amount</code>
|
||||||
|
* <p>
|
||||||
|
* <code>-1 = disable MapReduce workers</code>
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Default is <code>0</code>
|
||||||
|
*
|
||||||
|
* @param mapReduceWorkers workers for MapReduce
|
||||||
|
* @return config
|
||||||
|
*/
|
||||||
|
public RedissonNodeFileConfig setMapReduceWorkers(int mapReduceWorkers) {
|
||||||
|
this.mapReduceWorkers = mapReduceWorkers;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
public int getMapReduceWorkers() {
|
||||||
|
return mapReduceWorkers;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Executor service workers amount per service name
|
||||||
|
*
|
||||||
|
* @param workers mapping
|
||||||
|
* @return config
|
||||||
|
*/
|
||||||
|
public RedissonNodeFileConfig setExecutorServiceWorkers(Map<String, Integer> workers) {
|
||||||
|
this.executorServiceWorkers = workers;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
public Map<String, Integer> getExecutorServiceWorkers() {
|
||||||
|
return executorServiceWorkers;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Redisson node initializer
|
||||||
|
*
|
||||||
|
* @param redissonNodeInitializer object
|
||||||
|
* @return config
|
||||||
|
*/
|
||||||
|
public RedissonNodeFileConfig setRedissonNodeInitializer(RedissonNodeInitializer redissonNodeInitializer) {
|
||||||
|
this.redissonNodeInitializer = redissonNodeInitializer;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
public RedissonNodeInitializer getRedissonNodeInitializer() {
|
||||||
|
return redissonNodeInitializer;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Read config object stored in JSON format from <code>File</code>
|
||||||
|
*
|
||||||
|
* @param file object
|
||||||
|
* @return config
|
||||||
|
* @throws IOException error
|
||||||
|
*/
|
||||||
|
public static RedissonNodeFileConfig fromJSON(File file) throws IOException {
|
||||||
|
ConfigSupport support = new ConfigSupport();
|
||||||
|
return support.fromJSON(file, RedissonNodeFileConfig.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Read config object stored in YAML format from <code>File</code>
|
||||||
|
*
|
||||||
|
* @param file object
|
||||||
|
* @return config
|
||||||
|
* @throws IOException error
|
||||||
|
*/
|
||||||
|
public static RedissonNodeFileConfig fromYAML(File file) throws IOException {
|
||||||
|
ConfigSupport support = new ConfigSupport();
|
||||||
|
return support.fromYAML(file, RedissonNodeFileConfig.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue