Folks,
I developed a fault-tolerant (99.999% uptime) and infinitely scalable poker server based on technology that telcos use to build their 911 telephone switches.
I built a cluster that can be reconfigured on the fly with new nodes or machines added or taken away at any time. I'm interested in applying the same technology to real-time trading systems and backends. Can you recommend a niche?
The technology is the Erlang/OTP (Open Telecom Platform), more on it at http://www.erlang.org. It has been developed for soft real-time systems and have been used successfully for a few years. Fault-tolerance, fail-over, take-over is built right into the platform and concurrent processing is one of its strengths.
Erlang comes with a real-time replicating in-memory database called Mnesia. It was originally designed for real-time call billing and the maximum size of the database is 4Gb. It can be written to disk on one or more nodes in a cluster and is kept in-memory on all others. Changes are propagaged in real-time on all nodes and fault-tolerance is built in. The database will recover itself after a crash and new nodes coming online will automatically receive the latest copy.
Erlang is particularly suitable for writing network servers, proxies, protocol converters, etc. I'm thinking of real-time data feeds, automated and program trading but will apreciate any advice and suggestions.
Thanks, Joel
--
http://wagerlabs.com/tech
I developed a fault-tolerant (99.999% uptime) and infinitely scalable poker server based on technology that telcos use to build their 911 telephone switches.
I built a cluster that can be reconfigured on the fly with new nodes or machines added or taken away at any time. I'm interested in applying the same technology to real-time trading systems and backends. Can you recommend a niche?
The technology is the Erlang/OTP (Open Telecom Platform), more on it at http://www.erlang.org. It has been developed for soft real-time systems and have been used successfully for a few years. Fault-tolerance, fail-over, take-over is built right into the platform and concurrent processing is one of its strengths.
Erlang comes with a real-time replicating in-memory database called Mnesia. It was originally designed for real-time call billing and the maximum size of the database is 4Gb. It can be written to disk on one or more nodes in a cluster and is kept in-memory on all others. Changes are propagaged in real-time on all nodes and fault-tolerance is built in. The database will recover itself after a crash and new nodes coming online will automatically receive the latest copy.
Erlang is particularly suitable for writing network servers, proxies, protocol converters, etc. I'm thinking of real-time data feeds, automated and program trading but will apreciate any advice and suggestions.
Thanks, Joel
--
http://wagerlabs.com/tech