Open ianmcook opened 7 months ago
Create simple Python-based HTTP client and server examples like the ones in arrow-experiments/http/get_simple/python but using IPC buffer compression (lz4 or zstd).
arrow-experiments/http/get_simple/python
On the server side, I believe this can be done by passing pa.ipc.IpcWriteOptions(compression=...) as the options argument to pa.ipc.new_stream().
pa.ipc.IpcWriteOptions(compression=...)
options
pa.ipc.new_stream()
Also see pa.Codec
pa.Codec
Python
@felipecrv I suggested using Python here for simplicity, but it could be in some other language if needed
Describe the enhancement requested
Create simple Python-based HTTP client and server examples like the ones in
arrow-experiments/http/get_simple/python
but using IPC buffer compression (lz4 or zstd).On the server side, I believe this can be done by passing
pa.ipc.IpcWriteOptions(compression=...)
as theoptions
argument topa.ipc.new_stream()
.Also see
pa.Codec
Component(s)
Python