blob: b405101b2c7b7a4a83b7414e9263ed6bebd95931 [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.db.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.commons.client.async.AsyncConfigNodeIServiceClient;
import org.apache.iotdb.commons.client.async.AsyncDataNodeMPPDataExchangeServiceClient;
import org.apache.iotdb.commons.client.sync.SyncConfigNodeIServiceClient;
import org.apache.iotdb.commons.client.sync.SyncDataNodeInternalServiceClient;
import org.apache.iotdb.commons.client.sync.SyncDataNodeMPPDataExchangeServiceClient;
import org.apache.iotdb.commons.consensus.PartitionRegionId;
import org.apache.iotdb.db.conf.IoTDBConfig;
import org.apache.iotdb.db.conf.IoTDBDescriptor;
import org.apache.commons.pool2.KeyedObjectPool;
import org.apache.commons.pool2.impl.GenericKeyedObjectPool;
public class DataNodeClientPoolFactory {
private static final IoTDBConfig conf = IoTDBDescriptor.getInstance().getConfig();
private static final String CONFIG_NODE_CLIENT_POOL_THREAD_NAME =
"AsyncConfigNodeIServiceClientPool";
private static final String DATA_NODE_MPP_DATA_EXCHANGE_CLIENT_POOL_THREAD_NAME =
"AsyncDataNodeMPPDataExchangeServiceClientPool";
private DataNodeClientPoolFactory() {}
public static class SyncConfigNodeIServiceClientPoolFactory
implements IClientPoolFactory<TEndPoint, SyncConfigNodeIServiceClient> {
@Override
public KeyedObjectPool<TEndPoint, SyncConfigNodeIServiceClient> createClientPool(
ClientManager<TEndPoint, SyncConfigNodeIServiceClient> manager) {
return new GenericKeyedObjectPool<>(
new SyncConfigNodeIServiceClient.Factory(
manager,
new ClientFactoryProperty.Builder()
.setConnectionTimeoutMs(conf.getConnectionTimeoutInMS())
.setRpcThriftCompressionEnabled(conf.isRpcThriftCompressionEnable())
.setSelectorNumOfAsyncClientManager(conf.getSelectorNumOfClientManager())
.build()),
new ClientPoolProperty.Builder<SyncConfigNodeIServiceClient>().build().getConfig());
}
}
public static class AsyncConfigNodeIServiceClientPoolFactory
implements IClientPoolFactory<TEndPoint, AsyncConfigNodeIServiceClient> {
@Override
public KeyedObjectPool<TEndPoint, AsyncConfigNodeIServiceClient> createClientPool(
ClientManager<TEndPoint, AsyncConfigNodeIServiceClient> manager) {
return new GenericKeyedObjectPool<>(
new AsyncConfigNodeIServiceClient.Factory(
manager,
new ClientFactoryProperty.Builder()
.setConnectionTimeoutMs(conf.getConnectionTimeoutInMS())
.setRpcThriftCompressionEnabled(conf.isRpcThriftCompressionEnable())
.setSelectorNumOfAsyncClientManager(conf.getSelectorNumOfClientManager())
.build(),
CONFIG_NODE_CLIENT_POOL_THREAD_NAME),
new ClientPoolProperty.Builder<AsyncConfigNodeIServiceClient>().build().getConfig());
}
}
public static class SyncDataNodeInternalServiceClientPoolFactory
implements IClientPoolFactory<TEndPoint, SyncDataNodeInternalServiceClient> {
@Override
public KeyedObjectPool<TEndPoint, SyncDataNodeInternalServiceClient> createClientPool(
ClientManager<TEndPoint, SyncDataNodeInternalServiceClient> manager) {
return new GenericKeyedObjectPool<>(
new SyncDataNodeInternalServiceClient.Factory(
manager,
new ClientFactoryProperty.Builder()
.setConnectionTimeoutMs(conf.getConnectionTimeoutInMS())
.setRpcThriftCompressionEnabled(conf.isRpcThriftCompressionEnable())
.setSelectorNumOfAsyncClientManager(conf.getSelectorNumOfClientManager())
.build()),
new ClientPoolProperty.Builder<SyncDataNodeInternalServiceClient>().build().getConfig());
}
}
public static class SyncDataNodeMPPDataExchangeServiceClientPoolFactory
implements IClientPoolFactory<TEndPoint, SyncDataNodeMPPDataExchangeServiceClient> {
@Override
public KeyedObjectPool<TEndPoint, SyncDataNodeMPPDataExchangeServiceClient> createClientPool(
ClientManager<TEndPoint, SyncDataNodeMPPDataExchangeServiceClient> manager) {
return new GenericKeyedObjectPool<>(
new SyncDataNodeMPPDataExchangeServiceClient.Factory(
manager,
new ClientFactoryProperty.Builder()
.setConnectionTimeoutMs(conf.getConnectionTimeoutInMS())
.setRpcThriftCompressionEnabled(conf.isRpcThriftCompressionEnable())
.setSelectorNumOfAsyncClientManager(conf.getSelectorNumOfClientManager())
.build()),
new ClientPoolProperty.Builder<SyncDataNodeMPPDataExchangeServiceClient>()
.build()
.getConfig());
}
}
public static class AsyncDataNodeMPPDataExchangeServiceClientPoolFactory
implements IClientPoolFactory<TEndPoint, AsyncDataNodeMPPDataExchangeServiceClient> {
@Override
public KeyedObjectPool<TEndPoint, AsyncDataNodeMPPDataExchangeServiceClient> createClientPool(
ClientManager<TEndPoint, AsyncDataNodeMPPDataExchangeServiceClient> manager) {
return new GenericKeyedObjectPool<>(
new AsyncDataNodeMPPDataExchangeServiceClient.Factory(
manager,
new ClientFactoryProperty.Builder()
.setConnectionTimeoutMs(conf.getConnectionTimeoutInMS())
.setRpcThriftCompressionEnabled(conf.isRpcThriftCompressionEnable())
.setSelectorNumOfAsyncClientManager(conf.getSelectorNumOfClientManager())
.build(),
DATA_NODE_MPP_DATA_EXCHANGE_CLIENT_POOL_THREAD_NAME),
new ClientPoolProperty.Builder<AsyncDataNodeMPPDataExchangeServiceClient>()
.build()
.getConfig());
}
}
public static class ConfigNodeClientPoolFactory
implements IClientPoolFactory<PartitionRegionId, ConfigNodeClient> {
@Override
public KeyedObjectPool<PartitionRegionId, ConfigNodeClient> createClientPool(
ClientManager<PartitionRegionId, ConfigNodeClient> manager) {
return new GenericKeyedObjectPool<>(
new ConfigNodeClient.Factory(
manager,
new ClientFactoryProperty.Builder()
.setConnectionTimeoutMs(conf.getConnectionTimeoutInMS())
.setRpcThriftCompressionEnabled(conf.isRpcThriftCompressionEnable())
.setSelectorNumOfAsyncClientManager(conf.getSelectorNumOfClientManager())
.build()),
new ClientPoolProperty.Builder<ConfigNodeClient>().build().getConfig());
}
}
}