[ 
https://issues.apache.org/jira/browse/DISPATCH-89?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16337894#comment-16337894
 ] 

ASF GitHub Bot commented on DISPATCH-89:
----------------------------------------

Github user ssorj commented on a diff in the pull request:

    https://github.com/apache/qpid-dispatch/pull/244#discussion_r163612727
  
    --- Diff: python/qpid_dispatch/management/qdrouter.json ---
    @@ -1126,6 +1126,106 @@
                 }
             },
     
    +        "router.config.exchange": {
    +            "description":"[EXPERIMENTAL] Defines a topic exchange.",
    +            "extends": "configurationEntity",
    +            "operations": ["CREATE", "DELETE"],
    +            "attributes": {
    +                "address": {
    --- End diff --
    
    Ken and I chatted about how to make things more consistent.
    
    In order to avoid two divergent conventions, I've added a request to change 
from "addr" to "address" to https://issues.apache.org/jira/browse/DISPATCH-918 .
    
    We looked at how the router currently does statistics and just generally 
audited the names here. We came to the following changes.
    
    Section | Current | Proposed
    -- | -- | --
    exchange | alternate | alternateAddress
      | deliveriesReceived | receivedCount
      | deliveriesDropped | droppedCount
      | deliveriesForwarded | forwardedCount
      | deliveriesAlternate | divertedCount
    binding | exchange | exchangeName
      | nextHop | nextHopAddress
      | phase | nextHopPhase
      | key | bindingKey
      | deliveriesMatched | matchedCount
    



> Model the legacy topic exchange behavior of qpidd
> -------------------------------------------------
>
>                 Key: DISPATCH-89
>                 URL: https://issues.apache.org/jira/browse/DISPATCH-89
>             Project: Qpid Dispatch
>          Issue Type: New Feature
>          Components: Routing Engine
>    Affects Versions: 0.2
>            Reporter: Ken Giusti
>            Assignee: Ken Giusti
>            Priority: Major
>
> With Qpidd, a user can define a binding from an Exchange to a target queue.  
> The binding uses a key that is compared to a message's subject field.  If the 
> key matches, the message is routed to the target queue for that binding.
> It should be possible to emulate this behavior using the dispatch router.
> Example:
> User defines a mappings from a target address (the 'exchange') to a different 
> target address(es) (the 'queue').  These mappings (the 'bindings') are driven 
> by a pattern match against the inbound message's subject field.
> Messages arriving at the router from any link whose target address has 
> bindings defined are not immediately routed.  Prior to routing, the message's 
> subject field is extracted and compared against each binding defined for the 
> target.  A list of new target addresses is created containing the target 
> address from each binding that satisfied the pattern match.  The message is 
> then routed to each new target address.
> The pattern syntax should be the same 'dotted string' notation from qpidd, 
> including '*' and "#' wildcarding.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@qpid.apache.org
For additional commands, e-mail: dev-h...@qpid.apache.org

Reply via email to