ScheduledTasks can burn up TCP connections

Description

In windows there is an outgoing TCP connection limit of 5000 (though configurable)

We have a server with many instances of our application on it. It is a beefy server and it can handle it in terms of resources.

Our application sometimes have a scheduled task that we run every 30 seconds. Sometimes when our servers are some load those scheduled tasks get a little bit behind, meaning a scheduled task starts when the last one isn't finished, and when the conditions are just right our server uses all 5000 connections and most things do not work. Upon investigation we find that many of the connections are scheduled tasks getting behind.

We have a fix that has prevents lucee's scheduled tasks from starting when the scheduled task is already running, Obviously, this isn't the only thing we changed to improve the stability of our app, but we feel this (or something like it) is a good change. I am logging the issue so you are aware, and hope you would consider the pending pull request.

Environment

windows server 2012 R2

Attachments

1
  • 28 Mar 2019, 04:40 pm

Activity

Show:

Zac Spitzer 29 March 2019 at 10:38

could you add a log warning message when a task isn't run because a previous task is already running?

https://github.com/lucee/Lucee/blob/5.3/core/src/main/java/lucee/runtime/schedule/ScheduledTaskThread.java#L190

Michael Offner 28 March 2019 at 16:40

added a flag to control if you have more than one thread running at time or not

Michael Offner 25 January 2016 at 16:48

this also needs a setting in the admin to enable/disable concurrent threads running for scheduled tasks.

Brad Wood 20 November 2015 at 22:36

I've actually been wanting this same thing-- I have a client right now with a scheduled task that runs every 30 seconds and when it gets backed up there can be dozens of the scheduled task running at once. Today I actually restarted their server with 70 instances of the scheduled task running.

Fixed

Details

Assignee

Reporter

Priority

Fix versions

New Issue warning screen

Before you create a new Issue, please post to the mailing list first https://dev.lucee.org

Once the issue has been verified, one of the Lucee team will ask you to file an issue

Sprint

Affects versions

Created 20 November 2015 at 22:25
Updated 9 April 2019 at 08:13
Resolved 29 March 2019 at 20:54