You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@rocketmq.apache.org by GitBox <gi...@apache.org> on 2021/12/24 07:50:19 UTC

[GitHub] [rocketmq-streams] lizhiboo opened a new issue #109: BatchSize is not settable from JoinWindow

lizhiboo opened a new issue #109:
URL: https://github.com/apache/rocketmq-streams/issues/109


   ```java
   public abstract class AbstractSink extends BasedConfigurable implements ISink<AbstractSink>, ILifeCycle {
   
       private static final Log logger = LogFactory.getLog(AbstractSink.class);
       public static String TARGET_QUEUE = "target_queue";//指定发送queue
       public static final int DEFAULT_BATCH_SIZE = 3000;
       protected transient IMessageCache<IMessage> messageCache;
       protected volatile int batchSize = DEFAULT_BATCH_SIZE;
   ```
   batchSize is not settable from JoinWindow, sometimes occur send message exceed 4M in RocketMQ


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscribe@rocketmq.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org