i have the following scenario:
inside a parent queue i have 3 child queues each of them pcq with different max-limit (10M, 20M, 30M) for 3 types of clients.
+parent(queue type default, max-limit 90M)
|_child1(queue type pcq, rate 10M, max-limit 90M)
|_child2(queue type pcq, rate 20M, max-limit 90M)
|_child3(queue type pcq, rate 30M, max-limit 90M)
i want to be able to when x 10M clients and y 20M clients and z 30M clients are all connected the 90M from the parent to be equaly distributed for (x+y+z) clients.
do i need to create a pcq queue for the parent with rate 0 or is there any other way?
thank you