PyKX Subscribing to a q
Process
This example demonstrates using PyKX to setup a python process as a subscriber to data messages published from a q process.
Pre-requisites
A kdb+ license is required to complete this example. Sign-up for a license.
The following python libraries are required to run this example:
-
pykx
-
asyncio
The source code for this example is available in the examples directory here:
Summary of steps
Both example scripts for setting up a subscriber follow the same steps:
-
Start a q process running with some open port (5001 is used for the example, but you may choose any open port).
-
Run the python subscriber by executing the script from the github repository.
Run the subscriber example
-
Begin by running a q process with an open port:
Python
Copy// run q
$ q -p 5001
q) -
In a separate terminal start a python process running the subscriber script:
Bash
Copy// run the subscriber, which connects automatically
$ python subscriber.pyThe python process opens an IPC connection to the q process and sets a new global variable on the q process as part of the main function:
Python
Copyasync def main():
global table
async with kx.RawQConnection(port=5001) as q:
print('===== Initial Table =====')
print(table)
print('===== Initial Table =====')
await q('py_server:neg .z.w')
await main_loop(q)The q process now has the variable
py_server
set to the handle of the python process once the python process connects. -
Once this variable is set, you can send rows of the table to the python process and they are appended as they are received.
Bash
Copy// run the subscriber, which automatically connects
$ python subscriber.py
===== Initial Table =====
a b
---
4 8
9 1
2 9
7 5
0 4
1 6
9 6
2 1
1 8
8 5
===== Initial Table ===== -
As the Python process is initiated, it connects to the q server and sets the
py_server
variable and creates the initial table.Python
Copyq)py_server[1 2]
-
Send a new table row (1, 2) to the python process from q.
Python
CopyReceived new table row from q: 1 2
a b
---
4 8
9 1
2 9
7 5
0 4
1 6
9 6
2 1
1 8
8 5
1 2The new row has been appended to the table.
Run the asynchronous subscriber example
-
Begin by running a q process with an open port:
Python
Copy// run q
$ q -p 5001
q) -
In a separate terminal start a python process running the asynchronous subscriber script:
Bash
Copy// run the asynchronous subscriber which automatically connects
$ python subscriber_async.pyThe python process opens an IPC connection to the q process and sets a new global variable on the q process as part of the main function:
Python
Copyasync def main():
global table
async with kx.RawQConnection(port=5001) as q:
print('===== Initial Table =====')
print(table)
print('===== Initial Table =====')
await q('py_server:neg .z.w')
await main_loop(q)The q process now has the variable
py_server
set to the handle of the python process once the python process connects. -
Once this variable is set, you can send rows of the table to the python process and they are appended as they are received.
Bash
Copy// run the subscriber, which automatically connects
$ python subscriber_async.py
===== Initial Table =====
a b
---
4 8
9 1
2 9
7 5
0 4
1 6
9 6
2 1
1 8
8 5
===== Initial Table ===== -
As the Python process is initiated, it connects to the q server and sets the
py_server
variable and creates the initial table.Python
Copyq)py_server[1 2]
-
Send a new table row (1, 2) to the python process from q.
Python
CopyReceived new table row from q: 1 2
a b
---
4 8
9 1
2 9
7 5
0 4
1 6
9 6
2 1
1 8
8 5
1 2The new row has been appended to the table.
Summary
This example has demonstrated how to initiate a q process, subscribe to an existing table, and append rows to it either synchronously or asynchronously.
Next steps
Check out more examples such as: