James Miles recently shared some performance figures and explanations related to the latest Rx Performance Improvements.
With this latest v1.0 stable release, Rx seems to enter in a new era. It's a very good news for .NET developers...
Showing posts with label throughput. Show all posts
Showing posts with label throughput. Show all posts
Saturday, 2 July 2011
Wednesday, 9 February 2011
The ultimate MOM?
I've never had faith in silver bullets ;-) but I have to admit that Solace (appliance-based) solution is very attractive for a pre-trade (but also post-trade) financial entreprise messaging system.
Pros
Because Solace use silicon instead of software for their "hub and spoke" oriented messaging solution (fully compliant with JMS standard, but with much more features) , there is no OS interrupts, context switching nor data copies between kernel and user space for the "hub" part.
I still didn't had the chance to evaluate it, but on the paper and according to some of my ex-colleagues that had made evaluations, Solace looks like a kind of ultimate solution for financial entreprise messaging system.
"Reliable delivery with average latency of 22 microseconds at 1M msgs/sec", "Guaranteed delivery with average latency of 98 microseconds at 150,000 msgs/sec", "10 million topics with support for multi-level, wild carded topics", "9,000 client connections"... (http://www.solacesystems.com/docs/solace_corporate-intro.pdf). Such figures make me dream and remind us that software can't win over hardware for those message-oriented middleware (MOM) use cases...
Their several white papers are very relevants and informatives. In particular, the one that explain how to build a single dealer platform
(meaning: a web oriented application produced by an investment banking in order to allow all its clients to directly cope/deal with it). Oh Yes, because the future version of their appliance will also allow to bridge with http clients (one more killer feature ;-)
This particular white paper is available from here: http://www.solacesystems.com/solutions/financial-services/single-dealer-platform
Cons
More than the (high) price of such a solution, and even if it is increasingly used in some banks, perhaps risks regarding the sustainability of such hardware-based solutions that has to be lifted.
Indeed, what would happen if their (unique?) appliance production factory get burnt? how long would it take to Solace to replace this mass production to fulfill contracts, etc.?
Cons
More than the (high) price of such a solution, and even if it is increasingly used in some banks, perhaps risks regarding the sustainability of such hardware-based solutions that has to be lifted.
Indeed, what would happen if their (unique?) appliance production factory get burnt? how long would it take to Solace to replace this mass production to fulfill contracts, etc.?
Keywords :
cache,
concurrency,
FX,
latency,
middleware,
performance,
throughput
Tuesday, 4 January 2011
Low latency systems in .NET
Not new, but since i'm currently in a low latency mood ;-)
In another press communication, they have said that their FIX engine breaks the 10 micro seconds average latency with a 12,000 messages/second throughput (still with the 3.5 .NET framework based solution).
Very informative.
Back to june 2009, Rapid Addition, one of the leading supplier of front office messaging components to the global financial services industry, published a white paper with Microsoft on how to build ultra-low latency FIX engine with 3.5 .NET framework...
Their whitepaper (and RA Generation Zero framework) mostly indicates how to prevent from having gen2 garbage collection.
I really like their description of a managed low latency system with a startup phase (with memory resource pooling preallocation), a forced full GC phase, then a continuous operation phase for our low latency systems (where we avoid to cause garbage collection by using and recycling resource pools).
Their whitepaper (and RA Generation Zero framework) mostly indicates how to prevent from having gen2 garbage collection.
I really like their description of a managed low latency system with a startup phase (with memory resource pooling preallocation), a forced full GC phase, then a continuous operation phase for our low latency systems (where we avoid to cause garbage collection by using and recycling resource pools).
According to me, this white paper demonstrates that Rapid Addition really know what they are talking about.
In another press communication, they have said that their FIX engine breaks the 10 micro seconds average latency with a 12,000 messages/second throughput (still with the 3.5 .NET framework based solution).
Very informative.
Keywords :
.NET,
architecture,
guidelines,
latency,
performance,
throughput
Sunday, 2 January 2011
A new perspective for Ultra low latency performant systems
I just watched an awesome presentation by Martin Thompson and Michael Barker. They explained how they implemented their ultra low latency (with high throughput) systems for the London Multi-Asset eXchange (LMAX) and it's pretty impressive: 100 000 transactions per seconds at less than 1 millisecond latency in Java...
UNDERSTAND YOUR PLATFORM
CHECK YOUR PERFORMANCE FROM THE BEGINNING
FOLLOW THE TIPS
Since I'm working on FX and low latency systems in general about several years from now, I was very interested by their teasing (100K...). I have to admit that I was thrilled by their presentation.
For those that didn't have one hour to kill watching their video, here is a summary:
---HOW TO DO 100K TPS AT LESS THAN 1ms LATENCY----------------------------
- UNDERSTAND YOUR PLATFORM
- CHECK YOUR PERFORMANCE FROM THE BEGINNING
- FOLLOW THE TIPS
---------------------------------------------------------------------------------------------------------------
- You have to know how modern hardwares work in order to build ultra low latency systems
- The advent of multi-cores with their bigger and smarter caches (do you really know about how proc cache synchronization is working? false sharing drawbacks? etc)
- Ok, free lunch is over (for Ghz), but it's time to order and use more memory!!! (144GB servers with 64bits addressing for instance)
- Disk is the new tape! (fast for sequential access); rather use SSDs for random threaded access
- Network is not slow anymore: 10GigE is now a commodity and you can have sub 10 microseconds for local hop with kernel-bypassing RDMA
- (Not hardware, but) understand how GC and JIT work (under the hood)
CHECK YOUR PERFORMANCE FROM THE BEGINNING
- Write Performance tests first
- Make it run automatically and nightly to detect when you should start to optimize your code
- Still no need for early and premature performance optimizations
FOLLOW THE TIPS
- Keep the working set in-memory (data and behaviour co-located)
- Write cache (cache-lines synchronization) friendly code (the rebirth of the arrays ;-)
- Choose your data structure wisely
- Queues are awful for concurrency access, rather use Ring Buffers instead (no stress: we just said that we bought lot of memory ;-)
- Use custom cache friendly collections
- Write simple, clean & compact code (the JIT always do better with simpler code-shorter methods are easy to inline)
- Invest in modeling your domain. Also respect the single responsibility principle (one class one thing, one method one thing,...) and the separation of concerns
- Take the right approach to the concurrency. Concurrent programming is about 2 things: mutual exclusion and visibility of changes which can be implemented following two main approaches. i) a difficult locking approach (with context switch to kernel), and ii) a VERY difficult atomic with no blocking (user space) instructions (remember how are implemented optimistic locking mechanism within databases). You should definitely choose the second one
- Keep the GC under control. Because the GC may pause your application, you should avoid it by implementing (circular buffer) preallocation and by using a huge amount of (64bits) memory
- Run business logic on a single thread and push the concurrency in the infrastructure. Because trying to put concurrency within the business model is far too hard and easy to get wrong. You would also turn the OO programmers dream of: easy to write testable and readable code. As a consequence, it should increase your time to market.
- Follow the disruptor pattern which is a system pattern that tries to avoid contention wherever possible (even with business logic running on a single thread)
---------------------------------------------------------------------------------------------------------------
Ok, this presentation leave us with lot of questions about how they implemented their systems. However, I found this video very refreshing and interresting regarding several points (the need for huge amount of RAM with 64 bits addressing, the interest of network kernel-passing technologies with RDMA, the fact that queues are bad to handle concurrency properly, that clean and simple code doesn't prevent you from having excellent performances, that concurrency should stay out of the business logic, that the separation of concerns allow you to have very competitive time-to-market,... and of course that you need a write-performance-tests-first approach).
For the disruptor pattern explanations and much more, see the entire video of this presentation here: http://www.infoq.com/presentations/LMAX
Ok, this presentation leave us with lot of questions about how they implemented their systems. However, I found this video very refreshing and interresting regarding several points (the need for huge amount of RAM with 64 bits addressing, the interest of network kernel-passing technologies with RDMA, the fact that queues are bad to handle concurrency properly, that clean and simple code doesn't prevent you from having excellent performances, that concurrency should stay out of the business logic, that the separation of concerns allow you to have very competitive time-to-market,... and of course that you need a write-performance-tests-first approach).
For the disruptor pattern explanations and much more, see the entire video of this presentation here: http://www.infoq.com/presentations/LMAX
Note: don't see this video in full-screen mode otherwise you will loose the benefits of the slides displayed below ;-(
Cheers, and happy new year to everyone ;-)
Subscribe to:
Posts (Atom)