Registry / serialization / apache-arrow-go-v11

apache-arrow-go-v11

JSON →
library11.0.0gogounverified

Apache Arrow is a cross-language development platform for in-memory data, providing a Go library for columnar data processing.

go get github.com/apache/arrow/go/v11
INSTALL
IMPORT
SIG · APACHE-ARROW-GO-V1
A
apache-arrow-go-v11
serializationgov11.0.0
harness data pending
Install & Compatibility
Where this runs

No compatibility data collected yet for this library.

Code
Verified usage

Verified import paths — ran on the pinned version, not inferred.

arrow
github.com/apache/arrow/go/v11

Create an int64 array using Arrow's builder pattern.

package main import ( "fmt" "github.com/apache/arrow/go/v11/arrow" "github.com/apache/arrow/go/v11/arrow/array" "github.com/apache/arrow/go/v11/arrow/memory" ) func main() { pool := memory.NewGoAllocator() bld := array.NewInt64Builder(pool) defer bld.Release() bld.AppendValues([]int64{1, 2, 3}, nil) arr := bld.NewInt64Array() defer arr.Release() fmt.Println(arr) }
Debug
Known issues
breakingMajor version in import path (v11) changes with each release; upgrading requires updating import paths.
fix
Use a dependency management tool like Go modules and update the version in go.mod accordingly.
affects: >=11.0.0
Upgrade
Version history
11.0.0latest on pkg.go.dev
Audit
Dependencies

No dependency data recorded yet.

Agent activity
33 hits · last 30 days
node
26
OpenAI (training)
3
Resources
apache-arrow-go-v11 — go get apache-arrow-go-v11 · libregistry