using Confluent.Kafka;
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using System.Collections.Concurrent;
using System.Threading;
namespace EntrustSettle.EventBus
{
///
/// Kafka producer 连接池管理
/// 可以使用微软官方的对象池进行构造ObjectPool
///
public class KafkaConnectionPool : IKafkaConnectionPool
{
private readonly KafkaOptions _options;
private ConcurrentQueue> _producerPool = new();
private int _currentCount;
private int _maxSize;
public KafkaConnectionPool(IOptions options)
{
_options = options.Value;
_maxSize = _options.ConnectionPoolSize;
}
///
/// 取对象
///
///
public IProducer Producer()
{
if (_producerPool.TryDequeue(out var producer))
{
Interlocked.Decrement(ref _currentCount);
return producer;
}
var config = new ProducerConfig()
{
BootstrapServers = _options.Servers,
QueueBufferingMaxMessages = 10,
MessageTimeoutMs = 5000,
RequestTimeoutMs = 3000
};
producer = new ProducerBuilder(config)
.Build();
return producer;
}
///
/// 将对象放入连接池
///
///
///
public bool Return(IProducer producer)
{
if (Interlocked.Increment(ref _currentCount) <= _maxSize)
{
_producerPool.Enqueue(producer);
return true;
}
producer.Dispose();
Interlocked.Decrement(ref _currentCount);
return false;
}
public void Dispose()
{
_maxSize = 0;
_currentCount = 0;
while (_producerPool.TryDequeue(out var context))
{
context?.Dispose();
}
}
}
}