Skip to content

dejanb/activemq-apollo

 
 

Repository files navigation

The Apollo Project

Synopsis

Apollo is a forked and stripped down Apache ActiveMQ message broker. It is focused on simplicity, stability and scalability.

Implemented Features

  • Topic style message routing
  • Queue style message routing
  • Persistent Messages
  • Message swapping: moves message out of memory to support unlimited queue sizes
  • Message Selectors
  • Queue Browsers
  • REST based management
  • Stomp Protocol Support

What makes Apollo Different?

Building the Source Code

Prerequisites:

Then run:

mvn install -Pdownload

if you're building it for the first time, or just

mvn install

if you already initialized the repo

Quick Start

We are still working on creating a binary distribution. Once that's created we will update these instructions to work off that distribution. Until then, they will be based on a built source distribution.

Running an Apollo Broker

A broker with a web based admin interface will be started by using the the Scala REPL console.

$ cd apollo-web
$ mvn -o scala:console 
... [output ommitted for brevity]
scala> val main = org.apache.activemq.apollo.web.Main
... [output ommitted for brevity]
scala> main run
... [output ommitted for brevity]
Web interface available at: http://localhost:8080/

You can point your web browser at http://localhost:8080/ to explore the management structure of the broker. Additional status objects will become visible once there are connected client which cause connections and destination management objects to be created.

Running Examples

A stomp client will be started by using the the Scala repl console.

$ cd apollo-stomp
$ mvn -o scala:console 
... [output ommitted for brevity]
scala> val client = org.apache.activemq.apollo.stomp.perf.StompLoadClient                 
client: org.apache.activemq.apollo.stomp.perf.StompLoadClient.type = 
--------------------------------------
StompLoadClient Properties
--------------------------------------
uri              = stomp://127.0.0.1:61613
destinationType  = queue
destinationCount = 1
sampleInterval   = 5000

--- Producer Properties ---
producers        = 1
messageSize      = 1024
persistent       = false
syncSend         = false
useContentLength = true
producerSleep    = 0
headers          = List()

--- Consumer Properties ---
consumers        = 1
consumerSleep    = 0
ack              = auto
selector         = null

The above creates a client variable which allows you to customize all the displayed properties. Those properties control how the client applies load to the STOMP broker. You could change the client configuration so that it uses messages with 20 byte contents and send and receive on topics instead of queues:

scala> client.messageSize = 20
scala> client.destinationType = "topic"

Once you are happy with the client configuration, you just run it and wait for it to report back the producer and consumer throughput rates.

scala> client.run                                                        
=======================
Press ENTER to shutdown
=======================

Producer rate: 155,783.906 per second, total: 778,960
Consumer rate: 154,345.969 per second, total: 771,770
Producer rate: 165,831.141 per second, total: 1,608,210
Consumer rate: 165,798.734 per second, total: 1,600,858

About

Experimental version of ActiveMQ 6.x

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Scala 49.4%
  • Java 48.1%
  • C# 0.8%
  • C++ 0.6%
  • Ruby 0.5%
  • Python 0.3%
  • PHP 0.3%