Scaling kdb+ Tick Architecture

Storing - One Database of Market Data

Standard kdb+ Tick Architecture
  1. Problem: Storing market data
  2. FH – FeedHadnler - Processes data
  3. TP – TickerPlant - Logs to disk, Forwards to listeners
  4. RDB - Realtime-DataBase - Keeps recent in RAM, Answers user queries
  5. HDB - Historical DataBase - Provides access to historical data from persistent storage

Scaling Out Tick

Scaling Out kdb+ Tick on Multiple Servers

How are we going to scale and deploy Tick?
Problem: Reasonably allowing multiple databases

Very early on you will need to make some long term decisions. I’m not going to try and say what is best as I don’t believe that’s possible. What I would like to suggest is a framework for deciding. As a team, rather than arguing A against B. Try to decide what parameters would cause a tipping point.

  1. Pivot Points for:
  2. Storage - DDN / Raid / SSD / S3
  3. Server-Split - Efficiency, reliability
  4. Launcher - Kubernetes, Bash, SSH
  5. Cloud vs On-Prem

Considering Storage

  1. Do NOT pose the question as SAN or DDN. Ask what is the tipping point?
  2. What is available within the firm?
  3. How much effort to onboard external solution? For what benefit?
  4. Tipping point – If need very fast local SSD else RAID. As RAID provides reliability and easier failover.

Tick+ - Strengthening the Core Capture

Scaling Out kdb+ Tick

Problem: You scaled out but now you can’t manually jump in and fix issues yourself. You need to automate improvements to the core stack.
These are issues that everyone encounters and there are well documented solutions.

  1. Slow consumer risks TP -> Chained TP. Cutoff slow subscribers
  2. End of day Savedown blocks queries -> WDB
  3. Persist data throughout day to temp location
  4. Sort slow = perform offline
  5. Long user queries block HDB -> -T timeouts
  6. Bad user queries -> GW + -g + auto-restart
  7. High TP/RDB CPU - batching

Growing Pains

Problem: We scaled out even further and now processes are everywhere

  1. We need security everywhere
  2. Some databases are too large for one machine
  3. Users querying host:port RDB/HDB direct
  4. Won’t work if server dies
  5. Requires expertise
  6. Users can’t find data

The UI Users Want

Dream SQL kdb UI

Essential Components

kdb MegaGW Mega-Gateway

For many reasons we need to know where all components are running and we need that info to be accessible. Let's introduce two components to achieve that:

DiscoveryDB

My preference is to use kdb as it seems well suited and the team has expertise. So now when every process starts it will send a regular heartbeat to one or more discovery databases. On a separate timer, the DiscoveryDB will publish the list of existing services to syncDB.

syncDB

Will have a master process, that then sends updates to all servers and downstream processes. When any capture on a server wants to query a sync setting, it calls the API which looks at the most local instance only. It’s designed to NOT be fast but to be hyper reliable. We are not spinning up/down instances every minute. These are mostly databases that sit on large data stores so caching them for long periods is fine. Worst case we query a non-existant server and timeout. What we don’t do is delete or flush the cache.

Mega-Gateway - MegaGW

kdb MegaGW Mega-Gateway

It can take a user query, see where it needs sent to, send queries to that location and return the result. We can make one process like that but how do we scale it up to 100s of users while looking like one address? I don’t have time to go into every variation I’ve seen or considered so I’ll just show one possibility:

Starting from the User Query:

  1. They connect to a domain name, let’s say data.company.com
  2. That is a TCP load balancer, that rotates over multiple servers. So it connects to port 9000 on server 1
  3. Running on port 9000 on server 1 is another load balancer, software based haproxy, which will forward/return data from one of the underlying q processes.
  4. So let’s say between port 9000-9010 – we are running 10 megagw processes
  5. Each MegaGW is a q process that has a table listing all the data sources
  6. We override .z.pg to break apart the user query and forward it to the relevant machines and return the result.

The nice thing here is that we’ve used off-the-shelf components, there is NO-CODE. The best code is no-code. The load balancers only knows it’s forwarding connections. Meanwhile we can program the MegaGW as if it’s just one small component. It will behave to the user exactly like a standard q process, meaning all the existing API and tools like qStudio will just work.

Future Work

  1. Mega-Selects – beautiful user API
  2. Sharding – captures larger than 1 machine
  3. Middleware – IPC or solace or kafka
  4. User Sandboxes
  5. Hosted API – Allowing other teams to define kdb APIs in megaGW safely
  6. Apps – As well as captures, host RTEs
  7. Failover
  8. Regional – hosted databases
  9. Improved Load-balancing. Persistent connections.

scaling-kdb-architecture.pptx