All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.runtime.ThreadPoolConfig.jdp Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
io.quarkus.runtime.ThreadPoolConfig.coreThreads=The core thread pool size. This number of threads will always be kept alive.
io.quarkus.runtime.ThreadPoolConfig.growthResistance=The executor growth resistance.\n\nA resistance factor applied after the core pool is full; values applied here will cause that fraction\nof submissions to create new threads when no idle thread is available. A value of {@code 0.0f} implies that\nthreads beyond the core size should be created as aggressively as threads within it; a value of {@code 1.0f}\nimplies that threads beyond the core size should never be created.
io.quarkus.runtime.ThreadPoolConfig.keepAliveTime=The amount of time a thread will stay alive with no work.
io.quarkus.runtime.ThreadPoolConfig.maxThreads=The maximum number of threads. If this is not specified then\nit will be automatically sized to the greatest of 8 * the number of available processors and 200.\nFor example if there are 4 processors the max threads will be 200.\nIf there are 48 processors it will be 384.
io.quarkus.runtime.ThreadPoolConfig.prefill=Prefill core thread pool.\nThe core thread pool will be initialised with the core number of threads at startup
io.quarkus.runtime.ThreadPoolConfig.queueSize=The queue size. For most applications this should be unbounded
io.quarkus.runtime.ThreadPoolConfig.shutdownCheckInterval=The frequency at which the status of the thread pool should be checked during shutdown. Information about\nwaiting tasks and threads will be checked and possibly logged at this interval. Setting this key to an empty\nvalue disables the shutdown check interval.
io.quarkus.runtime.ThreadPoolConfig.shutdownInterrupt=The amount of time to wait for thread pool shutdown before tasks should be interrupted. If this value is\ngreater than or equal to the value for {@link \#shutdownTimeout}, then tasks will not be interrupted before\nthe shutdown timeout occurs.
io.quarkus.runtime.ThreadPoolConfig.shutdownTimeout=The shutdown timeout. If all pending work has not been completed by this time\nthen additional threads will be spawned to attempt to finish any pending tasks, and the shutdown process will\ncontinue




© 2015 - 2025 Weber Informatics LLC | Privacy Policy