tree: 65493b4e14fc6d42d9935da806e600bb92f1a7e6 [path history] [tgz]
  1. go.mod
  2. README.md
  3. server.go
http/get_simple/go/server/README.md

HTTP GET Arrow Data: Simple Go Server Example

This directory contains a minimal example of an HTTP server implemented in Go. The server:

  1. Creates a slice of record batches and populates it with synthesized data.
  2. Listens for HTTP GET requests from clients.
  3. Upon receiving a request, sends an HTTP 200 response with the body containing an Arrow IPC stream of record batches.

To run this example:

go mod init server
go mod tidy
go build server.go
./server