More Career Advice
December 11th, 2011
December 11th, 2011
December 6th, 2011
This afternoon during an interview, a potential new hire at LMAX asked what LMAX could offer in the way of career progression. Since I’ve been thinking a fair bit about what comes next in my career now that I’m moving back to Australia I thought I had a pretty good answer and that it might be worth sharing here2.
In most industries career progression is signified by ever fancier sounding job titles, but for a software developer, the fancier the title sounds the less likely you are to actually do any development. Essentially, career progression often amounts to career migration – into “architecture”1 or managements. If you really love developing software though you need to look at it a different way. If I spend the rest of my career as a “Senior Software Engineer” I’ll be pretty happy, so long as I can keep honing my skills and becoming more valuable to the companies I work for. Ideally I’d like the pay I take home to grow in line with that value.
Given that world view, the best way I’ve found to progress my career as a software engineer is to work in a place where I’m surrounded by people smarter than I and where I regularly feel stupid. Feeling stupid is a pre-requisite to really learning – it means you’ve just found an area where you have a large gap in your knowledge. If you also work with people smarter than yourself that becomes an opportunity to learn from them.
What’s particularly amazing about this process – and this is something that working at LMAX has really taught me – is that if you spend enough time being excited by the learning opportunities that feeling stupid highlights, you find yourself suddenly providing the knowledge to teach other people who are feeling stupid. So now you get the satisfaction of feeling stupid and learning something new, plus the opportunity to demonstrate how much you’ve learnt by sharing that knowledge with others.
If that’s not an awesome way to spend your career, I don’t know what is3.
1 – read, powerpoint production↩
2 – I think I was much more succinct when speaking off the cuff ↩
3 – and if you happen to have that kind of environment and are looking for new employees, my CV is online ↩
November 27th, 2011
After four years living in the UK, my wife and I have decided to move back to Australia mid-February 2012 to be closer to family. As such, I’m now starting to look at job opportunities back in Oz. If you're hiring, I'd love to hear from you and discuss how we might work together. My CV is available online to give you an idea of my experience and of course the backlog of this blog shows some of my thinking and learning throughout the years1.
My one key criteria is that I'm looking for a role that provides lots of challenges and opportunities to learn. I'm not particularly concerned with what language or the particular technologies used, but I do believe strongly that Agile methods, automated testing, continuous delivery and a focus on quality are essential to success.
If you think you could use someone like me or have any questions feel free to drop me an email.
1 – as well as plenty of my mistakes but that’s just part of learning↩
November 13th, 2011
A couple of little patterns for writing long-poll based JavaScript applications have evolved in some internal apps I’ve been working on lately so I thought I’d document them for posterity.
(function($) { var longPollUrl = '/longpoll';
var lastReceivedSequence;
function poll() { $.ajax(longPollUrl, { data: { 'lastSequence': lastReceivedSequence }, dataType: 'json', timeout: 15000, success: function(data) { if (!data) return; lastReceivedSequence = data.sequenceNumber; $(window).trigger('onLongPollEvent', data); }, complete: poll }); }})(jQuery);There’s very little special about this – it basically just uses jQuery to do a standard long poll. The pattern that I like is that instead of calling a particular function directly to handle events it just uses the jQuery trigger function to fire an event that can be handled by any interested code, without introducing tight coupling between the two bits of code. Listeners would receive events with:
$(window).bind('onLongPollEvent', function(eve, longPollData) { ... });One of the internal tools I’ve been working on is our “big feedback” page for reporting build results. This page is displayed on a large monitor the whole team can see, so refreshing the page to load JavaScript changes requires actually getting up and walking over to it. Fortunately, there’s a simple pattern to get the JavaScript to reload itself:
var serverVersion;...if (data.serverVersion != serverVersion) { window.location.reload(); return;}...Each long poll event sent down to the browser includes the server version – when it changes, the JavaScript reloads the page. There are two nice little details here:
Usually I insert this reload code directly into the long poll loop so that it is guaranteed to run first and avoid any potential problems with data formats changing. Even the serverVersion data format can change since it doesn’t try to parse it in any way – any change, including data.serverVersion no longer being present, will cause the page to reload.
Put together the code comes out something like:
(function($) { var longPollUrl = '/longpoll';
var lastReceivedSequence; var serverVersion;
function poll() { $.ajax(longPollUrl, { data: { 'lastSequence': lastReceivedSequence }, dataType: 'json', timeout: 15000, success: function(data) { if (!data) return; lastReceivedSequence = data.sequenceNumber; if (data.serverVersion != serverVersion) { window.location.reload(); return; } $(window).trigger('onLongPollEvent', data); }, complete: poll }); }})(jQuery);Nothing earth-shatteringly new, but handy little tools to have up your sleeve.
September 26th, 2011
Peter Lawrey posted an example of using the Exchanger class from core Java to implement a background logging implementation. He briefly compared it to the LMAX disruptor and since someone requested it, I thought it might be interesting to show a similar implementation using the disruptor.
Firstly, let’s revisit the very high level differences between the exchanger and the disruptor. Peter notes:
This approach has similar principles to the Disruptor. No GC using recycled, pre-allocated buffers and lock free operations (The Exchanger not completely lock free and doesn't busy wait, but it could)
Two keys difference are:
- there is only one producer/consumer in this case, the disruptor supports multiple consumers.
- this approach re-uses a much smaller buffer efficiently. If you are using ByteBuffer (as I have in the past) an optimal size might be 32 KB. The disruptor library was designed to exploit large amounts of memory on the assumption it is relative cheap and can use medium sized (MBs) to very large buffers (GBs). e.g. it was design for servers with 144 GB. I am sure it works well on much smaller servers. ;)
Actually, there’s nothing about the Disruptor that requires large amounts of memory. If you know that your producers and consumers are going to keep pace with each other well and you don’t have a requirement to replay old events, you can use quite a small ring buffer with the Disruptor. There are a lot of advantages to having a large ring buffer, but it’s by no means a requirement.
It’s also worth noting that the Disruptor does not require consumers to busy-spin, you can choose to use a blocking wait strategy, or strategies that combine busy-spin and blocking to handle both spikes and lulls in event rates efficiently.
There is also an important advantage to the Disruptor that wasn’t mentioned: it will process events immediately if the consumer is keeping up. If the consumer falls behind however, it can process events in a batch to catch up. This significantly reduces latency while still handling spikes in load efficiently.
First let’s start with the LogEntry class. This is a simple value object that is used as our entries on the ring buffer and passed from the producer thread over to the consumer thread.
Peter’s Exchanger based implementation – the use of StringBuilder in the LogEntry class is actually a race condition and not thread safe. Both the publishing side and the consumer side are attempting to modify it and depending on how long it takes the publishing side to write the log message to the StringBuilder, it will potentially be processed and then reset by the consumer side before the publisher is complete. In this implementation I’m instead using a simple String to avoid that problem.
import com.lmax.disruptor.EventFactory;
class LogEntry{ public static final EventFactory<LogEntry> FACTORY = new EventFactory<LogEntry>() { public LogEntry newInstance() { return new LogEntry(); } };
long time; int level; String text;}
The one Disruptor-specific addition is that we create an EventFactory instance which the Disruptor uses to pre-populate the ring buffer entries.
Next, let’s look at the BackgroundLogger class that sets up the process and acts as the producer.
import com.lmax.disruptor.RingBuffer;import com.lmax.disruptor.dsl.Disruptor;
import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;
public class BackgroundLogger{ private static final int ENTRIES = 64;
private final ExecutorService executorService; private final Disruptor<LogEntry> disruptor; private final RingBuffer<LogEntry> ringBuffer;
BackgroundLogger() { executorService = Executors.newCachedThreadPool(); disruptor = new Disruptor<LogEntry>(LogEntry.FACTORY, ENTRIES, executorService); disruptor.handleEventsWith(new LogEntryHandler()); disruptor.start(); ringBuffer = disruptor.getRingBuffer(); }
public void log(String text) { final long sequence = ringBuffer.next(); final LogEntry logEntry = ringBuffer.get(sequence);
logEntry.time = System.currentTimeMillis(); logEntry.level = level; logEntry.text = text;
ringBuffer.publish(sequence); }
public void stop() { disruptor.shutdown(); executorService.shutdownNow(); }}
In the constructor we create an ExecutorService which the Disruptor will use to execute the consumer threads (a single thread in this case), then the disruptor itself. We pass in the LogEntry.FACTORY instance for it to use to create the entries and a size for the ring buffer.
The log method is our producer method. Note the use of two-phase commit. First claim a slot with the ringBuffer.next() method, then copy our values into that slot’s entry and finally publish the slot, ready for the consumer to process. We could have also used the Disruptor.publish method which can make this simpler for many use cases by rolling the two phase commit into call.
The producer doesn’t need to do any batching as the Disruptor will do that automatically if the consumer is falling behind, though there are also APIs that allow batching the producer which can improve the performance if it fits into your design (here it’s probably better to publish each log entry as it comes in).
The stop method uses the new shutdown method on the Disruptor which takes care of waiting until all consumers have processed all available entries for you, though the code for doing it yourself is quite straight-forward. Finally we shut down the executor.
Note that we don’t need a flush method since the Disruptor is always consuming log events as quickly as the consumer can.
Last of all, the consumer which is almost entirely implementation logic:
import com.lmax.disruptor.EventHandler;
public class LogEntryHandler implements EventHandler<LogEntry>{
public LogEntryHandler() { }
public void onEvent(final LogEntry logEntry, final long sequence, final boolean endOfBatch) throws Exception { // Write }
}
The consumer’s onEvent method is called for each LogEntry put into the Disruptor. The endOfBatch flag can be used as a signal to flush written content to disk, allowing very large buffer sizes to be used causing writes to disk to be batched when the consumer is running behind, yet also ensure that our valuable log messages get to disk as quickly as possible.