blob: 8e2d23af7df70253e82664dd6dd0ad59dfad13c4 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.apache.iotdb.consensus.multileader.client;
import org.apache.iotdb.common.rpc.thrift.TEndPoint;
import org.apache.iotdb.commons.client.ClientFactoryProperty;
import org.apache.iotdb.commons.client.ClientManager;
import org.apache.iotdb.commons.client.ClientPoolProperty;
import org.apache.iotdb.commons.client.IClientPoolFactory;
import org.apache.iotdb.consensus.config.MultiLeaderConfig;
import org.apache.commons.pool2.KeyedObjectPool;
import org.apache.commons.pool2.impl.GenericKeyedObjectPool;
public class MultiLeaderConsensusClientPool {
private MultiLeaderConsensusClientPool() {}
public static class SyncMultiLeaderServiceClientPoolFactory
implements IClientPoolFactory<TEndPoint, SyncMultiLeaderServiceClient> {
private final MultiLeaderConfig config;
public SyncMultiLeaderServiceClientPoolFactory(MultiLeaderConfig config) {
this.config = config;
}
@Override
public KeyedObjectPool<TEndPoint, SyncMultiLeaderServiceClient> createClientPool(
ClientManager<TEndPoint, SyncMultiLeaderServiceClient> manager) {
return new GenericKeyedObjectPool<>(
new SyncMultiLeaderServiceClient.Factory(
manager,
new ClientFactoryProperty.Builder()
.setConnectionTimeoutMs(config.getRpc().getConnectionTimeoutInMs())
.setRpcThriftCompressionEnabled(config.getRpc().isRpcThriftCompressionEnabled())
.setSelectorNumOfAsyncClientManager(
config.getRpc().getSelectorNumOfClientManager())
.build()),
new ClientPoolProperty.Builder<SyncMultiLeaderServiceClient>().build().getConfig());
}
}
public static class AsyncMultiLeaderServiceClientPoolFactory
implements IClientPoolFactory<TEndPoint, AsyncMultiLeaderServiceClient> {
private final MultiLeaderConfig config;
private static final String MULTI_LEADER_CONSENSUS_CLIENT_POOL_THREAD_NAME =
"MultiLeaderConsensusClientPool";
public AsyncMultiLeaderServiceClientPoolFactory(MultiLeaderConfig config) {
this.config = config;
}
@Override
public KeyedObjectPool<TEndPoint, AsyncMultiLeaderServiceClient> createClientPool(
ClientManager<TEndPoint, AsyncMultiLeaderServiceClient> manager) {
return new GenericKeyedObjectPool<>(
new AsyncMultiLeaderServiceClient.Factory(
manager,
new ClientFactoryProperty.Builder()
.setConnectionTimeoutMs(config.getRpc().getConnectionTimeoutInMs())
.setRpcThriftCompressionEnabled(config.getRpc().isRpcThriftCompressionEnabled())
.setSelectorNumOfAsyncClientManager(
config.getRpc().getSelectorNumOfClientManager())
.build(),
MULTI_LEADER_CONSENSUS_CLIENT_POOL_THREAD_NAME),
new ClientPoolProperty.Builder<AsyncMultiLeaderServiceClient>().build().getConfig());
}
}
}