<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Spouting Shite &#187; Cloud Computing</title>
	<atom:link href="http://www.spoutingshite.com/category/cloud-computing/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.spoutingshite.com</link>
	<description>Cloud Computing isn&#039;t about technology; it&#039;s about enabling your technology led business model with lower capital investment</description>
	<lastBuildDate>Tue, 09 Aug 2011 16:50:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Scaling mysql to 25,000 INSERTS per second</title>
		<link>http://www.spoutingshite.com/2011/01/27/scaling-mysql-to-25000-inserts-per-second/</link>
		<comments>http://www.spoutingshite.com/2011/01/27/scaling-mysql-to-25000-inserts-per-second/#comments</comments>
		<pubDate>Thu, 27 Jan 2011 12:33:19 +0000</pubDate>
		<dc:creator>spoutingshite</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>

		<guid isPermaLink="false">http://www.spoutingshite.com/?p=625</guid>
		<description><![CDATA[Every large IT project has a bottle neck and if you look closely enough you will find it. A client of ours is working on a very complicated IT project and while I started keeping an eye on it during the early stages I found myself getting involved on a daily basis as the project [...]]]></description>
			<content:encoded><![CDATA[<p>Every large IT project has a bottle neck and if you look closely enough you will find it.</p>
<p>A client of ours is working on a very complicated IT project and while I started keeping an eye on it during the early stages I found myself getting involved on a daily basis as the project progressed because I found it so interesting.</p>
<p>Our client has a very diverse network of specialist application servers based all around the world. I signed an NDA so I can’t tell you who this client is, but I can talk about the technical challenges. The client has around 250 application nodes based in Canada, US, UK and Hong Kong. Each node was designed to work independently and had a full time member of staff churning through their work every day&#8230;.input in resulted in input out&#8230;.simples.</p>
<p>As each node was completely independent, and each node was a collection of around £150,000 of components sourced from various suppliers, it was impossible to know what was being done on the network&#8230;.there was no central management system. While the company was making money, it had no idea why some of the system operators could get much more throughput on the network and why some nodes kept breaking.</p>
<p>The client looked at using something like nagios and cacti to monitor the system but that didn’t give them the granularity that they wanted&#8230;.per second granularity on everything&#8230;.every biometric from the application, every system biometric and every hardware indicator. They wanted to know exactly what happened on their network so that they could pinpoint failure and learn why. Having this data would also allow the company to analyse workflow, pinpoint backlogs in production and reassign projects to other areas of the business&#8230;something that would increase workload on a global basis&#8230;.saving millions of pounds!</p>
<p>So, how do you collect around 100 pieces of data per second from 250 nodes based all around the world? Most people would use some sort of HTTP API to do this&#8230;.but seriously&#8230;would that scale to 25,000 data points per second? Yep, this is a job for an industrial strength message queue. Funny enough, <a href="http://www.stormmq.com">StormMQ </a>comes to the rescue <img src='http://www.spoutingshite.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>The client wrote an AMQP application in C that was installed on the nodes. This application collected the various data points and sent them to a StormMQ cluster in Sunderland (United Kingdom). Once there another <a href="http://www.amqp.org">AMQP</a> application in Head Office written in java took the messages out of the queue and after a little business logic would inject them into a database cluster. Simples?</p>
<p><a href="http://www.spoutingshite.com/files/2011/01/teldb1-MySQL-Command-Counters.png"><img class="alignright size-thumbnail wp-image-626" src="http://www.spoutingshite.com/files/2011/01/teldb1-MySQL-Command-Counters-150x150.png" alt="" width="150" height="150" /></a>After getting the proof of concept working we started fine tuning the system in iterations. The first of which was to get the AMQP client on the node to aggregate messages and send them on a per second basis&#8230;so we sent 1 message per node per second and not 100. This cut the bandwidth down because we were able to compress the data and get a good compression rate. On the other side of the system we then had to change the java client to be able to open a message, uncompress it and then process it according to some business logic. We were able to get messages at a rate of 3 messages per second from the queue but our mysql cluster was not able to handle the load. Our four mysql servers were managing around 2,000 inserts per second and were topping out&#8230;.this was our first bottleneck.</p>
<p>We upgraded the mysql servers by adding more processors, more RAM and faster hard disks. After assigning 10Gb of the RAM to innodb query cache and a few other tweeks we were able to push these to 4,000 inserts each per second. However, I was convinced we could get much more throughput because the servers were running with load averages of less than 1 and plenty of system resources.</p>
<p>At this stage the bottleneck was the java client which was managing around 10 messages per second. We needed to increase this significantly if we were going to be able to run a reliable system. The application was using a basic ‘poll’ principle on the MQ and not a ‘consume’&#8230;basically it was asking for messages from the MQ one at a time&#8230;rather than requesting a constant stream of messages. This is analogous to using POP3 for email rather than using a pure SMTP feed. After a re-write we increased this to 200 messages a second and mysql went crazy <img src='http://www.spoutingshite.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . The four servers averaged 12,000 inserts per second!</p>
<p><a href="http://www.spoutingshite.com/files/2011/01/teldb1-MySQL-Command-Counters1.png"><img class="size-thumbnail wp-image-627 alignnone" src="http://www.spoutingshite.com/files/2011/01/teldb1-MySQL-Command-Counters1-150x150.png" alt="" width="150" height="150" /></a><a href="http://www.spoutingshite.com/files/2011/01/teldb2-MySQL-Command-Counters.png"><img class="alignnone size-thumbnail wp-image-628" src="http://www.spoutingshite.com/files/2011/01/teldb2-MySQL-Command-Counters-150x150.png" alt="" width="150" height="150" /></a><a href="http://www.spoutingshite.com/files/2011/01/teldb3-MySQL-Command-Counters.png"><img class="alignnone size-thumbnail wp-image-629" src="http://www.spoutingshite.com/files/2011/01/teldb3-MySQL-Command-Counters-150x150.png" alt="" width="150" height="150" /></a><a href="http://www.spoutingshite.com/files/2011/01/teldb4-MySQL-Command-Counters.png"><img class="alignnone size-thumbnail wp-image-630" src="http://www.spoutingshite.com/files/2011/01/teldb4-MySQL-Command-Counters-150x150.png" alt="" width="150" height="150" /></a></p>
<p>However, I was convinced we could get more throughput and we had to! 200 messages a second wouldn’t even process our normal data throughput. So we went back to the drawing board with the database and the java client to see if we could get an order of magnitude better at processing the data. We made a few changes, firstly, we got the AMQP clients on the nodes to send 5 seconds of data in batches&#8230;.this decreased the number of messages from 60 per minute to 12. After we did this we made the java application more efficient by using memcache to store some of the data and we doubled the RAM allocated to the JVM. This increased our throughput to 400 messages per second. Finally we changed the format of the mysql databases so that each node had it’s own database rather than a table in a very large database. The results were amazing! We got 25,000 inserts throughput on all servers.</p>
<p><a href="http://www.spoutingshite.com/files/2011/01/teldb1-MySQL-Command-Counters2.png"><img class="alignnone size-thumbnail wp-image-632" src="http://www.spoutingshite.com/files/2011/01/teldb1-MySQL-Command-Counters2-150x150.png" alt="" width="150" height="150" /></a><a href="http://www.spoutingshite.com/files/2011/01/teldb2-MySQL-Command-Counters1.png"><img class="alignnone size-thumbnail wp-image-633" src="http://www.spoutingshite.com/files/2011/01/teldb2-MySQL-Command-Counters1-150x150.png" alt="" width="150" height="150" /></a><a href="http://www.spoutingshite.com/files/2011/01/teldb3-MySQL-Command-Counters1.png"><img class="alignnone size-thumbnail wp-image-634" src="http://www.spoutingshite.com/files/2011/01/teldb3-MySQL-Command-Counters1-150x150.png" alt="" width="150" height="150" /></a><a href="http://www.spoutingshite.com/files/2011/01/teldb4-MySQL-Command-Counters1.png"><img class="alignnone size-thumbnail wp-image-635" src="http://www.spoutingshite.com/files/2011/01/teldb4-MySQL-Command-Counters1-150x150.png" alt="" width="150" height="150" /></a></p>
<p>As far as we are concerned version 1 of the system is now delivered&#8230;.however&#8230;there is plenty of scope for upgrades. The StormMQ cluster that they purchased has a limit of around 10,000 messages a second, and due to the ‘first in, first out’ structure of a message queue it would be easy to add another java application and run this in parallel&#8230;.doubling your throughput immediately.</p>
<p>One of these days I will prepare a presentation for <a href="http://www.supermondays.org">SuperMondays </a>on this topic&#8230;I really enjoyed being involved.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.spoutingshite.com%2F2011%2F01%2F27%2Fscaling-mysql-to-25000-inserts-per-second%2F&amp;title=Scaling%20mysql%20to%2025%2C000%20INSERTS%20per%20second" id="wpa2a_2"><img src="http://www.spoutingshite.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.spoutingshite.com/2011/01/27/scaling-mysql-to-25000-inserts-per-second/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Cloud Bungee (cloudcamp London)</title>
		<link>http://www.spoutingshite.com/2010/11/03/cloudbungee/</link>
		<comments>http://www.spoutingshite.com/2010/11/03/cloudbungee/#comments</comments>
		<pubDate>Wed, 03 Nov 2010 07:56:30 +0000</pubDate>
		<dc:creator>spoutingshite</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[AMQP]]></category>
		<category><![CDATA[cloudcamp]]></category>
		<category><![CDATA[stormmq]]></category>

		<guid isPermaLink="false">http://www.spoutingshite.com/?p=618</guid>
		<description><![CDATA[Two weeks ago I spoke at the London CloudCamp organised by Chris Purrington from CohesiveFT. I used the opportunity to answer a question I am asked every day&#8230;What is a message queue? and how can I use a MQ in my enterprise? To get ready for the talk I spent a day with Matthew and Kevin from [...]]]></description>
			<content:encoded><![CDATA[<p>Two weeks ago I spoke at the London <a href="http://www.cloudcamp.org">CloudCamp </a>organised by <a href="http://uk.linkedin.com/in/chrispurrington">Chris Purrington</a> from <a href="http://www.cohesiveft.com">CohesiveFT</a>. I used the opportunity to answer a question I am asked every day&#8230;<strong>What is a message queue? and how can I use a MQ in my enterprise?</strong></p>
<p>To get ready for the talk I spent a day with <a href="http://uk.linkedin.com/in/mmnewman">Matthew </a>and <a href="http://uk.linkedin.com/in/yourfilm">Kevin </a>from <a href="http://www.your-film.com/">Your-Film</a> and created a video of me standing beside a white-board drawing diagrams and writing notes.</p>
<p>On the day I stood on stage, played the video on the overhead projector and spoke while the video played. It was a high risk move for me because it is very easy to mess up even the most simple presentations, but the presentation went very well.</p>
<p>I then recorded an intro and voice-over for the video&#8230;here it is:</p>
<p><a href="http://www.youtube.com/watch?v=PjI7CXGfmRM">httpv://www.youtube.com/watch?v=PjI7CXGfmRM</a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.spoutingshite.com%2F2010%2F11%2F03%2Fcloudbungee%2F&amp;title=Cloud%20Bungee%20%28cloudcamp%20London%29" id="wpa2a_4"><img src="http://www.spoutingshite.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.spoutingshite.com/2010/11/03/cloudbungee/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>We banked our first cheque! StormMQ is trading!</title>
		<link>http://www.spoutingshite.com/2010/08/25/we-banked-our-first-cheque-stormmq-is-trading/</link>
		<comments>http://www.spoutingshite.com/2010/08/25/we-banked-our-first-cheque-stormmq-is-trading/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 10:09:11 +0000</pubDate>
		<dc:creator>spoutingshite</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[AMQP]]></category>
		<category><![CDATA[electric vehicles]]></category>
		<category><![CDATA[smith electric]]></category>
		<category><![CDATA[stormmq]]></category>

		<guid isPermaLink="false">http://www.spoutingshite.com/?p=593</guid>
		<description><![CDATA[We started the development work for StormMQ over two years ago&#8230;you can only imagine how happy (and relieved) we were when we rolled out our first customer installation this month! StormMQ is a startup company who provide a managed message queue service using the AMQP protocol&#8230;.if you dont know what a message queue is you [...]]]></description>
			<content:encoded><![CDATA[<div id="attachment_596" class="wp-caption alignleft" style="width: 160px"><a href="http://www.spoutingshite.com/files/2010/08/IMG_0920.jpg"><br />
<img class="size-thumbnail wp-image-596" src="http://www.spoutingshite.com/files/2010/08/IMG_0920-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">A Smith Electric Vehicle</p></div>
<p>We started the development work for <a href="http://www.stormmq.com">StormMQ</a> over two years ago&#8230;you can only imagine how happy (and relieved) we were when we rolled out our first customer installation this month!</p>
<p>StormMQ is a startup company who provide a managed message queue service using the AMQP protocol&#8230;.if you dont know what a message queue is you can think of it as a system that can move vast amounts of data from one site of your business to another in a fast, secure and reliable way.</p>
<p>Smith Electrical Vehicles (<a href="http://www.smithelectric.com/">www.smithelectric.com</a>) approached us around four months ago and asked us to help them transfer data from their fleet of electric vehicles to their central database servers. It sounds like an easy project, but when you factor in the fact that they want to collect 50 data points a second, on 550 vehicles, on three different continents, over the GSM network. That’s 27,500 pieces of data a second!</p>
<div id="attachment_597" class="wp-caption alignright" style="width: 160px"><a href="http://www.spoutingshite.com/files/2010/08/IMG_0947.jpg"><img class="size-thumbnail wp-image-597" src="http://www.spoutingshite.com/files/2010/08/IMG_0947-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Custom built device</p></div>
<p>When we joined this project the development was already very advanced. Smith Electric had engaged a number of development companies to work together to produce the various components of the system including the device that was to be installed in the vehicles and the servers that were to collect the data and process it. We got involved when they wanted these various components to talk together.</p>
<p>Our first task was to write an application to get the data off the custom device in the vehicle in a secure way. Usually this would be an easy thing to do as the AMQP protocol combined with a SSL stack will do this very easily&#8230;but we had a small problem&#8230;this device only had 32k of RAM! We had to fit an <a href="http://www.amqp.org">AMQP</a> client and a custom SSL stack into that space! I don’t know how he did it, but <a href="http://stormmq.com/management-team">Eamon (our CTO)</a> got the job done in a few weeks and then spent a few days with hardware designers getting it working. In doing this Eamon also wrote a custom AMQP client for embedded C&#8230;.something that I am sure we will be able to reuse.</p>
<div id="attachment_598" class="wp-caption alignright" style="width: 160px"><a href="http://www.spoutingshite.com/files/2010/08/IMG_0939.jpg"><img class="size-thumbnail wp-image-598" src="http://www.spoutingshite.com/files/2010/08/IMG_0939-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">StormMQ Dedicated Cluster</p></div>
<p>Now that we had a system to get the data off the vehicle we needed to spec a message queue to manage it. For this task we installed a dedicated cluster of StormMQ in our new Middleborough datacentre. This was a mission critical service so we chose 2 DELL R815 servers with dual 8 core processors and 16Gb of RAM backed up by five commodity servers for redundancy and failover. This looks like overkill, but we wanted to spread the load across a few servers so that we could deal with bursts of data and also to protect against downtime due to potential hardware issues.</p>
<p>At the other side of the StormMQ cluster Smith Electric worked with another IT systems developer who built a cluster of five database and web servers. This cluster manages the Smith Electric telemetry application&#8230;a feat of software engineering which was written in Java and presented in PHP with a monster mysql backend. These were installed in the Smith head office in Kansas City, Missouri.</p>
<div id="attachment_600" class="wp-caption alignright" style="width: 160px"><a href="http://www.spoutingshite.com/files/2010/08/IMG_0917.jpg"><img class="size-thumbnail wp-image-600" src="http://www.spoutingshite.com/files/2010/08/IMG_0917-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">The moment it started working</p></div>
<p>Once all of the various components were written and tested individually we started a long and complicated task of connecting them together and testing them. It took a few days but we got there. It&#8217;s always a great feeling when something works for the first time but this was different. Not only had we worked for weeks on a really complicated and exciting project&#8230;it was the first time that StormMQ (our little startup) was being used in a production environment. The relief I felt was amazing&#8230;.we had built a really complicated product, released it and now somebody was using it&#8230;..I will never forget the feeling of elation and relief&#8230;.that night we had a few beers <img src='http://www.spoutingshite.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Once we sobered up the system underwent months of rigorous testing. All of this work was being led by the Smith Electric Technical Team and as we were a small component of the system we weren&#8217;t involved in most of this testing.  The testing process followed the normal (and rather rigorous) automotive testing process&#8230;the same way you would test any other component in a road vehicle. During these months I spent many hours sitting on the floor beside an electric vehicle with many laptops, soldering kits and miles of cable.  Once this testing was completed we started the drive tests&#8230;.we drive up and down every bloody road in the North East of England ;(</p>
<div id="attachment_599" class="wp-caption alignright" style="width: 160px"><a href="http://www.spoutingshite.com/files/2010/08/IMG_0918.jpg"><img class="size-thumbnail wp-image-599" src="http://www.spoutingshite.com/files/2010/08/IMG_0918-150x150.jpg" alt="" width="150" height="150" /></a><p class="wp-caption-text">Endless Testing....</p></div>
<p>The whole project took around seven months for eight full time software and hardware developers. While our involvement in the development project only took a few weeks we loved every minute of it&#8230;it’s not often that you get to heavily customise your product and put it into production on custom hardware in hundreds of electric vehicles&#8230;..we couldn’t have wished for a better first customer!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.spoutingshite.com%2F2010%2F08%2F25%2Fwe-banked-our-first-cheque-stormmq-is-trading%2F&amp;title=We%20banked%20our%20first%20cheque%21%20StormMQ%20is%20trading%21" id="wpa2a_6"><img src="http://www.spoutingshite.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.spoutingshite.com/2010/08/25/we-banked-our-first-cheque-stormmq-is-trading/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Safe Harbor is a red herring&#8230;it adds no value</title>
		<link>http://www.spoutingshite.com/2010/06/10/safe-harbor-is-a-red-herring-it-adds-no-value/</link>
		<comments>http://www.spoutingshite.com/2010/06/10/safe-harbor-is-a-red-herring-it-adds-no-value/#comments</comments>
		<pubDate>Thu, 10 Jun 2010 16:02:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[cloudcamp]]></category>
		<category><![CDATA[safe harbor]]></category>

		<guid isPermaLink="false">http://www.spoutingshite.com/?p=587</guid>
		<description><![CDATA[I was asked a question at CloudCamp Gateshead on Safe Harbor&#8230;and I nearly expoded&#8230;.its my favorite rant topic at the moment&#8230;here is a video:]]></description>
			<content:encoded><![CDATA[<p>I was asked a question at CloudCamp Gateshead on Safe Harbor&#8230;and I nearly expoded&#8230;.its my favorite rant topic at the moment&#8230;here is a video:</p>
<table border="0">
<tbody>
<tr>
<td><div id="viddlervideo-64661-ce2a8869" class="viddlervideo"><iframe frameborder="0" width="218" height="206" src="http://www.viddler.com/embed/ce2a8869/?player=player&amp;wmode=transparent"></iframe></div></td>
<td><iframe src="http://www.slideshare.net/slideshow/embed_code/4465711" width="300" height="261" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe><br/><br/></td>
</tr>
</tbody>
</table>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.spoutingshite.com%2F2010%2F06%2F10%2Fsafe-harbor-is-a-red-herring-it-adds-no-value%2F&amp;title=Safe%20Harbor%20is%20a%20red%20herring%26%238230%3Bit%20adds%20no%20value" id="wpa2a_8"><img src="http://www.spoutingshite.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.spoutingshite.com/2010/06/10/safe-harbor-is-a-red-herring-it-adds-no-value/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I love start-ups !</title>
		<link>http://www.spoutingshite.com/2010/06/09/i-love-start-ups/</link>
		<comments>http://www.spoutingshite.com/2010/06/09/i-love-start-ups/#comments</comments>
		<pubDate>Wed, 09 Jun 2010 19:42:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[message queue]]></category>
		<category><![CDATA[start-up]]></category>
		<category><![CDATA[stormmq]]></category>

		<guid isPermaLink="false">http://www.spoutingshite.com/?p=580</guid>
		<description><![CDATA[I love everything about start-ups&#8230;the anticipation, feverish activity, hard work, late nights and most of all the risk. The energy of a start-up is contagious, infectious and addictive. And it is because of this that I joined StormMQ. When I got involved in February the company had just started to get the private beta of its service [...]]]></description>
			<content:encoded><![CDATA[<p>I love everything about start-ups&#8230;the anticipation, feverish activity, hard work, late nights and most of all the risk. The energy of a start-up is contagious, infectious and addictive. And it is because of this that I joined <a href="http://stormmq.com/management-team">StormMQ</a>.</p>
<p>When I got involved in February the company had just started to get the private beta of its service out to a few people. Since then it has been a roller coaster that has seen me and Raph travel all around the UK and Ireland meeting customers, partners and future staff. Some of the highlights have included:</p>
<ul>
<li><a href="http://stormmq.com/annoucements/67-market-launch">We moved from private beta to fully launched service today!</a></li>
<li>We have signed up three trade partners
<ul>
<li>an application dev firm &lt;&lt; official announcement to follow</li>
<li>an outsourced IT firm &lt;&lt; official announcement to follow</li>
<li>an outsourced workflow company&lt;&lt; official announcement to follow</li>
</ul>
</li>
<li>Registered with RIPE to get our own /22 range &#8230; that’s four class C networks!</li>
<li>Bought a lorry load of equipment and put it into two different data centres</li>
<li>And the icing on the cake&#8230;signed up our first customer &lt;&lt; official announcement to follow</li>
</ul>
<p>We now have four full time staff (we plan to take on another four or five soon) and a day at the office can comprise of sales meetings, staff interviews, server builds (a few pics of our new DELL r810&#8242;s below), supplier negotiation and general strategy&#8230;.every day brings new and exciting problems, challenges and joys. Long let it continue!</p>
<p><img class="alignnone size-full wp-image-584" title="untitled2" src="http://www.spoutingshite.com/wp-content/uploads/2010/06/untitled2.png" alt="untitled2" width="100" height="75" /> <a href="http://www.spoutingshite.com/wp-content/uploads/2010/06/untitled3.png"><img class="alignnone size-full wp-image-585" title="untitled3" src="http://www.spoutingshite.com/wp-content/uploads/2010/06/untitled3.png" alt="untitled3" width="100" height="75" /></a> <a href="http://www.spoutingshite.com/wp-content/uploads/2010/06/untitled.png"><img class="alignnone size-full wp-image-583" title="untitled" src="http://www.spoutingshite.com/wp-content/uploads/2010/06/untitled.png" alt="untitled" width="100" height="75" /></a></p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.spoutingshite.com%2F2010%2F06%2F09%2Fi-love-start-ups%2F&amp;title=I%20love%20start-ups%20%21" id="wpa2a_10"><img src="http://www.spoutingshite.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.spoutingshite.com/2010/06/09/i-love-start-ups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Putting private data in the cloud may be breaking the law</title>
		<link>http://www.spoutingshite.com/2010/05/18/putting-private-data-in-the-cloud-may-be-breaking-the-law/</link>
		<comments>http://www.spoutingshite.com/2010/05/18/putting-private-data-in-the-cloud-may-be-breaking-the-law/#comments</comments>
		<pubDate>Tue, 18 May 2010 18:14:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[cloudcomputing]]></category>
		<category><![CDATA[data protection]]></category>

		<guid isPermaLink="false">http://www.spoutingshite.com/?p=571</guid>
		<description><![CDATA[At CloudCamp Gateshead I gave a presentation on how putting personal data in the cloud is a major problem for companies. This was a presentation that I borrowed from Daragh O&#8217;Brien (Castlebridge Associates). The presentation covered areas such as: The cloud computing promise &#8212; a nirvana where all your needs are catered for in a [...]]]></description>
			<content:encoded><![CDATA[<p>At CloudCamp Gateshead I gave a presentation on how putting personal data in the cloud is a major problem for companies. This was a presentation that I borrowed from Daragh O&#8217;Brien (<a href="http://www.castlebridge-associates.com/">Castlebridge Associates</a>).</p>
<p>The presentation covered areas such as:</p>
<ul>
<li>The cloud computing promise &#8212; a nirvana where all your needs are catered for in a scalable and magical way</li>
<li>The spanner in the works &#8212; the data commissioner (boooo!!)</li>
<li>The actual problems &#8212; not having a sufficient contract with your provider and the movement of data outside the legal jurisdiction</li>
<li>Nailing the exit closed &#8212; problems selling your business due to non-compliance with the various data protection acts</li>
<li>Recommendations &#8212; some basic examples of how we (StormMQ and Rozmic) help our clients to get around these issues.</li>
</ul>
<p>Have a look at the video and my slide deck below. I apologise for jumping around and my stuttered delivery&#8230;.I did not practice the presentation properly in advance!!</p>
<table border="0">
<tbody>
<tr>
<td><div id="viddlervideo-38062-7cdc4ee" class="viddlervideo"><iframe frameborder="0" width="218" height="206" src="http://www.viddler.com/embed/7cdc4ee/?player=player&amp;wmode=transparent"></iframe></div></td>
<td><iframe src="http://www.slideshare.net/slideshow/embed_code/4140758" width="300" height="261" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe><br/><br/></td>
</tr>
</tbody>
</table>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.spoutingshite.com%2F2010%2F05%2F18%2Fputting-private-data-in-the-cloud-may-be-breaking-the-law%2F&amp;title=Putting%20private%20data%20in%20the%20cloud%20may%20be%20breaking%20the%20law" id="wpa2a_12"><img src="http://www.spoutingshite.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.spoutingshite.com/2010/05/18/putting-private-data-in-the-cloud-may-be-breaking-the-law/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CloudCamp Ireland</title>
		<link>http://www.spoutingshite.com/2010/04/26/cloudcamp-ireland/</link>
		<comments>http://www.spoutingshite.com/2010/04/26/cloudcamp-ireland/#comments</comments>
		<pubDate>Mon, 26 Apr 2010 10:32:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>

		<guid isPermaLink="false">http://www.spoutingshite.com/?p=540</guid>
		<description><![CDATA[Last week we ran CloudCamp Dublin and CloudCamp Cork. CloudCamp Dublin was held at the Microsoft offices in Sandyford and attracted over 80 atendees. We started the event with a presentation by Daragh O&#8217;Brien from Castleridge Associates entitled Obscured by Clouds &#8211; Data Protection and Cloud Computing. This presentation went through all of the data protection issues that [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td>Last week we ran CloudCamp Dublin and CloudCamp Cork.</p>
<p>CloudCamp Dublin was held at the Microsoft offices in Sandyford and attracted over 80 atendees. We started the event with a presentation by <a href="http://castlebridge-associates.com/">Daragh O&#8217;Brien from Castleridge Associates</a> entitled <a href="http://castlebridge-associates.com/tutorials/free/dataprotection/obscured-clouds-data-protection-and-cloud-computing">Obscured by Clouds &#8211; Data Protection and Cloud Computing</a>. This presentation went through all of the data protection issues that are opened up by using a &#8216;cloud&#8217; provider.<br />
You can see Daragh&#8217;s slides here:<br />
<a href="http://castlebridge-associates.com/tutorials/free/dataprotection/obscured-clouds-data-protection-and-cloud-computing">http://castlebridge-associates.com/tutorials/free/dataprotection/obscured-clouds-data-protection-and-cloud-computing</a></td>
<td><div id="viddlervideo-37429-d040c5e6" class="viddlervideo"><iframe frameborder="0" width="218" height="206" src="http://www.viddler.com/embed/d040c5e6/?player=player&amp;wmode=transparent"></iframe></div></td>
</tr>
</tbody>
</table>
<p>After Daraghs presentation we had presentations from:</p>
<ul>
<li>Gary Ramsay from <a href="http://www.opsource.net/">OpSource</a><br />
<table border="0">
<tbody>
<tr>
<td><iframe src="http://www.slideshare.net/slideshow/embed_code/3831161" width="300" height="261" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe><br/><br/></td>
<td><div id="viddlervideo-37429-18f19753" class="viddlervideo"><iframe frameborder="0" width="218" height="206" src="http://www.viddler.com/embed/18f19753/?player=player&amp;wmode=transparent"></iframe></div></td>
</tr>
</tbody>
</table>
</li>
<li>Raph Cohn <a href="http://stormmq.com">StormMQ</a>. <a href="http://www.spoutingshite.com/wp-content/uploads/2010/04/StormMQ-CloudCamp.mov">You can download Raphs presentation here.</a></li>
<li>Andy Edmonds from <a href="http://www.intel.com">Intel</a>. <a href="http://andy.edmonds.be/wp-content/uploads/2010/04/cloudcamp-things-i-hate-about-cloud.pdf">You can download Andys presentation here.</a></li>
<li>Kevin O&#8217; Connor from <a href="http://www.hosting365.com">Hosting 365</a>.<br />
<table border="0">
<tbody>
<tr>
<td><iframe src="http://www.slideshare.net/slideshow/embed_code/3831159" width="300" height="261" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe><br/><br/></td>
</tr>
</tbody>
</table>
</li>
</ul>
<p>A special thanks goes to all the sponsors, including Microsoft, Flexiscale, Intel, Rozmic, OpSource, StormMQ and University College Cork.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.spoutingshite.com%2F2010%2F04%2F26%2Fcloudcamp-ireland%2F&amp;title=CloudCamp%20Ireland" id="wpa2a_14"><img src="http://www.spoutingshite.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.spoutingshite.com/2010/04/26/cloudcamp-ireland/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
<enclosure url="http://www.spoutingshite.com/wp-content/uploads/2010/04/StormMQ-CloudCamp.mov" length="5500798" type="video/quicktime" />
		</item>
		<item>
		<title>CloudStorm London</title>
		<link>http://www.spoutingshite.com/2010/03/20/cloudstorm-london/</link>
		<comments>http://www.spoutingshite.com/2010/03/20/cloudstorm-london/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 14:09:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[cloudstorm]]></category>

		<guid isPermaLink="false">http://www.spoutingshite.com/?p=530</guid>
		<description><![CDATA[On Monday and Tuesday last week I travelled to London to attend the Cloud Computing Congress Europe event at London’s Olympia conference venue. The event was packed full of speeches, demos and panel discussions for the Cloud Computing area. I especially liked the opportunity to spend some 1-2-1 time with the owners, developers and sales [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-535" title="header_cloud-london" src="http://www.spoutingshite.com/wp-content/uploads/2010/03/header_cloud-london-300x71.jpg" alt="header_cloud-london" width="300" height="71" />On Monday and Tuesday last week I travelled to London to attend the Cloud <a href="http://www.cloudcomputingcongress.com/">Computing Congress Europe</a> event at London’s Olympia conference venue. The event was packed full of speeches, demos and panel discussions for the Cloud Computing area. I especially liked the opportunity to spend some 1-2-1 time with the owners, developers and sales teams of the various participants.</p>
<p><img class="alignright size-medium wp-image-531" title="cloudstorm" src="http://www.spoutingshite.com/wp-content/uploads/2010/03/cloudstorm-300x61.png" alt="cloudstorm" width="300" height="61" />I especially liked the <a href="http://www.cloudstorm.org">CloudStorm</a> event on Tuesday afternoon. CloudStorm is a event that is run by Arvid Fossen from A-Server. The event is run around 10 times a year in various cities around the world. It gives around 8 companies in the ‘cloud’ area the opportunity to give a five minute pitch to the audience. Once the pitches are completed the audience have the opportunity to ask questions to the panel. This can be very helpful for attendees as you can ask general questions and ask various panel members to answer….for example questions on security, interoperability and data consistency are excellent for this type of forum.</p>
<p><img class="alignright size-medium wp-image-534" title="IMG_1069" src="http://www.spoutingshite.com/wp-content/uploads/2010/03/IMG_1069-225x300.jpg" alt="IMG_1069" width="225" height="300" />CloudStorm was opened up Hamish Macarthur from <a href="http://www.macarthurstroud.com">Macarthur Stroud International</a>. Hamish gave an excellent keynote speech on the topic of cloud services and how they are now moving from the niche arena to the mainstream.</p>
<p>Arvid Fossen, Product Management Director <a href="http://www.aserver.com">A-Server</a> spoke about how the A-Server platform can be used by a xSP to roll out cloud based services to your clients. I last spoke to Arvin at the <a href="http://www.spoutingshite.com/2009/03/27/cloudcamp-north-east-a-review/">CloudCamp Newcastle</a> event in early 2009 so it was an excellent opportunity to catch up. A-Server technology is being used by many xSP’s around the world including <a href="http://www.symetriq.com">SymetriQ</a>.</p>
<p>Raph Cohn, Managing Director of <a href="http://www.stormmq.com">StormMQ</a> was next. SrormMQ is a new entrant to the messaging market.<a href="http://www.stormmq.com"> StormMQ’s Messaging Cloud is a new AMQP-based cloud messaging service</a>.  It has four variations of service packaging including a fully managed, pay-per-byte cloud service; a shared, multitenant contended-cluster cloud service; a dedicated-cluster cloud service; and a colocated service where some components are installed in the customer’s data center. It is aimed at B2B applications. All messages are persisted so they will not be lost.</p>
<p>Raph and I go back a long way. He attended <a href="http://www.spoutingshite.com/2009/03/27/cloudcamp-north-east-a-review/">CloudCamp Newcastle</a> and <a href="http://www.spoutingshite.com/2009/09/18/cloudcamp-dublin-presentations/">Dublin</a> in the past. After meeting up with him a few weeks ago I decided to take a Non-Exec position at his company in February. We are on target to launch the BETA in a few weeks!</p>
<p><img class="alignright size-medium wp-image-532" title="IMG_1075" src="http://www.spoutingshite.com/wp-content/uploads/2010/03/IMG_1075-225x300.jpg" alt="IMG_1075" width="225" height="300" />Johnny Patterson, Account Director <a href="http://www.symetriq.com">SymetriQ</a> was next up. SymetriQ is an enterprise ready cloud computing infrastructure provider…with a special slant for users with elevated needs for security and resilience. Jonny has taken over at SymetriQ from Phil Huber. Phil was the host of the most recent CloudCamp Newcastle event.</p>
<p>I really liked finding out how each of the companies got to market, their successes and shortcomings. I find CloudStorm to be an excellent way to keep an eye on the market!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.spoutingshite.com%2F2010%2F03%2F20%2Fcloudstorm-london%2F&amp;title=CloudStorm%20London" id="wpa2a_16"><img src="http://www.spoutingshite.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.spoutingshite.com/2010/03/20/cloudstorm-london/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CloudCamp 2010 schedule</title>
		<link>http://www.spoutingshite.com/2010/03/01/cloudcamp-2010-schedule/</link>
		<comments>http://www.spoutingshite.com/2010/03/01/cloudcamp-2010-schedule/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 10:41:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>

		<guid isPermaLink="false">http://www.spoutingshite.com/?p=522</guid>
		<description><![CDATA[Today we announced our 2010 CloudCamp schedule for the North of England and Ireland. The events are: Dublin 14th April 2010 Cork 15th April 2010 Durham, 5th May 2010 Leeds, 6th May 2010 I hope that we have not taken on too much!]]></description>
			<content:encoded><![CDATA[<p><img class="alignright size-medium wp-image-524" title="logo" src="http://www.spoutingshite.com/wp-content/uploads/2010/03/logo-300x68.png" alt="logo" width="300" height="68" />Today we announced our 2010 CloudCamp schedule for the North of England and Ireland. The events are:</p>
<ul>
<li><a href="http://www.cloudcamp.org/dublin/2010-04-14">Dublin 14th April 2010</a></li>
<li><a href="http://www.cloudcamp.org/cork/2010-04-15">Cork 15th April 2010</a></li>
<li><a href="http://www.cloudcamp.org/north-east-england/2010-05-05">Durham, 5th May 2010</a></li>
<li><a href="http://www.cloudcamp.org/leeds/2010-05-06">Leeds, 6th May 2010</a></li>
</ul>
<p>I hope that we have not taken on too much!</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.spoutingshite.com%2F2010%2F03%2F01%2Fcloudcamp-2010-schedule%2F&amp;title=CloudCamp%202010%20schedule" id="wpa2a_18"><img src="http://www.spoutingshite.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.spoutingshite.com/2010/03/01/cloudcamp-2010-schedule/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CloudComputing Congress Europe</title>
		<link>http://www.spoutingshite.com/2010/02/15/cloudcomputing-congress-europe/</link>
		<comments>http://www.spoutingshite.com/2010/02/15/cloudcomputing-congress-europe/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 10:02:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Cloud Computing]]></category>
		<category><![CDATA[cloud computing congress europe]]></category>

		<guid isPermaLink="false">http://www.spoutingshite.com/?p=519</guid>
		<description><![CDATA[I am looking forward to attending the Cloud Computing Congress Europe event at Olympia in London on March 15 &#38; 16th. I attend quite a few CloudCamp events every year and they are a great way to meet other developers in the CloudComputing space, but events like the CloudComputing Congress allow me to meet with [...]]]></description>
			<content:encoded><![CDATA[<p>I am looking forward to attending the <a href="http://www.cloudcomputingcongress.com/">Cloud Computing Congress Europe</a> event at Olympia in London on March 15 &amp; 16th.</p>
<p>I attend quite a few <a href="http://www.cloudcamp.com">CloudCamp </a>events every year and they are a great way to meet other developers in the CloudComputing space, but events like the CloudComputing Congress allow me to meet with some of the business leaders&#8230;both users and innovators.</p>
<p>Have a look at the <a href="http://www.cloudcomputingcongress.com/conference/cloud-computing-forum.html">impressive line up of speakers</a>&#8230;they include top execs from Rackspace, CA, Royal Mail and a few public sector people too.</p>
<p><a class="a2a_dd a2a_target addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.spoutingshite.com%2F2010%2F02%2F15%2Fcloudcomputing-congress-europe%2F&amp;title=CloudComputing%20Congress%20Europe" id="wpa2a_20"><img src="http://www.spoutingshite.com/wp-content/plugins/add-to-any/share_save_171_16.png" width="171" height="16" alt="Share"/></a></p>]]></content:encoded>
			<wfw:commentRss>http://www.spoutingshite.com/2010/02/15/cloudcomputing-congress-europe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

