Github user bhupeshchawda commented on a diff in the pull request: https://github.com/apache/apex-malhar/pull/358#discussion_r73326138 --- Diff: library/src/main/java/com/datatorrent/lib/db/jdbc/AbstractJdbcPollInputOperator.java --- @@ -286,149 +146,119 @@ public AbstractJdbcPollInputOperator() public void setup(OperatorContext context) { super.setup(context); + intializeDSLContext(); + if (scanService == null) { + scanService = Executors.newScheduledThreadPool(partitionCount); --- End diff -- This means, if the number of partitions are set to more than one, then a threadpool with multiple threads will be created. I think we just need a single thread.
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---