Skip to content

Instantly share code, notes, and snippets.

@ctomc
Last active August 29, 2015 14:01
Show Gist options
  • Save ctomc/a09d8d70399a7162b33a to your computer and use it in GitHub Desktop.
Save ctomc/a09d8d70399a7162b33a to your computer and use it in GitHub Desktop.
testing WFLY-3337
hw:
1x 4 core cpu
configuration:
MaxFileDescriptorCount set to 4096
<worker name="default" />
<worker name="second-worker"/>
<worker name="third-worker" task-max-threads="50"/>
output:
12:12:39,039 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO001: Worker 'default' has auto-configured to 8 core threads with 64 task threads based on your 4 available processors
12:12:39,043 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO001: Worker 'second-worker' has auto-configured to 8 core threads with 64 task threads based on your 4 available processors
12:12:39,044 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO002: Worker 'third-worker' has auto-configured to 8 core threads based on your 4 available processors
-------------------------------------------------------------
hw:
1x 4 core cpu
configuration:
MaxFileDescriptorCount set to 1000
<worker name="default" />
<worker name="second-worker"/>
<worker name="third-worker" task-max-threads="50"/>
output:
12:17:53,618 WARN [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO004: Worker 'default' would auto-configure to 64 task threads based on 4 available processors, however your system does not have enough file descriptors configured to support this configuration. It is likely you will experience application degradation unless you increase your file descriptor limit.
12:17:53,620 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO001: Worker 'default' has auto-configured to 8 core threads with 44 task threads based on your 4 available processors
12:17:53,626 WARN [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO004: Worker 'second-worker' would auto-configure to 64 task threads based on 4 available processors, however your system does not have enough file descriptors configured to support this configuration. It is likely you will experience application degradation unless you increase your file descriptor limit.
12:17:53,626 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO001: Worker 'second-worker' has auto-configured to 8 core threads with 44 task threads based on your 4 available processors
12:17:53,628 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO002: Worker 'third-worker' has auto-configured to 8 core threads based on your 4 available processors
-------------------------------------------------------------
hw:
1x 4 core cpu
configuration:
MaxFileDescriptorCount set to 1000
<worker name="default"/>
<worker name="second-worker"/>
<worker name="third-worker" task-max-threads="50"/>
<worker name="4th-worker" io-threads="100"/>
output:
12:29:04,950 WARN [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO005: Your system is configured with 1000 file descriptors, but your current application server configuration will require a minimum of 1698 (and probably more than that); attempting to adjust, however you should expect stability problems unless you increase this number
12:29:04,954 WARN [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO004: Worker 'default' would auto-configure to 64 task threads based on 4 available processors, however your system does not have enough file descriptors configured to support this configuration. It is likely you will experience application degradation unless you increase your file descriptor limit.
12:29:04,954 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO001: Worker 'default' has auto-configured to 8 core threads with 33 task threads based on your 4 available processors
12:29:05,001 WARN [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO004: Worker 'second-worker' would auto-configure to 64 task threads based on 4 available processors, however your system does not have enough file descriptors configured to support this configuration. It is likely you will experience application degradation unless you increase your file descriptor limit.
12:29:05,002 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO001: Worker 'second-worker' has auto-configured to 8 core threads with 33 task threads based on your 4 available processors
12:29:05,004 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO002: Worker 'third-worker' has auto-configured to 8 core threads based on your 4 available processors
12:29:05,005 WARN [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO004: Worker '4th-worker' would auto-configure to 64 task threads based on 4 available processors, however your system does not have enough file descriptors configured to support this configuration. It is likely you will experience application degradation unless you increase your file descriptor limit.
12:29:05,005 INFO [org.wildfly.extension.io] (ServerService Thread Pool -- 31) WFLYIO003: Worker '4th-worker' has auto-configured to 33 task threads based on your 4 available processors
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment