rainerschamm opened a new pull request, #14821:
URL: https://github.com/apache/iceberg/pull/14821

   Added a new config option:
   
   ```
     private static final String WORKER_POLL_DURATION_MS_PROP = 
"iceberg.worker.poll.duration-ms";
     private static final int WORKER_POLL_DURATION_MS_DEFAULT = 0;
   ```
   
   I kept the duration at 0 so that there in effect no change to the existing 
behavior in Worker.java:
   
   ```
      void process() {
   -    consumeAvailable(Duration.ZERO);
   +    consumeAvailable(pollDuration);
      }
   ```


-- 
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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to