OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

amqp message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Global addressing model - brain dump


For the Management spec I also need the Addressing spec to make progress, so I’m now taking a fresh look at this.

 

From the F2Fs I recall that our biggest holdup was that we’ve got tension between several distinct goals for addressing expressions:

  1. An address _expression_ should enable a “client” to find a “server” on an IP network to establish an AMQP TLS-first (5671) or TLS-upgrade (5672) connection, establish link(s) and transfer messages. The address _expression_ therefore needs to hold DNS/IP/TCP addressing information, a protocol selector, and a link target.
  2. An address _expression_ should enable a “sender” to have messages routed to a “receiver” inside a (yet poorly defined) AMQP network and fully abstracting the underlying IP layer, whereby the “receiver” address is a logical construct that doesn’t contain network-related information. With such an address, it should be possible to find the receiving container (and node) by ways of:
    1. resolving the logical address to container name/location OR
    2. evaluating routing rules based on filter expressions that indirectly yield a container location
  3. An address _expression_ should enable a “sender” to route messages to a “receiver” inside a singular AMQP container, where address expressions correspond directly to node names inside of said container.

 

We also have amqp/amqps URIs being used in the wild based on the current draft and I don’t want to break those.

 

Here’s a proposal for an extended URI format that aims to hit all the goals at once:

 

{ amqp | amqps } : [ //user:key@ip-endpoint/ ] [ (container-name)/ ] [ [$] node-path ]

 

I’ll start the explanation with examples, because they’ll probably tell a whole lot of the story already:

  • amqps://broker.example.com/queue1 – DNS qualified address of a TCP/IP endpoint of an AMQP container with path for the “queue1” AMQP node
  • amqp:(london-branch-34)/atm – Logical AMQP network address of “london-branch-34” with path for the “atm” AMQP node
  • amqps://megabank.example.com/(london-branch-34)/atm – DNS qualified address of a “gateway” into an AMQP network, with logical AMQP network address as suffix
  • amqp:()/control – Anonymous AMQP network address to be resolved into a container location by evaluating message metadata, with path for the “control” node on the resulting container
  • somewhere – Local container address of the “something” AMQP node
  • $somewhere – AMQP reserved local container address

 

To start, I’m splitting up the AMQP notion of container into two distinct concepts: “gateway” and “container”.

  • A gateway is a TCP/IP listener that speaks the AMQP wire protocol. Clients establish connections and sessions with gateways. Gateways are onramps into AMQP networks.
  • A container is a host for AMQP nodes. Multiple containers may be interrelated (and opportunistically interconnected) to form a logical network, with lookup mechanisms that allow resolving logical names to specific containers.
  • Each container MUST have a gateway. Each configured relationship between containers holds information about which gateway ought to be used to reach the respective container. The configured destination gateway for any container MAY, however, be an intermediary, meaning it might take one or more further network resolution/routing steps to reach the destination container.
  • Not all gateways have to be containers. A gateway can just do connection/session handling and never host nodes and/or take ownership of links; it might be a pure relay bridging sessions to another gateway.

 

With the URI format, I am proposing a three-layer addressing model:

  • With DNS/IP addressing in the ip-endpoint section, you pick an AMQP endpoint as gateway into an AMQP network.
  • With container-name, you pick the AMQP container you want to communicate with via the chosen gateway. If omitted, the container is thought to be directly associated with “this” gateway (like today). If the container-name _expression_ is present but empty, it’s up to the gateway rules/configuration to determine the destination container based on the message/link properties or other criteria.
  • With node-path, you  pick the AMQP node you want to route/link to inside the chosen/resolved container.

 

 

With a message addressed to amqps://megabank.example.com/(london-branch-34)/atm, a client first resolves the DNS name and IP address to some AMQP gateway instance via DNS and/or a load balancer, connects, and establishes a session – or reuses an existing session to that gateway.

 

Then, the client will either attempt to attach a link to (london-branch-34)/atm on the gateway-associated container, or identify an already existing link. Alternatively, it might attempt to route to said address via the container’s anonymous terminus by using it in the “properties:to” property.

 

How the (container-name) destination gets resolved is up to the container. In a simple case, a container might maintain a routing table with {container-name, gateway ip-endpoint} pairs, and will create/reuse connections/sessions to the listed gateways for routing/linking to the respective containers. The routing table may point to intermediary gateways. For link routing, the “(container-name)/node-path” _expression_ serves as the link target name in all containers acting as intermediaries. It resolves to node-path on the container that self-identifies as the given container-name.

 

In effect, you can attach a link to “(container-name)/node-path” on any container on a network supporting global addressing, and the container will then patch that link through to the next hop network destination configured for that container name, and until it gets to the target container. For anonymous terminus routing, messages get routed along to the next container’s anonymous terminus. The “routing cookies” spec then applies for how to establish reply routes.

 

 

Thoughts?



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]