Code Monkey home page Code Monkey logo

messagerouter's Introduction

MessageRouter

Build Status

MessageRouter is a docker ready, configuration based message routing software which enables users to route messages based on JSON and XML selectors.

It interacts with message brokers such as RabbitMQ and evaluates the message body to route it to other queues.

Standard MQ brokers route messages inferring on headers to achieve high performance in message delivery. MessageRouter reads the body of the message, evaluates it against queries (written in JSON or XML format) and routes the message to the relevant queue. This approach might result in performance loss compared to header only routing, but enables for greater routing flexibility.

Features

  • Configuration based routing
  • Configuration HOT reload
  • Multiple broker support, current implementation provides RabbitMQ support, but the architecture can be easily expanded to other brokers such as Kafka

This is an example of how you can configure the router to inspect and route messages using JSON and XML expressions

{
  "GeneralOptions": {
    "Rules": [
      {
        "IncomingQueue": {
          "BrokerId": "rabbitmq",
          "MessageRetrieve": {
            "QueueName": "input_queue"
          }
        },
        "Conditions": [
          {
            "Query": "//note/to[@id='aa']",
            "Type": "application/xml"
          },
          {
            "Query": "$.Manufacturers[?(@.Int > 1 )]",
            "Type": "application/json"
          }
        ],
        "OutgoingQueue": {
          "BrokerId": "rabbitmq",
          "QueueName": "output_exchange"
        }
      }
    ],
    "Brokers": [
      {
        "Id": "rabbitmq",
        "ImplementationTypeName": "MessageRouter.Providers.RabbitMqBroker"
      }
    ]
  },
  "RabbitMqOptions": {
    "ConnectionString": "amqp://guest:guest@localhost:5672"
  },
  "RoutingInterval": "00:00:10"
}

messagerouter's People

Contributors

lucapisano avatar

Stargazers

 avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.