open hft libraries in @java

40
Low latency persistence, logging, IPC and more Peter Lawrey CEO, Principal Consultant Higher Frequency Trading

Upload: peter-lawrey

Post on 10-May-2015

1.428 views

Category:

Technology


4 download

DESCRIPTION

Java libraries which are used for trading systems which can be valuable infrastructure in any Java application which needs scale and performance.

TRANSCRIPT

Page 1: Open HFT libraries in @Java

Low latency persistence, logging, IPC

and more

Peter LawreyCEO, Principal ConsultantHigher Frequency Trading

Page 2: Open HFT libraries in @Java

Agenda

Who are we?

Libraries designed to be ultra-low GC.

When would you use them?

Sample code.

Page 3: Open HFT libraries in @Java

Who are we

Higher Frequency Trading is a small consulting and software development house specialising in

Low latency, high throughput software 8 developers in Europe and USA. Sponsor HFT related open source projects Core Java engineering

Page 4: Open HFT libraries in @Java

Who am I?

Peter Lawrey

- CEO and Principal Consultant

- 3rd on Stackoverflow for Java, most Java Performance answers.

- Founder of the Performance Java User's Group

- An Australian, based in the U.K.

Page 5: Open HFT libraries in @Java

What is our OSS

Key OpenHFT projects Chronicle, low latency logging, event store and

IPC. (record / log everything) HugeCollections, cross process embedded

persisted data stores. (only need the latest)

Millions of operations per second.

Micro-second latency.

Page 6: Open HFT libraries in @Java

What is HFT?

No standard definition. Trading faster than a human can see. Being fast can make the difference between

making and losing money. For different systems this means typical

latencies of between 10 micro-seconds and 10 milli-second.

(Latencies external to the provider)

Page 7: Open HFT libraries in @Java

Event driven processing

Trading system use event driven processing to minimise latency in a system.

Any data needed should already be loaded in memory, not go off to a slow SQL database.

Each input event triggers a response, unless there is a need to limit the output.

Page 8: Open HFT libraries in @Java

Simple Trading System

Page 9: Open HFT libraries in @Java

Critical Path

A trading system is designed around the critical path. This has to be as short in terms of latency as possible.

Critical path has a tight latency budget which excludes many traditional databases.

Even the number of network hops can be minimised.

Non critical path can use tradition databases

Page 10: Open HFT libraries in @Java

What is Chronicle?

Very fast embedded persistence for Java.

Functionality is simple and low level by design

Page 11: Open HFT libraries in @Java

Where does Chronicle come from

Low latency, high frequency trading

– Applications which are sub 100 micro-second external to the system.

Page 12: Open HFT libraries in @Java

Where does Chronicle come from

High throughput trading systems

– Hundreds of thousand of events per second

Page 13: Open HFT libraries in @Java

Where does Chronicle come from

Modes of use

– GC free

– Lock-less

– Shared memory

– Text or binary

– Replicated over TCP

– Supports thread affinity

Page 14: Open HFT libraries in @Java

Use for Chronicle

Synchronous text logging – support for SLF4J coming.

Synchronous binary data logging

Page 15: Open HFT libraries in @Java

Use for Chronicle

Messaging between processesvia shared memory

Messaging across systems

Page 16: Open HFT libraries in @Java

Use for Chronicle

Supports recording micro-second timestamps across the systems

Replay for production data in test

Page 17: Open HFT libraries in @Java

Writing to Chronicle

IndexedChronicle ic = new IndexedChronicle(basePath);Appender excerpt = ic.createAppender();

