yeah007
yeah007
This issue happened intermittently in large deployment environment. The sample codes is: RExecutorFuture future = executor.scheduleWithFixedDelay(task, schedule.initialDelayMs(), schedule.intervalMs(), TimeUnit.MILLISECONDS); future.whenComplete(((o, e) -> { if (e != null) { String resourceId...
In my test environments, the tasks created RScheduledExecutorService.submit can be picked up but the task created by RScheduledExecutorService.schedule() cannot. Even after several hours, the scheduled tasks still cannot be picked...