tree: 584ea36e1ebacb6dd4cc094437d41aa18848e933 [path history] [tgz]
  1. client.go
  2. go.mod
  3. README.md
http/get_simple/go/client/README.md

HTTP GET Arrow Data: Simple Go Client Example

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

  1. Sends an HTTP GET request to a server.
  2. Receives an HTTP 200 response from the server, with the response body containing an Arrow IPC stream of record batches.
  3. Adds the record batches to a slice as they are received.

To run this example, first start one of the server examples in the parent directory, then:

go mod init client
go mod tidy
go build client.go
./client