Routing service and Partition QoS

3 posts / 0 new
Last post
Offline
Last seen: 3 years 11 months ago
Joined: 08/25/2015
Posts: 32
Routing service and Partition QoS

Hi,

one more problem with routing service:

We're using partion QoS to separate the data. But when using routing service this QoS is not passed through. On the sender side I see that the routing service has no partition string set (which is fine because it should route all data to the client) and on the client side there's also no partition string.

How can I route all data with the correct partition QoS set? Do I need a routing service per partition? If so - how looks the configuration like?

 

Thx,

Christian

asanchez's picture
Offline
Last seen: 3 years 10 months ago
Joined: 11/16/2011
Posts: 50

Hi Christian,

In Routing Service the partitions are configured at the Session level. In a session, you can configure the publisher and subscriber QoS. Hence, all the TopicRoutes beloning to that session will use such partition QoS. That is, TopicRoute's input is created with the partition in SubscriberQos, and TopicRoute's output is created with the partition in PublisherQos.

In addition, you can configure as many Sessions as you need within a DomainRoute.

-Antonio

 

Offline
Last seen: 3 years 11 months ago
Joined: 08/25/2015
Posts: 32

Thx, this did the trick.