for (int i = 1; i <= runs; i++) { excerpt.startExcerpt(); excerpt.writeUnsignedByte('M'); // message type excerpt.writeLong(i); // e.g. time stamp excerpt.writeDouble(i); excerpt.finish();}ic.close();

Page 18: Open HFT libraries in @Java

Reading from ChronicleIndexedChronicle ic = new IndexedChronicle(basePath);ic.useUnsafe(true); // for benchmarksTailer excerpt = ic.createTailer();for (int i = 1; i <= runs; i++) { while (!excerpt.nextIndex()) { // busy wait } char ch = (char) excerpt.readUnsignedByte(); long l = excerpt.readLong(); double d = excerpt.readDouble(); assert ch == 'M'; assert l == i; assert d == i; excerpt.finish();}ic.close();

Page 19: Open HFT libraries in @Java

Chronicle code

VanillaChronicle chronicle = new VanillaChronicle(baseDir);

// one per threadExcerptAppender appender = chronicle.createAppender();

// once per messageappender.startExcerpt();appender.appendDateMillis(System.currentTimeMillis()).append(" - ").append(finalT).append(" / ").append(i).append('\n');

appender.finish();

// output for 100 million, -verbose:gc -Xmx64mThroughput was 4364 per milli-second

Page 20: Open HFT libraries in @Java

Chronicle and replication

Replication is point to point (TCP)

Server A records an event

– replicates to Server B

Server B reads local copy

– B processes the event

Server B stores the result.

– replicates to Server A

Server A replies.

Round trip 25 micro-seconds99% of the time

GC-freeLock lessOff heap

Unbounded

Page 21: Open HFT libraries in @Java

How does it recover?

Once finish() returns, the OS will do the rest.

If an excerpt is incomplete, it will be pruned.

Page 22: Open HFT libraries in @Java

Cache friendly

Data is laid out continuously, naturally packed. You can compress some types. One entry starts in the next byte to the previous one.

Page 23: Open HFT libraries in @Java

Consumer insensitive

No matter how slow the consumer is, the producer never has to wait. It never needs to clean messages before publishing (as a ring buffer does)

You can start a consumer at the end of the day e.g. for reporting. The consumer can be more than the main memory size behind the producer as a Chronicle is not limited by main memory.

Page 24: Open HFT libraries in @Java

How does it collect garbage?

There is an assumption that your application has a daily or weekly maintenance cycle.

This is implemented by closing the files and creating new ones. i.e. the whole lot is moved, compressed or deleted.

Anything which must be retained can be copied to the new Chronicle

Page 25: Open HFT libraries in @Java

Is there a lower level API?

Chronicle 2.0 is based on OpenHFT Java Lang library which supports access to 64-bit native memory.Has long size and offsets.Support serialization and deserializationThread safe access including locking

Page 26: Open HFT libraries in @Java

Is there a higher level API?

You can hide the low level details with an interface.

Page 27: Open HFT libraries in @Java

Is there a higher level API?

There is a demo program with a simple interface.

This models a “hub” process which take in events, processes them and publishes results.

Page 28: Open HFT libraries in @Java

HugeCollections

HugeCollections provides key-value storage. Persisted (by the OS) Embedded in multiple processes Concurrent reads and writes Off heap accessible without serialization.

Page 29: Open HFT libraries in @Java

Creating a SharedHashMap

Uses a builder to create the map as there are a number of options.

Page 30: Open HFT libraries in @Java

Updating an entry in the SHM

Create an off heap reference from an interface and update it as if it were on the heap

Page 31: Open HFT libraries in @Java

Accessing a SHM entry

Accessing an entry looks like normal Java code, except arrays use a method xxxAt(n)

Page 32: Open HFT libraries in @Java

Why use SHM?

Shared between processes Persisted, or “written” to tmpfs e.g. /dev/shm Can be GC-less, so not impact on pause

times. As little as 1/5th of the memory of

ConcurrentHashMap TCP/UDP multi-master replication planned.

Page 33: Open HFT libraries in @Java

HugeCollections and throughput

SharedHashMap tested on a machine with 128 GB, 16 cores, 32 threads.

String keys, 64-bit long values. 10 million key-values updated at 37 M/s 500 million key-values updated at 23 M/s On tmpfs, 2.5 billion key-values at 26 M/s

Page 34: Open HFT libraries in @Java

HugeCollections and latency

For a Map of small key-values (both 64-bit longs)

With an update rate of 1 M/s, one thread.

Percentile 100K

entries1 M entries 10 M entries

50% (typical) 0.1 μsec 0.2 μsec 0.2 μsec

90% (worst 1 in 10) 0.4 μsec 0.5 μsec 0.5 μsec

99% (worst 1 in 100) 4.4 μsec 5.5 μsec 7 μsec

99.9% 9 μsec 10 μsec 10 μsec

99.99% 10 μsec 12 μsec 13 μsec

worst 24 μsec 29 μsec 26 μsec

Page 35: Open HFT libraries in @Java

Performance of CHM

With a 30 GB heap, 12 updates per entry

Page 36: Open HFT libraries in @Java

Performance of SHM

With a 64 MB heap, 12 updates per entry, no GCs

Page 37: Open HFT libraries in @Java

Bonus topic: Units

A peak times an application writes 49 “mb/s” to a disk which supports 50 “mb/s” and is replicated over a 100 “mb/s” network.

What units were probably intended and where would you expect buffering if any?

Page 38: Open HFT libraries in @Java

Bonus topic: Units

A peak times an application writes 49 MiB/s to a disk which supports 50 MB/s and is replicated over a 100 Mb/s network.

MiB = 1024^2 bytes

MB = 1000^2 bytes

Mb = 125,000 bytes

The 49 MiB/s is the highest rate and 100 Mb/s is the lowest.

Page 39: Open HFT libraries in @Java

Bonus topic: Units

Unit bandwidth Used for

mb - miili-bit mb/s – milli-bits per second ?

mB - milli-byte mB/s – milli-bytes per second ?

kb – kilo-bit (1000) kb/s – kilo-bits (baud) per second Dial up bandwidth

kB – kilo-byte (1000) kB/s – kilo-bytes per second ?

Mb – mega-bit (1000^2) Mb/s – mega-bits (baud) per second Cat 5 ethernet

MB - mega-byte (1000^2) MB/s – mega bytes per second Disk bandwidth

Mib – mibi-bit (1024^2) Mib – Mibi-bits per second ?

MiB – mibi-byte (1024^2) MiB – Mibi-bytes per second Memory bandwidth

Gb – giga-bit (1000^3) Gb/s – giga-bit (baud) per second High speed networks

GB – giga-byte (1000^3) GB/s – giga-byte per second -

Gib – gibi-bit (1024^3) Gib/s – gibi-bit per second -

GiB – gibi-byte (1024^3) GiB/s – gibi-byte per second. Memory Bandwidth

Page 40: Open HFT libraries in @Java

Q & A

https://github.com/OpenHFT/OpenHFT

@PeterLawrey

[email protected]