5. Selective Routing

The selective routing functionality allows to define which kind of data (which topics and which partitions) should be routed or not by Vortex Link. This is defined with the help of a black list and/or a white list. Each list is defined in a different file containing a partition.topic combination on each line. partition.topic combinations may contain wild-card ‘*’ characters.

Example :

partitionA.topicA
*.topicB
partitionB.*
A*.C

Each Vortex Link service can be configured to point to a black list file and/or a white list file with the help of link.blacklist.file and link.whitelist.file configuration properties.

When a white list is defined, partition.topic combinations not present in the white list will not be routed by Vortex Link. When a black list is defined, partition.topic combinations present in the black list will not be routed by Vortex Link. When both white list and black list are defined, black list has precedence over white list: partition.topic combinations present in both lists will not be routed by Vortex Link.

Different black lists and white lists can be defined in each different Vortex Link service of the system. This means that some partition.topic combinations may be routed from/to some sub systems/applications but not from/to some other sub systems/applications in the system.

caution
WARNING Partitions containing a wild-card ‘*’ character are never blocked. So user entities configured with partitions containing a wild-card ‘*’ character will always be able to send receive data on those partitions whatever is defined in the black and white lists.