Friday, 1 May 2015

Micro Services with RabbitMQ and Docker

Todays experiment was to look at using RabbitMQ in docker to create a micro services framework.  First steps were to download docker and get it running under Windows 8.

Docker doesn't run under Windows as it uses a number of Linux kernel commands to run the virtualisation.  Instead it runs in a Linux VM which has been made easier by the Docker people by using an application called Boot2Docker.  Once everything is downloaded, you just follow the instructions to setup up Boot2Docker (I was setting it up to run on command line) and test docker by running'docker ps'.

Once docker was running I then pulled the rabbitmq docker file down from the main repo 'docker pull rabbitmq'. To run a simple rabbitmq service its then just a matter of running the docker container.  However, because I wanted to contact the container from my Windows host I had to publish the rabbitmq default port (5672).

docker run -d -p 5672 -e RABBITMQ_NODENAME=my-rabbit --name some-rabbit rabbitmq:3

Now that the rabbitmq container was running and exposing its port I needed to connect to it.  I chose a simple ruby client (bunny Gem).


require "bunny"



# Start a communication session with RabbitMQ

conn = Bunny.new("amqp://guest:guest@192.168.59.103:32769")

conn.start



# open a channel

ch = conn.create_channel



# declare a queue

q  = ch.queue("test1")



# publish a message to the default exchange which then gets routed to this queue

q.publish("Hello, everybody!")



# fetch a message from the queue

delivery_info, metadata, payload = q.pop



puts "This is the message: #{payload}"



# close the connection

conn.stop



I did get caught out with the connection string.  Because the container is running in the boot2docker vm its actually exposing its rabbitMQ port through this.  Therefore, I needed to connect to the boot2docker vm first on the port forwarded to 5672.
Working out the connection string

'boot2docker ip' gives the ip address of the vm and using 'docker port some-rabbit 5672' gives the port that boot2docker is forwarding to 5672.  This then gave me the connection string for the client to use and bingo, it worked.
Success



Thursday, 30 April 2015

Adventures in Micro Services with Kite and Go

Installation 

So first off I needed to install the Go binaries (for windows 8 x64 for me). Next on my shopping list was an IDE (probably not needed but I thought I would check out liteide) and to test the installation of Go with a Hello World.
Hello World - Go
Next to install Kite. For this I followed the instructions from the Kite site and used the 'go get <package>' command.  First of all I had to set the GoPath which sets the local repo for external installs.  Once set it was time to use the go get command to pull kite from GitHub.  For this to pull from GitHub I needed the Git binaries installed and on the path.  I then tried to run the go get command and found another error, this time I needed mercurial.

Once I had mercurial installed I then ran into some build errors (logger.go).  It all seemed to stem from the Kite logger that was intercepting SIG *nix calls and logging them.  As I was running on Windows, the syscall library of Go doesn't have the matching signals so I had to go into the logger code and comment out the lines referencing the SIG constant (SIGUSR2) and the relevant imports.  There are a few posts mentioning this inconsistency in Go but I was over that hurdle and into the Kite Hello World.

I copied the code from the Kite site and plugged it in.

First Kite

All compiled nicely and so I hit run to see if my first kite would serve.  Hitting run the thing popped into life and instantly started serving (and annoying windows firewall).  Next I needed the other kite that called this Kite with a value and then listened for the return.
Second Kite
Once I had compiled the second Kite I set the first one running and then contacted it via the second one and voila I have my answer!


Success

Monday, 16 February 2015

Map Test

Using the OpenSpace API I have been playing with the polygon mapper.  I will continue to increase the complexity of the system over the next couple of days. Open Space Web-Map builder Code
Today I have updated the map to include an overlay displaying the coordinates.