HTTP GET Arrow Data: Simple Julia Server Example
This directory contains a minimal example of an HTTP server implemented in Julia. The server:
- Creates a list of record batches and populates it with synthesized data.
- Listens for HTTP GET requests from clients.
- Upon receiving a request, sends an HTTP 200 response with the body containing an Arrow IPC stream of record batches.
To run this example:
julia --project=.. -e "using Pkg; Pkg.instantiate()"
julia --project=.. server.jl