As far as I know both the linked list and array can grow without bounds or am I wrong ? But when I have gone through the documentation in the Executor Service I see this :
Unbounded queues. Using an unbounded queue (for example a
LinkedBlockingQueue without a predefined capacity) will cause new
tasks to wait in the queue when all corePoolSize threads are busy.
Thus, no more than corePoolSize threads will ever be created. (And the
value of the maximumPoolSize therefore doesn’t have any effect.)
So does the Unbounded Queue property changes when the LinkedBlockingQueue has a defined capacity ?
And this written for ArrayBlockingQueue:
Bounded queues. A bounded queue (for example, an ArrayBlockingQueue)
helps prevent resource exhaustion when used with finite
maximumPoolSizes, but can be more difficult to tune and control. Queue
sizes and maximum pool sizes may be traded off for each other: Using
large queues and small pools minimizes CPU usage, OS resources, and
context-switching overhead, but can lead to artificially low
throughput. If tasks frequently block (for example if they are I/O
bound), a system may be able to schedule time for more threads than
you otherwise allow. Use of small queues generally requires larger
pool sizes, which keeps CPUs busier but may encounter unacceptable
scheduling overhead, which also decreases throughput.
Why do you think that an
ArrayBlockingQueuecan grow without bounds? From its own documentation:In other words, once it gets full, it’s full – it doesn’t grow.
Are you getting confused with an
ArrayListby any chance – which is also backed by an array, but which expands this as required?Yes, hence why it’s described as “optionally-bounded” in its Javadocs. Furthermore, the docs state that (emphasis mine):