org.apache.iotdb.db.subscription.agent.SubscriptionConsumerAgent Maven / Gradle / Ivy
/*
* 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.subscription.agent;
import org.apache.iotdb.commons.subscription.meta.consumer.ConsumerGroupMeta;
import org.apache.iotdb.commons.subscription.meta.consumer.ConsumerGroupMetaKeeper;
import org.apache.iotdb.mpp.rpc.thrift.TPushConsumerGroupMetaRespExceptionMessage;
import org.apache.iotdb.rpc.subscription.exception.SubscriptionException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.List;
import java.util.Objects;
import java.util.Set;
public class SubscriptionConsumerAgent {
private static final Logger LOGGER = LoggerFactory.getLogger(SubscriptionConsumerAgent.class);
private final ConsumerGroupMetaKeeper consumerGroupMetaKeeper;
public SubscriptionConsumerAgent() {
this.consumerGroupMetaKeeper = new ConsumerGroupMetaKeeper();
}
////////////////////////// ConsumerGroupMeta Lock Control //////////////////////////
protected void acquireReadLock() {
consumerGroupMetaKeeper.acquireReadLock();
}
protected void releaseReadLock() {
consumerGroupMetaKeeper.releaseReadLock();
}
protected void acquireWriteLock() {
consumerGroupMetaKeeper.acquireWriteLock();
}
protected void releaseWriteLock() {
consumerGroupMetaKeeper.releaseWriteLock();
}
////////////////////////// ConsumerGroupMeta Management Entry //////////////////////////
public TPushConsumerGroupMetaRespExceptionMessage handleSingleConsumerGroupMetaChanges(
ConsumerGroupMeta consumerGroupMetaFromCoordinator) {
acquireWriteLock();
try {
if (consumerGroupMetaFromCoordinator.isEmpty()) {
handleDropConsumerGroupInternal(consumerGroupMetaFromCoordinator.getConsumerGroupId());
} else {
handleSingleConsumerGroupMetaChangesInternal(consumerGroupMetaFromCoordinator);
}
return null;
} catch (Exception e) {
final String consumerGroupId = consumerGroupMetaFromCoordinator.getConsumerGroupId();
final String exceptionMessage =
String.format(
"Subscription: Failed to handle single consumer group meta changes for consumer group %s, because %s",
consumerGroupId, e.getMessage());
LOGGER.warn(exceptionMessage);
return new TPushConsumerGroupMetaRespExceptionMessage(
consumerGroupId, exceptionMessage, System.currentTimeMillis());
} finally {
releaseWriteLock();
}
}
private void handleSingleConsumerGroupMetaChangesInternal(
final ConsumerGroupMeta metaFromCoordinator) {
final String consumerGroupId = metaFromCoordinator.getConsumerGroupId();
final ConsumerGroupMeta metaInAgent =
consumerGroupMetaKeeper.getConsumerGroupMeta(consumerGroupId);
// if consumer group meta does not exist on local agent or creation time is inconsistent with
// meta from coordinator
if (Objects.isNull(metaInAgent)
|| metaInAgent.getCreationTime() != metaFromCoordinator.getCreationTime()) {
if (SubscriptionAgent.broker().isBrokerExist(consumerGroupId)) {
LOGGER.warn(
"Subscription: broker bound to consumer group [{}] has already existed when the corresponding consumer group meta does not exist on local agent, drop it",
consumerGroupId);
if (!SubscriptionAgent.broker().dropBroker(consumerGroupId)) {
final String exceptionMessage =
String.format(
"Failed to drop stale broker bound to consumer group [%s]", consumerGroupId);
LOGGER.warn(exceptionMessage);
throw new SubscriptionException(exceptionMessage);
}
}
consumerGroupMetaKeeper.removeConsumerGroupMeta(consumerGroupId);
consumerGroupMetaKeeper.addConsumerGroupMeta(consumerGroupId, metaFromCoordinator);
SubscriptionAgent.broker().createBroker(consumerGroupId);
return;
}
// TODO: Currently we fully replace the entire ConsumerGroupMeta without carefully checking the
// changes in its fields.
consumerGroupMetaKeeper.removeConsumerGroupMeta(consumerGroupId);
consumerGroupMetaKeeper.addConsumerGroupMeta(consumerGroupId, metaFromCoordinator);
}
public TPushConsumerGroupMetaRespExceptionMessage handleConsumerGroupMetaChanges(
List consumerGroupMetasFromCoordinator) {
acquireWriteLock();
try {
for (ConsumerGroupMeta consumerGroupMetaFromCoordinator : consumerGroupMetasFromCoordinator) {
try {
handleSingleConsumerGroupMetaChangesInternal(consumerGroupMetaFromCoordinator);
return null;
} catch (Exception e) {
final String consumerGroupId = consumerGroupMetaFromCoordinator.getConsumerGroupId();
final String exceptionMessage =
String.format(
"Subscription: Failed to handle single consumer group meta changes for consumer group %s, because %s",
consumerGroupId, e.getMessage());
LOGGER.warn(exceptionMessage);
return new TPushConsumerGroupMetaRespExceptionMessage(
consumerGroupId, exceptionMessage, System.currentTimeMillis());
}
}
return null;
} finally {
releaseWriteLock();
}
}
public TPushConsumerGroupMetaRespExceptionMessage handleDropConsumerGroup(
String consumerGroupId) {
acquireWriteLock();
try {
handleDropConsumerGroupInternal(consumerGroupId);
return null;
} catch (Exception e) {
final String exceptionMessage =
String.format(
"Subscription: Failed to drop consumer group %s, because %s",
consumerGroupId, e.getMessage());
LOGGER.warn(exceptionMessage);
return new TPushConsumerGroupMetaRespExceptionMessage(
consumerGroupId, exceptionMessage, System.currentTimeMillis());
} finally {
releaseWriteLock();
}
}
private void handleDropConsumerGroupInternal(String consumerGroupId) {
if (SubscriptionAgent.broker().isBrokerExist(consumerGroupId)) {
if (!SubscriptionAgent.broker().dropBroker(consumerGroupId)) {
final String exceptionMessage =
String.format("Failed to drop broker bound to consumer group [%s]", consumerGroupId);
LOGGER.warn(exceptionMessage);
throw new SubscriptionException(exceptionMessage);
}
} else {
LOGGER.warn(
"Subscription: broker bound to consumer group [{}] does not existed when the corresponding consumer group meta has already existed on local agent, ignore it",
consumerGroupId);
}
consumerGroupMetaKeeper.removeConsumerGroupMeta(consumerGroupId);
}
public boolean isConsumerExisted(String consumerGroupId, String consumerId) {
acquireReadLock();
try {
final ConsumerGroupMeta consumerGroupMeta =
consumerGroupMetaKeeper.getConsumerGroupMeta(consumerGroupId);
return Objects.nonNull(consumerGroupMeta) && consumerGroupMeta.containsConsumer(consumerId);
} finally {
releaseReadLock();
}
}
public Set getTopicsSubscribedByConsumer(String consumerGroupId, String consumerId) {
acquireReadLock();
try {
return consumerGroupMetaKeeper.getTopicsSubscribedByConsumer(consumerGroupId, consumerId);
} finally {
releaseReadLock();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy