All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.iotdb.session.subscription.consumer.SubscriptionPullConsumer Maven / Gradle / Ivy

The newest version!
/*
 * 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.session.subscription.consumer;

import org.apache.iotdb.rpc.subscription.config.ConsumerConstant;
import org.apache.iotdb.rpc.subscription.exception.SubscriptionException;
import org.apache.iotdb.session.subscription.payload.SubscriptionMessage;
import org.apache.iotdb.session.subscription.util.IdentifierUtils;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import java.time.Duration;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Properties;
import java.util.Set;
import java.util.SortedMap;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.ConcurrentSkipListMap;
import java.util.concurrent.ConcurrentSkipListSet;
import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.stream.Collectors;

/**
 * The {@link SubscriptionPullConsumer} corresponds to the pull consumption mode in the message
 * queue.
 *
 * 

User code needs to actively call the data retrieval logic, i.e., the {@link #poll} method. * *

Auto-commit for consumption progress can be configured in {@link #autoCommit}. * *

NOTE: It is not recommended to use the {@link #poll} method with the same consumer in a * multithreaded environment. Instead, it is advised to increase the number of consumers to improve * data retrieval parallelism. */ public class SubscriptionPullConsumer extends SubscriptionConsumer { private static final Logger LOGGER = LoggerFactory.getLogger(SubscriptionPullConsumer.class); private final boolean autoCommit; private final long autoCommitIntervalMs; private SortedMap> uncommittedMessages; private final AtomicBoolean isClosed = new AtomicBoolean(true); @Override boolean isClosed() { return isClosed.get(); } /////////////////////////////// ctor /////////////////////////////// protected SubscriptionPullConsumer(final SubscriptionPullConsumer.Builder builder) { super(builder); this.autoCommit = builder.autoCommit; this.autoCommitIntervalMs = builder.autoCommitIntervalMs; } public SubscriptionPullConsumer(final Properties properties) { this( properties, (Boolean) properties.getOrDefault( ConsumerConstant.AUTO_COMMIT_KEY, ConsumerConstant.AUTO_COMMIT_DEFAULT_VALUE), (Long) properties.getOrDefault( ConsumerConstant.AUTO_COMMIT_INTERVAL_MS_KEY, ConsumerConstant.AUTO_COMMIT_INTERVAL_MS_DEFAULT_VALUE)); } private SubscriptionPullConsumer( final Properties properties, final boolean autoCommit, final long autoCommitIntervalMs) { super( new Builder().autoCommit(autoCommit).autoCommitIntervalMs(autoCommitIntervalMs), properties); this.autoCommit = autoCommit; this.autoCommitIntervalMs = Math.max(autoCommitIntervalMs, ConsumerConstant.AUTO_COMMIT_INTERVAL_MS_MIN_VALUE); } /////////////////////////////// open & close /////////////////////////////// public synchronized void open() throws SubscriptionException { if (!isClosed.get()) { return; } super.open(); // set isClosed to false before submitting workers isClosed.set(false); // submit auto poll worker if enabling auto commit if (autoCommit) { uncommittedMessages = new ConcurrentSkipListMap<>(); submitAutoCommitWorker(); } } @Override public synchronized void close() { if (isClosed.get()) { return; } if (autoCommit) { // commit all uncommitted messages commitAllUncommittedMessages(); } super.close(); isClosed.set(true); } /////////////////////////////// poll & commit /////////////////////////////// public List poll(final Duration timeout) throws SubscriptionException { return poll(Collections.emptySet(), timeout.toMillis()); } public List poll(final long timeoutMs) throws SubscriptionException { return poll(Collections.emptySet(), timeoutMs); } public List poll(final Set topicNames, final Duration timeout) throws SubscriptionException { return poll(topicNames, timeout.toMillis()); } @Override public List poll(final Set topicNames, final long timeoutMs) throws SubscriptionException { // parse topic names from external source final Set parsedTopicNames = topicNames.stream().map(IdentifierUtils::parseIdentifier).collect(Collectors.toSet()); // poll messages final List messages = super.poll(parsedTopicNames, timeoutMs); // add to uncommitted messages if (autoCommit) { final long currentTimestamp = System.currentTimeMillis(); long index = currentTimestamp / autoCommitIntervalMs; if (currentTimestamp % autoCommitIntervalMs == 0) { index -= 1; } uncommittedMessages .computeIfAbsent(index, o -> new ConcurrentSkipListSet<>()) .addAll(messages); } return messages; } /////////////////////////////// commit /////////////////////////////// public void commitSync(final SubscriptionMessage message) throws SubscriptionException { super.ack(Collections.singletonList(message)); } public void commitSync(final Iterable messages) throws SubscriptionException { super.ack(messages); } public CompletableFuture commitAsync(final SubscriptionMessage message) { return super.commitAsync(Collections.singletonList(message)); } public CompletableFuture commitAsync(final Iterable messages) { return super.commitAsync(messages); } public void commitAsync(final SubscriptionMessage message, final AsyncCommitCallback callback) { super.commitAsync(Collections.singletonList(message), callback); } public void commitAsync( final Iterable messages, final AsyncCommitCallback callback) { super.commitAsync(messages, callback); } /////////////////////////////// auto commit /////////////////////////////// private void submitAutoCommitWorker() { final ScheduledFuture[] future = new ScheduledFuture[1]; future[0] = SubscriptionExecutorServiceManager.submitAutoCommitWorker( () -> { if (isClosed()) { if (Objects.nonNull(future[0])) { future[0].cancel(false); LOGGER.info("SubscriptionPullConsumer {} cancel auto commit worker", this); } return; } new AutoCommitWorker().run(); }, autoCommitIntervalMs); LOGGER.info("SubscriptionPullConsumer {} submit auto commit worker", this); } private class AutoCommitWorker implements Runnable { @Override public void run() { if (isClosed()) { return; } final long currentTimestamp = System.currentTimeMillis(); long index = currentTimestamp / autoCommitIntervalMs; if (currentTimestamp % autoCommitIntervalMs == 0) { index -= 1; } for (final Map.Entry> entry : uncommittedMessages.headMap(index).entrySet()) { try { ack(entry.getValue()); uncommittedMessages.remove(entry.getKey()); } catch (final Exception e) { LOGGER.warn("something unexpected happened when auto commit messages...", e); } } } } private void commitAllUncommittedMessages() { for (final Map.Entry> entry : uncommittedMessages.entrySet()) { try { ack(entry.getValue()); uncommittedMessages.remove(entry.getKey()); } catch (final Exception e) { LOGGER.warn("something unexpected happened when commit messages during close", e); } } } /////////////////////////////// builder /////////////////////////////// public static class Builder extends SubscriptionConsumer.Builder { private boolean autoCommit = ConsumerConstant.AUTO_COMMIT_DEFAULT_VALUE; private long autoCommitIntervalMs = ConsumerConstant.AUTO_COMMIT_INTERVAL_MS_DEFAULT_VALUE; @Override public Builder host(final String host) { super.host(host); return this; } @Override public Builder port(final int port) { super.port(port); return this; } @Override public Builder nodeUrls(final List nodeUrls) { super.nodeUrls(nodeUrls); return this; } @Override public Builder username(final String username) { super.username(username); return this; } @Override public Builder password(final String password) { super.password(password); return this; } @Override public Builder consumerId(final String consumerId) { super.consumerId(consumerId); return this; } @Override public Builder consumerGroupId(final String consumerGroupId) { super.consumerGroupId(consumerGroupId); return this; } @Override public Builder heartbeatIntervalMs(final long heartbeatIntervalMs) { super.heartbeatIntervalMs(heartbeatIntervalMs); return this; } @Override public Builder endpointsSyncIntervalMs(final long endpointsSyncIntervalMs) { super.endpointsSyncIntervalMs(endpointsSyncIntervalMs); return this; } @Override public Builder fileSaveDir(final String fileSaveDir) { super.fileSaveDir(fileSaveDir); return this; } @Override public Builder fileSaveFsync(final boolean fileSaveFsync) { super.fileSaveFsync(fileSaveFsync); return this; } public Builder autoCommit(final boolean autoCommit) { this.autoCommit = autoCommit; return this; } public Builder autoCommitIntervalMs(final long autoCommitIntervalMs) { this.autoCommitIntervalMs = Math.max(autoCommitIntervalMs, ConsumerConstant.AUTO_COMMIT_INTERVAL_MS_MIN_VALUE); return this; } @Override public SubscriptionPullConsumer buildPullConsumer() { return new SubscriptionPullConsumer(this); } @Override public SubscriptionPushConsumer buildPushConsumer() { throw new SubscriptionException( "SubscriptionPullConsumer.Builder do not support build push consumer."); } } /////////////////////////////// stringify /////////////////////////////// @Override public String toString() { return "SubscriptionPullConsumer" + this.coreReportMessage(); } @Override protected Map coreReportMessage() { final Map coreReportMessage = super.coreReportMessage(); coreReportMessage.put("autoCommit", String.valueOf(autoCommit)); return coreReportMessage; } @Override protected Map allReportMessage() { final Map allReportMessage = super.allReportMessage(); allReportMessage.put("autoCommit", String.valueOf(autoCommit)); allReportMessage.put("autoCommitIntervalMs", String.valueOf(autoCommitIntervalMs)); if (autoCommit) { allReportMessage.put("uncommittedMessages", uncommittedMessages.toString()); } return allReportMessage; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy