An open API service for producing an overview of a list of open source projects.

https://github.com/Apache/arrow

arrow parquet

Score: 40.64482732485841

Last synced: about 13 hours ago
JSON representation

Repository metadata:

Apache Arrow is the universal columnar format and multi-language toolbox for fast data interchange and in-memory analytics


Owner metadata:


GitHub Events

Total
Last Year

Committers metadata

Last synced: 5 months ago

Total Commits: 18,411
Total Committers: 1,371
Avg Commits per committer: 13.429
Development Distribution Score (DDS): 0.899

Commits in past year: 1,320
Committers in past year: 185
Avg Commits per committer in past year: 7.135
Development Distribution Score (DDS) in past year: 0.836

Name Email Commits
Sutou Kouhei k****u@c****m 1868
Antoine Pitrou a****e@p****g 1325
Wes McKinney w****y@t****m 1320
Krisztián Szűcs s****n@g****m 615
dependabot[bot] 4****] 533
Uwe L. Korn u****k@x****m 478
Joris Van den Bossche j****e@g****m 477
David Li l****6@g****m 474
Neal Richardson n****n@g****m 472
Raúl Cumplido r****o@g****m 436
Nic Crane t****c@g****m 305
Weston Pace w****e@g****m 252
Alenka Frim A****F 251
Benjamin Kietzman b****t@g****m 237
Andy Grove a****3@g****m 237
Jonathan Keane j****e@g****m 192
Matt Topol z****d@g****m 186
Jorge C. Leitao j****o@g****m 185
mwish m****7@g****m 179
liyafan82 f****a@f****m 151
Micah Kornfield e****d@g****m 150
Dewey Dunnington d****y@f****t 146
Jacob Wujciak-Jens j****b@w****e 137
François Saint-Jacques f****s@g****m 134
Yibo Cai y****i@a****m 132
Dominik Moritz d****z@g****m 122
Bryce Mecum p****h@g****m 119
tianchen n****j@a****m 114
Felipe Oliveira Carvalho f****e@g****m 113
sgilmore10 7****0 113
and 1341 more...

Issue and Pull Request metadata

Last synced: 5 months ago

Total issues: 5,920
Total pull requests: 7,464
Average time to close issues: 5 months
Average time to close pull requests: 22 days
Total issue authors: 1,363
Total pull request authors: 635
Average comments per issue: 2.35
Average comments per pull request: 5.49
Merged pull request: 4,987
Bot issues: 6
Bot pull requests: 1,031

Past year issues: 1,227
Past year pull requests: 1,846
Past year average time to close issues: 11 days
Past year average time to close pull requests: 9 days
Past year issue authors: 330
Past year pull request authors: 186
Past year average comments per issue: 1.43
Past year average comments per pull request: 4.98
Past year merged pull request: 1,157
Past year bot issues: 0
Past year bot pull requests: 137

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/Apache/arrow

Top Issue Authors

  • asfimport (616)
  • kou (476)
  • pitrou (290)
  • raulcd (282)
  • mapleFU (138)
  • jorisvandenbossche (132)
  • WillAyd (107)
  • amoeba (107)
  • vibhatha (101)
  • thisisnic (92)
  • felipecrv (85)
  • AlenkaF (84)
  • assignUser (73)
  • hiroyuki-sato (72)
  • danepitkin (63)

Top Pull Request Authors

  • dependabot[bot] (1,031)
  • kou (879)
  • raulcd (398)
  • pitrou (392)
  • mapleFU (226)
  • amoeba (189)
  • jorisvandenbossche (186)
  • zanmato1984 (150)
  • hiroyuki-sato (146)
  • AlenkaF (143)
  • WillAyd (142)
  • felipecrv (140)
  • thisisnic (132)
  • vibhatha (124)
  • paleolimbot (97)

Top Issue Labels

  • Type: enhancement (2,845)
  • Type: bug (2,406)
  • Component: C++ (1,471)
  • Component: Python (1,041)
  • Component: Continuous Integration (526)
  • Component: R (470)
  • Component: Parquet (360)
  • Component: Java (347)
  • Type: usage (345)
  • Component: Documentation (207)
  • Component: Packaging (185)
  • Status: stale-warning (167)
  • Component: Go (146)
  • Component: FlightRPC (144)
  • Component: MATLAB (139)
  • Component: Release (138)
  • Component: C# (119)
  • Priority: Blocker (112)
  • good-first-issue (109)
  • Component: Developer Tools (93)
  • Component: JavaScript (92)
  • Type: task (77)
  • Component: GLib (76)
  • Component: Integration (76)
  • Priority: Critical (56)
  • Component: Ruby (55)
  • good-second-issue (46)
  • Component: Benchmarking (46)
  • Component: Archery (39)
  • Component: Format (37)

Top Pull Request Labels

  • Component: C++ (2,324)
  • awaiting merge (1,544)
  • awaiting review (1,293)
  • awaiting committer review (1,249)
  • dependencies (1,028)
  • Component: Python (931)
  • Component: Java (896)
  • Component: Documentation (828)
  • Component: Parquet (520)
  • Component: R (482)
  • Component: C# (466)
  • java (433)
  • awaiting changes (425)
  • awaiting change review (411)
  • Component: JavaScript (338)
  • Component: Go (324)
  • Component: GLib (263)
  • .NET (249)
  • Component: MATLAB (209)
  • Component: FlightRPC (184)
  • javascript (182)
  • Component: Ruby (164)
  • Component: C++ - Gandiva (123)
  • go (96)
  • Component: Swift (74)
  • github_actions (68)
  • Component: Gandiva (56)
  • CI: Extra (42)
  • Component: Continuous Integration (25)
  • Type: bug (21)

Package metadata

proxy.golang.org: github.com/apache/arrow/go/arrow

Package arrow provides an implementation of Apache Arrow. Apache Arrow is a cross-language development platform for in-memory data. It specifies a standardized language-independent columnar memory format for flat and hierarchical data, organized for efficient analytic operations on modern hardware. It also provides computational libraries and zero-copy streaming messaging and inter-process communication. The fundamental data structure in Arrow is an Array, which holds a sequence of values of the same type. An array consists of memory holding the data and an additional validity bitmap that indicates if the corresponding entry in the array is valid (not null). If the array has no null entries, it is possible to omit this bitmap. This example shows how to create a FixedSizeList array. The resulting array should be: This example shows how one can slice an array. The initial (float64) array is: and the sub-slice is: This example demonstrates creating an array, sourcing the values and null bitmaps directly from byte slices. The null count is set to UnknownNullCount, instructing the array to calculate the null count from the bitmap when NullN is called. This example shows how to create a List array. The resulting array should be: This example demonstrates how to create a Map Array. The resulting array should be: This example demonstrates how to build an array of int64 values using a builder and Append. Whilst convenient for small arrays, This example shows how to create a Struct array. The resulting array should be:

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/arrow#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 8 more
  • Latest release: (published about 1 month ago)
  • Last Synced: 2026-05-30T05:01:10.387Z (21 days ago)
  • Versions: 0
  • Dependent Packages: 4,989
  • Dependent Repositories: 9,970
  • Docker Downloads: 8,601,624,528
  • Rankings:
    • Docker downloads count: 0.037%
    • Dependent packages count: 0.041%
    • Dependent repos count: 0.078%
    • Forks count: 0.118%
    • Average: 0.174%
    • Stargazers count: 0.597%
pypi.org: pyarrow

Python library for Apache Arrow

proxy.golang.org: github.com/apache/arrow/go/v10

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v10#section-documentation
  • Licenses: Apache-2.0,BSD-2-Clause,BSD-3-Clause,BSL-1.0,CC-BY-3.0,CC0-1.0,HPND,MIT,NCSA,OpenSSL,Zlib
  • Latest release: v10.0.1 (published over 3 years ago)
  • Last Synced: 2026-05-29T14:31:00.700Z (22 days ago)
  • Versions: 2
  • Dependent Packages: 219
  • Dependent Repositories: 1,047
  • Docker Downloads: 1,463
  • Rankings:
    • Forks count: 0.115%
    • Dependent repos count: 0.239%
    • Average: 0.368%
    • Dependent packages count: 0.528%
    • Stargazers count: 0.59%
proxy.golang.org: github.com/apache/arrow/go/v7

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v7#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 8 more
  • Latest release: v7.0.1 (published almost 4 years ago)
  • Last Synced: 2026-05-29T09:14:19.822Z (22 days ago)
  • Versions: 2
  • Dependent Packages: 63
  • Dependent Repositories: 59
  • Docker Downloads: 1,088,203,822
  • Rankings:
    • Forks count: 0.115%
    • Docker downloads count: 0.122%
    • Average: 0.449%
    • Stargazers count: 0.59%
    • Dependent packages count: 0.661%
    • Dependent repos count: 0.757%
proxy.golang.org: github.com/apache/arrow/go/v8

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v8#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 8 more
  • Latest release: v8.0.1 (published almost 4 years ago)
  • Last Synced: 2026-05-29T23:01:30.111Z (21 days ago)
  • Versions: 2
  • Dependent Packages: 26
  • Dependent Repositories: 76
  • Docker Downloads: 11,459,463
  • Rankings:
    • Forks count: 0.115%
    • Docker downloads count: 0.462%
    • Average: 0.548%
    • Stargazers count: 0.59%
    • Dependent repos count: 0.673%
    • Dependent packages count: 0.899%
proxy.golang.org: github.com/apache/arrow/go/v11

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v11#section-documentation
  • Licenses: Apache-2.0,BSD-2-Clause,BSD-3-Clause,BSL-1.0,CC-BY-3.0,CC0-1.0,HPND,MIT,NCSA,OpenSSL,Zlib
  • Latest release: v11.0.0 (published over 3 years ago)
  • Last Synced: 2026-05-29T02:30:44.380Z (22 days ago)
  • Versions: 1
  • Dependent Packages: 191
  • Dependent Repositories: 833
  • Docker Downloads: 17,765
  • Rankings:
    • Forks count: 0.115%
    • Dependent repos count: 0.262%
    • Stargazers count: 0.59%
    • Average: 0.626%
    • Dependent packages count: 0.998%
    • Docker downloads count: 1.164%
proxy.golang.org: github.com/apache/arrow

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow#section-documentation
  • Licenses: Apache-2.0,BSD-2-Clause,BSD-3-Clause,BSL-1.0,CC0-1.0
  • Latest release: v0.0.0-20180818174452-349e6b091df5 (published almost 8 years ago)
  • Last Synced: 2026-05-29T15:30:16.819Z (22 days ago)
  • Versions: 2
  • Dependent Packages: 26
  • Dependent Repositories: 23
  • Docker Downloads: 240
  • Rankings:
    • Forks count: 0.121%
    • Stargazers count: 0.591%
    • Average: 0.723%
    • Dependent packages count: 1.049%
    • Dependent repos count: 1.131%
proxy.golang.org: github.com/apache/arrow/go/v9

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v9#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 8 more
  • Latest release: v9.0.0 (published almost 4 years ago)
  • Last Synced: 2026-05-29T01:01:01.867Z (22 days ago)
  • Versions: 1
  • Dependent Packages: 11
  • Dependent Repositories: 10
  • Rankings:
    • Forks count: 0.115%
    • Stargazers count: 0.59%
    • Average: 0.951%
    • Dependent packages count: 1.406%
    • Dependent repos count: 1.694%
proxy.golang.org: github.com/Apache/arrow/go/v15

proxy.golang.org: github.com/apache/arrow/go/v12

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v12#section-documentation
  • Licenses: Apache-2.0,BSD-2-Clause,BSD-3-Clause,BSL-1.0,CC-BY-3.0,HPND,MIT,NCSA,OpenSSL,Zlib
  • Latest release: v12.0.1 (published about 3 years ago)
  • Last Synced: 2026-05-29T10:52:06.382Z (22 days ago)
  • Versions: 2
  • Dependent Packages: 489
  • Dependent Repositories: 366
  • Docker Downloads: 965,653,151
  • Rankings:
    • Forks count: 0.115%
    • Dependent repos count: 0.357%
    • Stargazers count: 0.59%
    • Average: 1.015%
    • Docker downloads count: 1.477%
    • Dependent packages count: 2.536%
conda-forge.org: pyarrow

  • Homepage: http://github.com/apache/arrow
  • Licenses: Apache-2.0
  • Latest release: 9.0.0 (published almost 4 years ago)
  • Last Synced: 2026-04-01T16:22:30.946Z (3 months ago)
  • Versions: 42
  • Dependent Packages: 160
  • Dependent Repositories: 605
  • Rankings:
    • Dependent packages count: 0.454%
    • Dependent repos count: 1.093%
    • Average: 1.536%
    • Forks count: 2.061%
    • Stargazers count: 2.536%
conda-forge.org: arrow-cpp

  • Homepage: http://github.com/apache/arrow
  • Licenses: Apache-2.0
  • Latest release: 9.0.0 (published almost 4 years ago)
  • Last Synced: 2026-04-01T16:18:59.008Z (3 months ago)
  • Versions: 44
  • Dependent Packages: 27
  • Dependent Repositories: 250
  • Rankings:
    • Dependent repos count: 2.051%
    • Forks count: 2.061%
    • Average: 2.279%
    • Dependent packages count: 2.466%
    • Stargazers count: 2.536%
conda-forge.org: java-org.apache.arrow.arrow-tools-with-dependencies

  • Homepage: https://arrow.apache.org/
  • Licenses: Apache-2.0
  • Latest release: 0.15.1 (published over 6 years ago)
  • Last Synced: 2026-04-01T16:14:05.917Z (3 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,319 Total
  • Rankings:
    • Forks count: 2.071%
    • Average: 2.31%
    • Stargazers count: 2.549%
conda-forge.org: java-org.apache.arrow.arrow-jdbc-with-dependencies

  • Homepage: https://arrow.apache.org/
  • Licenses: Apache-2.0
  • Latest release: 0.15.1 (published over 6 years ago)
  • Last Synced: 2026-03-14T13:19:28.357Z (3 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,049 Total
  • Rankings:
    • Forks count: 2.071%
    • Average: 2.31%
    • Stargazers count: 2.549%
proxy.golang.org: github.com/apache/arrow/go/v13

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v13#section-documentation
  • Licenses: Apache-2.0,BSD-2-Clause,BSD-3-Clause,BSL-1.0,CC-BY-3.0,HPND,MIT,NCSA,OpenSSL,Zlib
  • Latest release: v13.0.0 (published almost 3 years ago)
  • Last Synced: 2026-05-29T23:01:56.273Z (21 days ago)
  • Versions: 1
  • Dependent Packages: 164
  • Dependent Repositories: 32
  • Docker Downloads: 5,225,848,936
  • Rankings:
    • Forks count: 0.115%
    • Stargazers count: 0.586%
    • Dependent repos count: 0.985%
    • Average: 2.535%
    • Dependent packages count: 8.453%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/compute/exec

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/compute/exec#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published about 1 month ago)
  • Last Synced: 2026-05-29T23:01:34.384Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.075%
    • Stargazers count: 0.636%
    • Average: 2.635%
    • Dependent packages count: 4.756%
    • Dependent repos count: 5.075%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/encoded

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/encoded#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published about 1 month ago)
  • Last Synced: 2026-05-29T23:01:46.763Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.075%
    • Stargazers count: 0.636%
    • Average: 2.635%
    • Dependent packages count: 4.756%
    • Dependent repos count: 5.075%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/endian

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/endian#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published about 1 month ago)
  • Last Synced: 2026-05-29T23:01:43.409Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.075%
    • Stargazers count: 0.636%
    • Average: 2.635%
    • Dependent packages count: 4.756%
    • Dependent repos count: 5.075%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/internal/debug

Package debug provides APIs for conditional runtime assertions and debug logging. To enable runtime assertions, build with the assert tag. When the assert tag is omitted, the code for the assertion will be omitted from the binary. To enable runtime debug logs, build with the debug tag. When the debug tag is omitted, the code for logging will be omitted from the binary.

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/internal/debug#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published about 1 month ago)
  • Last Synced: 2026-05-29T23:02:00.474Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.075%
    • Stargazers count: 0.636%
    • Average: 2.635%
    • Dependent packages count: 4.756%
    • Dependent repos count: 5.075%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/float16

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/float16#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published about 1 month ago)
  • Last Synced: 2026-05-29T23:01:42.131Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.075%
    • Stargazers count: 0.636%
    • Average: 2.635%
    • Dependent packages count: 4.756%
    • Dependent repos count: 5.075%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/internal/flatbuf

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/internal/flatbuf#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published about 1 month ago)
  • Last Synced: 2026-05-29T23:01:40.503Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.075%
    • Stargazers count: 0.636%
    • Average: 2.635%
    • Dependent packages count: 4.756%
    • Dependent repos count: 5.075%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/compute

Package compute is a native-go implementation of an Acero-like arrow compute engine. It requires go1.18+ While consumers of Arrow that are able to use CGO could utilize the C Data API (using the cdata package) and could link against the acero library directly, there are consumers who cannot use CGO. This is an attempt to provide for those users, and in general create a native-go arrow compute engine. The overwhelming majority of things in this package require go1.18 as it utilizes generics. The files in this package and its sub-packages are all excluded from being built by go versions lower than 1.18 so that the larger Arrow module itself is still compatible with go1.17. Everything in this package should be considered Experimental for now. This example demonstrates how to register a custom scalar function.

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/compute#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published about 1 month ago)
  • Last Synced: 2026-05-29T23:02:04.136Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.075%
    • Stargazers count: 0.636%
    • Average: 2.635%
    • Dependent packages count: 4.756%
    • Dependent repos count: 5.075%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/ipc

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/ipc#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published about 1 month ago)
  • Last Synced: 2026-05-29T23:01:32.854Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.075%
    • Stargazers count: 0.636%
    • Average: 2.635%
    • Dependent packages count: 4.756%
    • Dependent repos count: 5.075%
proxy.golang.org: github.com/Apache/arrow/go/v14

  • Homepage:
  • Documentation: https://pkg.go.dev/github.com/Apache/arrow/go/v14#section-documentation
  • Licenses: apache-2.0
  • Latest release: v14.0.2 (published over 2 years ago)
  • Last Synced: 2026-05-29T23:01:50.160Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.084%
    • Stargazers count: 0.673%
    • Average: 2.859%
    • Dependent packages count: 5.167%
    • Dependent repos count: 5.514%
proxy.golang.org: github.com/apache/arrow/go/v15/internal/json

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/internal/json#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published 4 months ago)
  • Last Synced: 2026-05-29T23:02:07.017Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.07%
    • Stargazers count: 0.678%
    • Average: 3.133%
    • Dependent packages count: 5.7%
    • Dependent repos count: 6.082%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/bitutil

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/bitutil#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published 4 months ago)
  • Last Synced: 2026-05-29T23:01:42.351Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.07%
    • Stargazers count: 0.677%
    • Average: 3.136%
    • Dependent packages count: 5.707%
    • Dependent repos count: 6.089%
proxy.golang.org: github.com/apache/arrow/go/v15/internal/bitutils

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/internal/bitutils#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published 4 months ago)
  • Last Synced: 2026-05-29T23:01:38.088Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.07%
    • Stargazers count: 0.677%
    • Average: 3.136%
    • Dependent packages count: 5.707%
    • Dependent repos count: 6.089%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow

Package arrow provides an implementation of Apache Arrow. Apache Arrow is a cross-language development platform for in-memory data. It specifies a standardized language-independent columnar memory format for flat and hierarchical data, organized for efficient analytic operations on modern hardware. It also provides computational libraries and zero-copy streaming messaging and inter-process communication. The fundamental data structure in Arrow is an Array, which holds a sequence of values of the same type. An array consists of memory holding the data and an additional validity bitmap that indicates if the corresponding entry in the array is valid (not null). If the array has no null entries, it is possible to omit this bitmap. Despite the go.mod stating go1.20, everything is able to be built with go1.19 or higher. To build with tinygo include the noasm build tag. This example shows how to create a FixedSizeList array. The resulting array should be: This example shows how one can slice an array. The initial (float64) array is: and the sub-slice is: This example demonstrates creating an array, sourcing the values and null bitmaps directly from byte slices. The null count is set to UnknownNullCount, instructing the array to calculate the null count from the bitmap when NullN is called. This example shows how to create a List array. The resulting array should be: This example demonstrates how to create a Map Array. The resulting array should be: This example demonstrates how to build an array of int64 values using a builder and Append. Whilst convenient for small arrays, This example shows how to create a Struct array. The resulting array should be:

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published 4 months ago)
  • Last Synced: 2026-05-29T23:01:58.875Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.07%
    • Stargazers count: 0.677%
    • Average: 3.138%
    • Dependent packages count: 5.711%
    • Dependent repos count: 6.093%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/arrio

Package arrio exposes functions to manipulate records, exposing and using interfaces not unlike the ones defined in the stdlib io package.

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/arrio#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published 4 months ago)
  • Last Synced: 2026-05-29T23:02:06.339Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.07%
    • Stargazers count: 0.677%
    • Average: 3.138%
    • Dependent packages count: 5.711%
    • Dependent repos count: 6.093%
proxy.golang.org: github.com/apache/arrow/go/v6

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v6#section-documentation
  • Licenses: apache-2.0
  • Latest release: v6.0.2 (published almost 4 years ago)
  • Last Synced: 2026-05-29T23:01:41.597Z (21 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 1
  • Rankings:
    • Forks count: 0.115%
    • Stargazers count: 0.59%
    • Average: 3.488%
    • Dependent repos count: 4.794%
    • Dependent packages count: 8.453%
cran.r-project.org: arrow

Integration to 'Apache' 'Arrow'

  • Homepage: https://github.com/apache/arrow/
  • Documentation: http://cran.r-project.org/web/packages/arrow/arrow.pdf
  • Licenses: Apache License (≥ 2.0)
  • Latest release: 24.0.0 (published about 2 months ago)
  • Last Synced: 2026-05-29T23:01:55.611Z (21 days ago)
  • Versions: 59
  • Dependent Packages: 61
  • Dependent Repositories: 603
  • Downloads: 262,666 Last month
  • Docker Downloads: 11,826,897
  • Rankings:
    • Stargazers count: 0.017%
    • Forks count: 0.017%
    • Dependent repos count: 0.562%
    • Dependent packages count: 1.568%
    • Downloads: 1.629%
    • Average: 3.515%
    • Docker downloads count: 17.297%
  • Maintainers (1)
proxy.golang.org: github.com/apache/arrow/go/parquet

Package parquet provides an implementation of Apache Parquet for Go.

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/parquet#section-documentation
  • Licenses: Apache-2.0,BSD-2-Clause,BSD-3-Clause,BSL-1.0,CC-BY-3.0,CC0-1.0,HPND,MIT,NCSA,OpenSSL,Zlib
  • Latest release: (published 26 days ago)
  • Last Synced: 2026-05-29T23:01:53.079Z (21 days ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Docker Downloads: 375
  • Rankings:
    • Forks count: 0.055%
    • Stargazers count: 0.45%
    • Average: 4.213%
    • Dependent packages count: 6.999%
    • Dependent repos count: 9.346%
repo1.maven.org: org.apache.arrow:flight-grpc

(Experimental)Contains utility class to expose Flight gRPC service and client

  • Homepage: https://arrow.apache.org/
  • Documentation: https://appdoc.app/artifact/org.apache.arrow/flight-grpc/
  • Licenses: Apache-2.0,Apache-2.0
  • Latest release: 15.0.2 (published over 2 years ago)
  • Last Synced: 2026-05-29T23:02:06.960Z (21 days ago)
  • Versions: 27
  • Dependent Packages: 7
  • Dependent Repositories: 10
  • Docker Downloads: 1,259,156
  • Rankings:
    • Docker downloads count: 1.734%
    • Stargazers count: 2.335%
    • Forks count: 2.696%
    • Average: 4.547%
    • Dependent repos count: 7.705%
    • Dependent packages count: 8.262%
proxy.golang.org: github.com/apache/arrow/go/v14

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v14#section-documentation
  • Licenses: Apache-2.0,BSD-2-Clause,BSD-3-Clause,BSL-1.0,CC-BY-3.0,HPND,MIT,NCSA,OpenSSL,Zlib
  • Latest release: v14.0.2 (published over 2 years ago)
  • Last Synced: 2026-05-29T23:02:02.485Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 261
  • Dependent Repositories: 0
  • Docker Downloads: 1,685
  • Rankings:
    • Forks count: 0.11%
    • Stargazers count: 0.55%
    • Average: 4.873%
    • Dependent packages count: 8.453%
    • Dependent repos count: 10.38%
proxy.golang.org: github.com/Apache/Arrow/go/v17

proxy.golang.org: github.com/apache/arrow/go/v15/arrow/scalar

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/scalar#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published about 1 month ago)
  • Last Synced: 2026-05-29T23:01:43.621Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 4.756%
    • Average: 4.916%
    • Dependent repos count: 5.075%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/compute/internal/kernels

Package kernels defines all of the computation kernels for the compute library. This requires >= go1.18 since it utilizes Go generics.

proxy.golang.org: github.com/Apache/arrow/go/v13

proxy.golang.org: github.com/apache/arrow/go/v15

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15#section-documentation
  • Licenses: Apache-2.0,BSD-2-Clause,BSD-3-Clause,BSL-1.0,CC-BY-3.0,HPND,MIT,NCSA,OpenSSL,Zlib
  • Latest release: v15.0.2 (published over 2 years ago)
  • Last Synced: 2026-05-29T23:02:03.611Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 110
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 0.109%
    • Stargazers count: 0.54%
    • Average: 5.085%
    • Dependent packages count: 8.978%
    • Dependent repos count: 10.713%
proxy.golang.org: github.com/Apache/arrow/go/v12

anaconda.org: pyarrow

This library provides a Python API for functionality provided by the Arrow C++ libraries, along with tools for Arrow integration and interoperability with pandas, NumPy, and other software in the Python ecosystem.

  • Homepage: https://github.com/apache/arrow
  • Licenses: Apache-2.0
  • Latest release: 23.0.1 (published 4 months ago)
  • Last Synced: 2026-03-18T19:06:25.368Z (3 months ago)
  • Versions: 18
  • Dependent Packages: 29
  • Dependent Repositories: 605
  • Downloads: 276,980 Total
  • Rankings:
    • Dependent packages count: 1.26%
    • Average: 5.247%
    • Forks count: 5.962%
    • Dependent repos count: 6.607%
    • Stargazers count: 7.16%
proxy.golang.org: github.com/Apache/arrow/go/v10

  • Homepage:
  • Documentation: https://pkg.go.dev/github.com/Apache/arrow/go/v10#section-documentation
  • Licenses: apache-2.0
  • Latest release: v10.0.1 (published over 3 years ago)
  • Last Synced: 2026-05-29T23:01:58.148Z (21 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 5.421%
    • Average: 5.603%
    • Dependent repos count: 5.785%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/internal

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/internal#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published 4 months ago)
  • Last Synced: 2026-05-29T23:01:34.684Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 5.7%
    • Average: 5.891%
    • Dependent repos count: 6.082%
proxy.golang.org: github.com/apache/arrow/go/v15/internal/utils

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/internal/utils#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published 4 months ago)
  • Last Synced: 2026-05-29T23:02:06.284Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 5.7%
    • Average: 5.891%
    • Dependent repos count: 6.082%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/memory

Package memory provides support for allocating and manipulating memory at a low level. The build tag 'mallocator' will switch the default allocator to one backed by libc malloc. This also requires CGO.

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/memory#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published 4 months ago)
  • Last Synced: 2026-05-29T23:01:40.205Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 5.7%
    • Average: 5.891%
    • Dependent repos count: 6.082%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/decimal128

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/decimal128#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published 4 months ago)
  • Last Synced: 2026-05-29T23:01:49.139Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 5.703%
    • Average: 5.894%
    • Dependent repos count: 6.085%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/internal/dictutils

proxy.golang.org: github.com/apache/arrow/go/v15/arrow/decimal256

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/decimal256#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published 4 months ago)
  • Last Synced: 2026-05-29T23:01:47.699Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 5.703%
    • Average: 5.894%
    • Dependent repos count: 6.085%
proxy.golang.org: github.com/apache/arrow/go/v15/internal/hashing

Package hashing provides utilities for and an implementation of a hash table which is more performant than the default go map implementation by leveraging xxh3 and some custom hash functions.

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/internal/hashing#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published 4 months ago)
  • Last Synced: 2026-05-29T23:01:44.206Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 5.703%
    • Average: 5.894%
    • Dependent repos count: 6.085%
proxy.golang.org: github.com/apache/arrow/go/v15/arrow/array

Package array provides implementations of various Arrow array types.

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v15/arrow/array#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v15.0.2 (published 4 months ago)
  • Last Synced: 2026-05-29T23:01:45.644Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 5.711%
    • Average: 5.902%
    • Dependent repos count: 6.093%
proxy.golang.org: github.com/apache/arrow/go/v18

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v18#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: (published about 1 month ago)
  • Last Synced: 2026-05-29T23:02:06.409Z (21 days ago)
  • Versions: 0
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 6.338%
    • Average: 6.552%
    • Dependent repos count: 6.766%
conda-forge.org: parquet-cpp

  • Homepage: http://github.com/apache/arrow
  • Licenses: Apache 2.0
  • Latest release: 1.5.1 (published over 7 years ago)
  • Last Synced: 2026-03-18T18:08:43.666Z (3 months ago)
  • Versions: 13
  • Dependent Packages: 2
  • Dependent Repositories: 146
  • Downloads: 12,672,127 Total
  • Rankings:
    • Forks count: 2.061%
    • Stargazers count: 2.536%
    • Dependent repos count: 2.875%
    • Average: 6.758%
    • Dependent packages count: 19.561%
proxy.golang.org: github.com/apache/arrow/go/v17

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v17#section-documentation
  • Licenses: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 7 more
  • Latest release: v17.0.0 (published almost 2 years ago)
  • Last Synced: 2026-05-29T23:02:07.580Z (21 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 7.003%
    • Average: 7.451%
    • Dependent repos count: 7.898%
repo1.maven.org: org.apache.arrow:arrow-plasma

(DEPRECATED) Java client for the Plasma object store. This is deprecated since 10.0.0. This will be removed from 12.0.0 or so.

  • Homepage: https://arrow.apache.org/
  • Documentation: https://appdoc.app/artifact/org.apache.arrow/arrow-plasma/
  • Licenses: Apache-2.0,Apache-2.0
  • Latest release: 11.0.0 (published over 3 years ago)
  • Last Synced: 2026-05-29T23:01:34.578Z (21 days ago)
  • Versions: 26
  • Dependent Packages: 3
  • Dependent Repositories: 10
  • Docker Downloads: 5
  • Rankings:
    • Stargazers count: 2.335%
    • Forks count: 2.696%
    • Average: 7.517%
    • Dependent repos count: 7.705%
    • Dependent packages count: 17.332%
conda-forge.org: r-arrow

  • Homepage: https://github.com/apache/arrow
  • Licenses: Apache-2.0
  • Latest release: 9.0.0 (published almost 4 years ago)
  • Last Synced: 2026-03-17T22:06:31.897Z (3 months ago)
  • Versions: 22
  • Dependent Packages: 4
  • Dependent Repositories: 4
  • Downloads: 1,040,349 Total
  • Rankings:
    • Forks count: 2.061%
    • Stargazers count: 2.536%
    • Average: 8.273%
    • Dependent packages count: 12.478%
    • Dependent repos count: 16.017%
proxy.golang.org: github.com/apache/arrow/go/v16

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://pkg.go.dev/github.com/apache/arrow/go/v16#section-documentation
  • Licenses: Apache-2.0,BSD-2-Clause,BSD-3-Clause,BSL-1.0,CC-BY-3.0,HPND,MIT,NCSA,OpenSSL,Zlib
  • Latest release: v16.1.0 (published about 2 years ago)
  • Last Synced: 2026-05-29T23:01:41.340Z (21 days ago)
  • Versions: 2
  • Dependent Packages: 12
  • Dependent Repositories: 0
  • Rankings:
    • Dependent packages count: 9.115%
    • Average: 9.696%
    • Dependent repos count: 10.278%
crates.io: datafusion-arrow

Rust implementation of Apache Arrow

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://docs.rs/datafusion-arrow/
  • Licenses: Apache-2.0
  • Latest release: (published 21 days ago)
  • Last Synced: 2026-05-29T23:02:01.899Z (21 days ago)
  • Versions: 20
  • Dependent Packages: 1
  • Dependent Repositories: 1
  • Downloads: 45,250 Total
  • Rankings:
    • Forks count: 0.337%
    • Stargazers count: 0.804%
    • Average: 9.739%
    • Downloads: 14.757%
    • Dependent packages count: 15.669%
    • Dependent repos count: 17.13%
  • Maintainers (1)
conda-forge.org: arrow-cpp-proc

  • Homepage: http://github.com/apache/arrow
  • Licenses: Apache-2.0
  • Latest release: 3.0.0 (published over 5 years ago)
  • Last Synced: 2026-03-23T00:11:34.028Z (3 months ago)
  • Versions: 4
  • Dependent Packages: 5
  • Dependent Repositories: 1
  • Downloads: 282,880 Total
  • Rankings:
    • Forks count: 2.061%
    • Stargazers count: 2.536%
    • Average: 9.772%
    • Dependent packages count: 10.402%
    • Dependent repos count: 24.088%
anaconda.org: arrow-cpp

Apache Arrow defines a language-independent columnar memory format for flat and hierarchical data, organized for efficient analytic operations on modern hardware like CPUs and GPUs.

  • Homepage: https://github.com/apache/arrow
  • Licenses: Apache-2.0
  • Latest release: 23.0.1 (published 4 months ago)
  • Last Synced: 2026-03-17T22:03:51.640Z (3 months ago)
  • Versions: 19
  • Dependent Packages: 4
  • Dependent Repositories: 250
  • Downloads: 270,121 Total
  • Rankings:
    • Forks count: 5.991%
    • Stargazers count: 7.189%
    • Average: 11.697%
    • Dependent repos count: 12.043%
    • Dependent packages count: 21.567%
nuget.org: apache.arrow

Apache Arrow is a cross-language development platform for in-memory data. It specifies a standardized language-independent columnar memory format for flat and hierarchical data, organized for efficient analytic operations on modern hardware.

  • Homepage: https://arrow.apache.org/
  • Licenses: Apache-2.0
  • Latest release: 23.0.0 (published about 2 months ago)
  • Last Synced: 2026-05-29T10:55:31.774Z (22 days ago)
  • Versions: 45
  • Dependent Packages: 11
  • Dependent Repositories: 0
  • Downloads: 33,729,331 Total
  • Rankings:
    • Downloads: 0.721%
    • Average: 12.012%
    • Dependent repos count: 14.978%
    • Dependent packages count: 20.338%
  • Maintainers (6)
repo1.maven.org: com.intel.arrow:arrow-memory

Core off-heap memory management libraries for Arrow ValueVectors.

  • Homepage: https://arrow.apache.org/
  • Documentation: https://appdoc.app/artifact/com.intel.arrow/arrow-memory/
  • Licenses: Apache-2.0,Apache-2.0
  • Latest release: 0.17.0-oap-0.9 (published almost 6 years ago)
  • Last Synced: 2026-05-29T23:01:50.951Z (21 days ago)
  • Versions: 2
  • Dependent Packages: 3
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 1.771%
    • Forks count: 2.085%
    • Average: 13.185%
    • Dependent packages count: 16.904%
    • Dependent repos count: 31.98%
npmjs.org: @domoritz/apache-arrow

Apache Arrow columnar in-memory format

  • Homepage: https://github.com/apache/arrow/blob/master/js/README.md
  • Licenses: Apache-2.0
  • Latest release: 8.0.0-canary.9bbbb770b (published about 4 years ago)
  • Last Synced: 2026-05-29T23:01:47.567Z (21 days ago)
  • Versions: 12
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 146 Last month
  • Rankings:
    • Forks count: 0.854%
    • Stargazers count: 1.155%
    • Average: 13.579%
    • Dependent packages count: 16.224%
    • Downloads: 24.336%
    • Dependent repos count: 25.328%
  • Maintainers (1)
nuget.org: apache.arrow.flight

Package Description

  • Homepage: https://arrow.apache.org/
  • Licenses: Apache-2.0
  • Latest release: 23.0.0 (published about 2 months ago)
  • Last Synced: 2026-05-29T14:30:32.789Z (22 days ago)
  • Versions: 34
  • Dependent Packages: 4
  • Dependent Repositories: 0
  • Downloads: 1,262,157 Total
  • Rankings:
    • Downloads: 7.895%
    • Average: 14.404%
    • Dependent repos count: 14.978%
    • Dependent packages count: 20.338%
  • Maintainers (6)
repo1.maven.org: com.intel.arrow:arrow-vector

An off-heap reference implementation for Arrow columnar data format.

  • Homepage: https://arrow.apache.org/
  • Documentation: https://appdoc.app/artifact/com.intel.arrow/arrow-vector/
  • Licenses: Apache-2.0,Apache-2.0
  • Latest release: 0.17.0-oap-0.9 (published almost 6 years ago)
  • Last Synced: 2026-05-29T23:01:48.329Z (21 days ago)
  • Versions: 2
  • Dependent Packages: 2
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 1.771%
    • Forks count: 2.085%
    • Average: 14.549%
    • Dependent packages count: 22.361%
    • Dependent repos count: 31.98%
nuget.org: apache.arrow.flight.aspnetcore

Package Description

  • Homepage: https://arrow.apache.org/
  • Licenses: Apache-2.0
  • Latest release: 23.0.0 (published about 2 months ago)
  • Last Synced: 2026-05-29T23:02:05.685Z (21 days ago)
  • Versions: 34
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 70,126 Total
  • Rankings:
    • Downloads: 14.297%
    • Dependent repos count: 14.978%
    • Average: 16.538%
    • Dependent packages count: 20.338%
  • Maintainers (6)
repo1.maven.org: com.intel.arrow:arrow-format

Generated Java files from the IPC Flatbuffer definitions.

  • Homepage: https://arrow.apache.org/
  • Documentation: https://appdoc.app/artifact/com.intel.arrow/arrow-format/
  • Licenses: Apache-2.0,Apache-2.0
  • Latest release: 0.17.0-oap-0.9 (published almost 6 years ago)
  • Last Synced: 2026-05-29T23:02:05.018Z (21 days ago)
  • Versions: 2
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 1.771%
    • Forks count: 2.085%
    • Average: 16.959%
    • Dependent repos count: 31.98%
    • Dependent packages count: 31.998%
repo1.maven.org: com.intel.arrow:arrow-plasma

(Experimental/Contrib) Java client for the Plasma object store.

  • Homepage: https://arrow.apache.org/
  • Documentation: https://appdoc.app/artifact/com.intel.arrow/arrow-plasma/
  • Licenses: Apache-2.0,Apache-2.0
  • Latest release: 0.17.0 (published about 6 years ago)
  • Last Synced: 2026-05-29T23:01:33.571Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 3
  • Rankings:
    • Stargazers count: 2.335%
    • Forks count: 2.696%
    • Dependent repos count: 13.663%
    • Average: 17.145%
    • Dependent packages count: 49.885%
anaconda.org: parquet-cpp

  • Homepage: http://github.com/apache/arrow
  • Licenses: Apache 2.0
  • Latest release: 1.5.1 (published over 6 years ago)
  • Last Synced: 2026-03-23T00:11:43.856Z (3 months ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 146
  • Downloads: 60,139 Total
  • Rankings:
    • Forks count: 5.991%
    • Stargazers count: 7.189%
    • Dependent repos count: 16.344%
    • Average: 17.634%
    • Dependent packages count: 41.014%
pypi.org: popperrow

Python library for Apache Arrow

  • Homepage: https://arrow.apache.org/
  • Documentation: https://arrow.apache.org/docs/python
  • Licenses: Apache License, Version 2.0
  • Latest release: 11.0.0 (published almost 3 years ago)
  • Last Synced: 2026-05-29T23:01:45.680Z (21 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 42 Last month
  • Rankings:
    • Stargazers count: 0.146%
    • Forks count: 0.179%
    • Dependent packages count: 7.481%
    • Average: 19.384%
    • Dependent repos count: 69.73%
  • Maintainers (1)
gem.coop: red-arrow-format

Apache Arrow is a common in-memory columnar data store. It's useful to share and process large data efficiently. Red Arrow Format provides only serialize/deserialize features. If you want to process Apache Arrow data efficiently, use Red Arrow instead.

  • Homepage: https://arrow.apache.org/
  • Documentation: http://www.rubydoc.info/gems/red-arrow-format/
  • Licenses: Apache-2.0
  • Latest release: 24.0.0 (published about 2 months ago)
  • Last Synced: 2026-05-29T23:01:46.868Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,044 Total
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Stargazers count: 0.078%
    • Forks count: 0.09%
    • Average: 19.813%
    • Downloads: 98.896%
  • Maintainers (2)
repo1.maven.org: com.intel.arrow:arrow-java-root

Apache Arrow is open source, in-memory columnar data structures and low-overhead messaging

  • Homepage: https://arrow.apache.org/
  • Documentation: https://appdoc.app/artifact/com.intel.arrow/arrow-java-root/
  • Licenses: The Apache License, Version 2.0
  • Latest release: 0.17.0 (published about 6 years ago)
  • Last Synced: 2026-05-29T23:01:45.669Z (21 days ago)
  • Versions: 5
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 1.771%
    • Forks count: 2.085%
    • Average: 21.174%
    • Dependent repos count: 31.98%
    • Dependent packages count: 48.86%
repo1.maven.org: com.intel.arrow:arrow-dataset

Java implementation of Arrow Datasets API/Framework

  • Homepage: https://arrow.apache.org/
  • Documentation: https://appdoc.app/artifact/com.intel.arrow/arrow-dataset/
  • Licenses: Apache-2.0,Apache-2.0
  • Latest release: 0.17.0-oap-0.9 (published almost 6 years ago)
  • Last Synced: 2026-05-29T23:02:05.648Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 1.771%
    • Forks count: 2.085%
    • Average: 21.174%
    • Dependent repos count: 31.98%
    • Dependent packages count: 48.86%
repo1.maven.org: com.intel.arrow:arrow-gandiva

Java wrappers around the native Gandiva SQL expression compiler.

  • Homepage: https://arrow.apache.org/
  • Documentation: https://appdoc.app/artifact/com.intel.arrow/arrow-gandiva/
  • Licenses: Apache-2.0,Apache-2.0
  • Latest release: 0.17.0-oap-0.9 (published almost 6 years ago)
  • Last Synced: 2026-05-29T23:01:36.682Z (21 days ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 1.771%
    • Forks count: 2.085%
    • Average: 21.174%
    • Dependent repos count: 31.98%
    • Dependent packages count: 48.86%
repo1.maven.org: org.webjars.npm:apache-arrow

WebJar for apache-arrow

  • Homepage: https://www.webjars.org
  • Documentation: https://appdoc.app/artifact/org.webjars.npm/apache-arrow/
  • Licenses: Apache-2.0
  • Latest release: 6.0.0 (published over 4 years ago)
  • Last Synced: 2026-05-29T23:01:49.436Z (21 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Stargazers count: 2.188%
    • Forks count: 2.194%
    • Average: 21.305%
    • Dependent repos count: 31.98%
    • Dependent packages count: 48.86%
conda-forge.org: pyarrow-tests

  • Homepage: http://github.com/apache/arrow
  • Licenses: Apache-2.0
  • Latest release: 9.0.0 (published almost 4 years ago)
  • Last Synced: 2026-04-01T16:10:13.938Z (3 months ago)
  • Versions: 14
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 1.977%
    • Stargazers count: 2.541%
    • Average: 22.429%
    • Dependent repos count: 34.025%
    • Dependent packages count: 51.175%
conda-forge.org: arrow-c-glib

Apache Arrow is a development platform for in-memory analytics. It contains a set of technologies that enable big data systems to process and move data fast. Arrow GLib is a wrapper library for Arrow C++. Arrow GLib provides C API.

  • Homepage: https://arrow.apache.org
  • Licenses: Apache-2.0
  • Latest release: 9.0.0 (published almost 4 years ago)
  • Last Synced: 2026-04-01T15:11:04.958Z (3 months ago)
  • Versions: 2
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Forks count: 1.977%
    • Stargazers count: 2.541%
    • Average: 22.429%
    • Dependent repos count: 34.025%
    • Dependent packages count: 51.175%
crates.io: polars_arrow_rvsry99dx

Rust implementation of Apache Arrow

  • Homepage: https://github.com/apache/arrow
  • Documentation: https://docs.rs/polars_arrow_rvsry99dx/
  • Licenses: Apache-2.0
  • Latest release: 0.17.1 (published almost 6 years ago)
  • Last Synced: 2026-05-29T23:01:51.150Z (21 days ago)
  • Versions: 1
  • Dependent Packages: 1
  • Dependent Repositories: 0
  • Downloads: 1,895 Total
  • Rankings:
    • Forks count: 0.328%
    • Stargazers count: 0.729%
    • Dependent packages count: 16.956%
    • Average: 22.92%
    • Dependent repos count: 29.318%
    • Downloads: 67.268%
  • Maintainers (1)
nuget.org: apache.arrow.compression

Provides decompression support for the Arrow IPC format

  • Homepage: https://arrow.apache.org/
  • Licenses: Apache-2.0
  • Latest release: 23.0.0 (published about 2 months ago)
  • Last Synced: 2026-05-29T23:01:52.181Z (21 days ago)
  • Versions: 21
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 68,585 Total
  • Rankings:
    • Dependent repos count: 14.978%
    • Dependent packages count: 20.338%
    • Average: 25.224%
    • Downloads: 40.356%
  • Maintainers (6)
nuget.org: apache.arrow.operations

Format-specific codecs for the Apache Arrow Variant binary format, including JSON reader/writer.

  • Homepage: https://arrow.apache.org/
  • Licenses: Apache-2.0
  • Latest release: 23.0.0 (published about 2 months ago)
  • Last Synced: 2026-05-29T23:01:56.874Z (21 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 61 Total
  • Rankings:
    • Dependent repos count: 6.019%
    • Dependent packages count: 16.086%
    • Average: 26.145%
    • Downloads: 56.33%
  • Maintainers (1)
nuget.org: apache.arrow.scalars

Apache Arrow scalar types, including Parquet-compatible variants. Provides readers, writers, and object model for the Parquet Variant binary format for semi-structured data.

  • Homepage: https://arrow.apache.org/
  • Licenses: Apache-2.0
  • Latest release: 23.0.0 (published about 2 months ago)
  • Last Synced: 2026-05-29T23:01:47.194Z (21 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 19,699 Total
  • Rankings:
    • Dependent repos count: 6.019%
    • Dependent packages count: 16.086%
    • Average: 26.145%
    • Downloads: 56.33%
  • Maintainers (1)
nuget.org: arrow

Apache Arrow is a cross-language development platform for in-memory data. It specifies a standardized language-independent columnar memory format for flat and hierarchical data, organized for efficient analytic operations on modern hardware.

  • Homepage: https://arrow.apache.org/
  • Licenses: Apache-2.0
  • Latest release: 19.0.1 (published 7 months ago)
  • Last Synced: 2026-05-29T23:01:57.849Z (21 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,249 Total
  • Rankings:
    • Dependent repos count: 6.496%
    • Dependent packages count: 17.423%
    • Average: 26.986%
    • Downloads: 57.039%
  • Maintainers (1)
nuget.org: apache.arrow.flight.sql

Package Description

  • Homepage: https://arrow.apache.org/
  • Licenses: Apache-2.0
  • Latest release: 23.0.0 (published about 2 months ago)
  • Last Synced: 2026-05-29T23:02:07.029Z (21 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,604 Total
  • Rankings:
    • Dependent repos count: 6.854%
    • Dependent packages count: 18.388%
    • Average: 27.214%
    • Downloads: 56.398%
  • Maintainers (5)
rubygems.org: red-arrow-format

Apache Arrow is a common in-memory columnar data store. It's useful to share and process large data efficiently. Red Arrow Format provides only serialize/deserialize features. If you want to process Apache Arrow data efficiently, use Red Arrow instead.

  • Homepage: https://arrow.apache.org/
  • Documentation: http://www.rubydoc.info/gems/red-arrow-format/
  • Licenses: Apache-2.0
  • Latest release: 24.0.0 (published about 2 months ago)
  • Last Synced: 2026-05-29T23:02:07.549Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,044 Total
  • Rankings:
    • Stargazers count: 0.082%
    • Forks count: 0.095%
    • Dependent packages count: 14.059%
    • Average: 29.769%
    • Dependent repos count: 43.059%
    • Downloads: 91.551%
  • Maintainers (2)
npmjs.org: arrow-slim-deps

Apache Arrow columnar in-memory format

  • Homepage: https://github.com/apache/arrow/blob/main/js/README.md
  • Status: unpublished
  • Licenses: Apache-2.0
  • Latest release: 18.0.0-SNAPSHOT (published over 1 year ago)
  • Last Synced: 2026-05-29T23:01:32.879Z (21 days ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 25.641%
    • Average: 31.401%
    • Dependent packages count: 37.161%
  • Maintainers (1)
npmjs.org: arrow-light-deps

Apache Arrow columnar in-memory format

  • Homepage: https://github.com/apache/arrow/blob/main/js/README.md
  • Licenses: Apache-2.0
  • Latest release: 18.0.6-SNAPSHOT (published over 1 year ago)
  • Last Synced: 2026-05-29T23:02:07.678Z (21 days ago)
  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 23,942 Last month
  • Rankings:
    • Dependent repos count: 25.641%
    • Average: 31.401%
    • Dependent packages count: 37.161%
  • Maintainers (1)
pypi.org: pyarrow-cramjam

Python library for Apache Arrow

  • Homepage: https://arrow.apache.org/
  • Documentation: https://arrow.apache.org/docs/python
  • Licenses: Apache License, Version 2.0
  • Latest release: 14.1.5 (published over 2 years ago)
  • Last Synced: 2026-05-29T23:02:03.469Z (21 days ago)
  • Versions: 3
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 16 Last month
  • Rankings:
    • Dependent packages count: 10.151%
    • Average: 38.561%
    • Dependent repos count: 66.971%
  • Maintainers (1)
guix: r-arrow

R integration to Apache Arrow

  • Homepage: https://github.com/apache/arrow/
  • Documentation: https://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/cran.scm#n39150
  • Licenses: asl2.0
  • Latest release: 23.0.0.1 (published 4 months ago)
  • Last Synced: 2026-04-07T12:03:17.867Z (2 months ago)
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Rankings:
    • Dependent repos count: 0.0%
    • Dependent packages count: 0.0%
    • Average: 100%

Dependencies

.github/actions/sync-nightlies/action.yml actions
.github/workflows/archery.yml actions
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
.github/workflows/comment_bot.yml actions
  • actions/checkout v4 composite
  • actions/github-script v6 composite
  • actions/setup-python v4 composite
  • r-lib/actions/pr-fetch v2 composite
  • r-lib/actions/pr-push v2 composite
  • r-lib/actions/setup-r v2 composite
.github/workflows/cpp.yml actions
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • msys2/setup-msys2 v2 composite
.github/workflows/csharp.yml actions
  • actions/checkout v4 composite
  • actions/setup-dotnet v3 composite
.github/workflows/dev.yml actions
  • actions/checkout v4 composite
  • actions/setup-dotnet v3 composite
  • actions/setup-python v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/dev_pr/labeler.yml actions
.github/workflows/dev_pr.yml actions
  • actions/checkout v4 composite
  • actions/github-script v6 composite
  • actions/labeler v4 composite
.github/workflows/docs.yml actions
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
.github/workflows/docs_light.yml actions
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
.github/workflows/go.yml actions
  • actions/checkout v4 composite
  • actions/setup-go v4 composite
  • actions/setup-python v4 composite
  • msys2/setup-msys2 v2 composite
.github/workflows/integration.yml actions
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
.github/workflows/issue_bot.yml actions
  • actions/github-script v6 composite
.github/workflows/java.yml actions
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • actions/setup-java v3 composite
  • actions/setup-python v4 composite
.github/workflows/java_jni.yml actions
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
.github/workflows/java_nightly.yml actions
  • ./arrow/.github/actions/sync-nightlies * composite
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
.github/workflows/js.yml actions
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • actions/setup-node v3 composite
  • actions/setup-python v4 composite
.github/workflows/matlab.yml actions
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • matlab-actions/run-tests v1 composite
  • matlab-actions/setup-matlab v1 composite
.github/workflows/pr_bot.yml actions
  • actions/checkout v4 composite
  • actions/github-script v6 composite
  • actions/setup-python v4 composite
.github/workflows/pr_review_trigger.yml actions
  • actions/upload-artifact v3 composite
.github/workflows/python.yml actions
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
.github/workflows/r.yml actions
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • actions/download-artifact v3 composite
  • actions/setup-python v4 composite
  • actions/upload-artifact v3 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/r_nightly.yml actions
  • ./arrow/.github/actions/sync-nightlies * composite
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
.github/workflows/ruby.yml actions
  • actions/cache v3 composite
  • actions/checkout v4 composite
  • actions/setup-python v4 composite
  • ruby/setup-ruby v1 composite
.github/workflows/swift.yml actions
  • actions/checkout v4 composite
r/DESCRIPTION cran
  • R >= 3.4 depends
  • R6 * imports
  • assertthat * imports
  • bit64 >= 0.9 imports
  • glue * imports
  • methods * imports
  • purrr * imports
  • rlang >= 1.0.0 imports
  • stats * imports
  • tidyselect >= 1.0.0 imports
  • utils * imports
  • vctrs * imports
  • DBI * suggests
  • blob * suggests
  • cli * suggests
  • dbplyr * suggests
  • decor * suggests
  • distro * suggests
  • dplyr * suggests
  • duckdb >= 0.2.8 suggests
  • hms * suggests
  • jsonlite * suggests
  • knitr * suggests
  • lubridate * suggests
  • pillar * suggests
  • pkgload * suggests
  • reticulate * suggests
  • rmarkdown * suggests
  • stringi * suggests
  • stringr * suggests
  • sys * suggests
  • testthat >= 3.1.0 suggests
  • tibble * suggests
  • tzdb * suggests
  • withr * suggests
cpp/examples/minimal_build/docker-compose.yml docker
cpp/examples/tutorial_examples/docker-compose.yml docker
dev/release/binary/Dockerfile docker
  • debian bullseye build
dev/tasks/linux-packages/apache-arrow/apt/debian-bookworm/Dockerfile docker
  • ${FROM} latest build
dev/tasks/linux-packages/apache-arrow/apt/debian-bullseye/Dockerfile docker
  • ${FROM} latest build
dev/tasks/linux-packages/apache-arrow/apt/debian-trixie/Dockerfile docker
  • ${FROM} latest build
dev/tasks/linux-packages/apache-arrow/apt/ubuntu-focal/Dockerfile docker
  • ${FROM} latest build
dev/tasks/linux-packages/apache-arrow/apt/ubuntu-jammy/Dockerfile docker
  • ${FROM} latest build
dev/tasks/linux-packages/apache-arrow/apt/ubuntu-lunar/Dockerfile docker
  • ${FROM} latest build
dev/tasks/linux-packages/apache-arrow/yum/almalinux-8/Dockerfile docker
  • ${FROM} latest build
dev/tasks/linux-packages/apache-arrow/yum/almalinux-9/Dockerfile docker
  • ${FROM} latest build
dev/tasks/linux-packages/apache-arrow/yum/amazon-linux-2023/Dockerfile docker
  • ${FROM} latest build
dev/tasks/linux-packages/apache-arrow/yum/centos-7/Dockerfile docker
  • ${FROM} latest build
dev/tasks/linux-packages/apache-arrow/yum/centos-8-stream/Dockerfile docker
  • ${FROM} latest build
dev/tasks/linux-packages/apache-arrow/yum/centos-9-stream/Dockerfile docker
  • ${FROM} latest build
dev/tasks/linux-packages/apache-arrow-apt-source/apt/debian-bookworm/Dockerfile docker
  • debian bookworm build
dev/tasks/linux-packages/apache-arrow-apt-source/apt/debian-bullseye/Dockerfile docker
  • debian bullseye build
dev/tasks/linux-packages/apache-arrow-apt-source/apt/debian-trixie/Dockerfile docker
  • debian trixie build
dev/tasks/linux-packages/apache-arrow-apt-source/apt/ubuntu-focal/Dockerfile docker
  • ubuntu focal build
docs/requirements.txt pypi
  • breathe *
  • ipython *
  • numpydoc *
  • pandas *
  • pydata-sphinx-theme ==0.8
  • sphinx ==6.2
  • sphinx-autobuild *
  • sphinx-copybutton *
  • sphinx-design *
  • sphinxcontrib-jquery *
python/pyproject.toml pypi
dev/tasks/linux-packages/apache-arrow-apt-source/apt/ubuntu-jammy/Dockerfile docker
  • ubuntu jammy build
dev/tasks/linux-packages/apache-arrow-apt-source/apt/ubuntu-lunar/Dockerfile docker
  • ubuntu lunar build
dev/tasks/linux-packages/apache-arrow-release/yum/almalinux-8/Dockerfile docker
  • almalinux 8 build
dev/tasks/linux-packages/apache-arrow-release/yum/almalinux-9/Dockerfile docker
  • almalinux 9 build
dev/tasks/linux-packages/apache-arrow-release/yum/amazon-linux-2023/Dockerfile docker
  • amazonlinux 2023 build
dev/tasks/linux-packages/apache-arrow-release/yum/centos-7/Dockerfile docker
  • centos 7 build
dev/tasks/linux-packages/apache-arrow-release/yum/centos-8-stream/Dockerfile docker
  • quay.io/centos/centos stream8 build
dev/tasks/linux-packages/apache-arrow-release/yum/centos-9-stream/Dockerfile docker
  • quay.io/centos/centos stream9 build
docker-compose.yml docker
python/examples/minimal_build/docker-compose.yml docker
go/arrow/Gopkg.lock go
  • github.com/davecgh/go-spew 346938d642f2ec3594ed81d874461961cd0faa76
  • github.com/pkg/errors ba968bfe8b2f7e042a574c888954fccecfa385b4
  • github.com/pmezard/go-difflib 792786c7400a136282c1664665ae0a8db921c6c2
  • github.com/stretchr/testify b91bfb9ebec76498946beb6af7c0230c7cc7ba6c
go/arrow/Gopkg.toml go
  • github.com/pkg/errors 0.8.1
  • github.com/stretchr/testify 1.2.0
go/go.mod go
  • github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c
  • github.com/alecthomas/participle/v2 v2.1.0
  • github.com/andybalholm/brotli v1.0.5
  • github.com/apache/thrift v0.17.0
  • github.com/davecgh/go-spew v1.1.1
  • github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
  • github.com/dustin/go-humanize v1.0.1
  • github.com/fatih/color v1.15.0
  • github.com/goccy/go-json v0.10.2
  • github.com/goccy/go-yaml v1.11.0
  • github.com/golang/protobuf v1.5.3
  • github.com/golang/snappy v0.0.4
  • github.com/google/flatbuffers v23.5.26+incompatible
  • github.com/google/uuid v1.3.0
  • github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
  • github.com/klauspost/asmfmt v1.3.2
  • github.com/klauspost/compress v1.16.7
  • github.com/klauspost/cpuid/v2 v2.2.5
  • github.com/kr/text v0.2.0
  • github.com/mattn/go-colorable v0.1.13
  • github.com/mattn/go-isatty v0.0.19
  • github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8
  • github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3
  • github.com/pierrec/lz4/v4 v4.1.18
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec
  • github.com/rogpeppe/go-internal v1.9.0
  • github.com/stretchr/objx v0.5.0
  • github.com/stretchr/testify v1.8.4
  • github.com/substrait-io/substrait-go v0.4.2
  • github.com/zeebo/xxh3 v1.0.2
  • golang.org/x/exp v0.0.0-20230905200255-921286631fa9
  • golang.org/x/mod v0.12.0
  • golang.org/x/net v0.15.0
  • golang.org/x/sync v0.3.0
  • golang.org/x/sys v0.12.0
  • golang.org/x/text v0.13.0
  • golang.org/x/tools v0.13.0
  • golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
  • gonum.org/v1/gonum v0.12.0
  • google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1
  • google.golang.org/grpc v1.54.0
  • google.golang.org/protobuf v1.31.0
  • gopkg.in/yaml.v3 v3.0.1
  • lukechampine.com/uint128 v1.3.0
  • modernc.org/cc/v3 v3.40.0
  • modernc.org/ccgo/v3 v3.16.13
  • modernc.org/libc v1.22.4
  • modernc.org/mathutil v1.5.0
  • modernc.org/memory v1.5.0
  • modernc.org/opt v0.1.3
  • modernc.org/sqlite v1.21.2
  • modernc.org/strutil v1.1.3
  • modernc.org/token v1.1.0
go/go.sum go
  • github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c
  • github.com/alecthomas/assert/v2 v2.3.0
  • github.com/alecthomas/participle/v2 v2.1.0
  • github.com/alecthomas/repr v0.2.0
  • github.com/andybalholm/brotli v1.0.5
  • github.com/apache/thrift v0.17.0
  • github.com/creack/pty v1.1.9
  • github.com/davecgh/go-spew v1.1.0
  • github.com/davecgh/go-spew v1.1.1
  • github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815
  • github.com/dustin/go-humanize v1.0.1
  • github.com/fatih/color v1.15.0
  • github.com/go-playground/locales v0.13.0
  • github.com/go-playground/universal-translator v0.17.0
  • github.com/go-playground/validator/v10 v10.4.1
  • github.com/goccy/go-json v0.10.2
  • github.com/goccy/go-yaml v1.11.0
  • github.com/golang/protobuf v1.5.0
  • github.com/golang/protobuf v1.5.3
  • github.com/golang/snappy v0.0.4
  • github.com/google/flatbuffers v23.5.26+incompatible
  • github.com/google/go-cmp v0.5.5
  • github.com/google/go-cmp v0.5.9
  • github.com/google/pprof v0.0.0-20221118152302-e6195bd50e26
  • github.com/google/uuid v1.3.0
  • github.com/hexops/gotextdiff v1.0.3
  • github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
  • github.com/klauspost/asmfmt v1.3.2
  • github.com/klauspost/compress v1.16.7
  • github.com/klauspost/cpuid/v2 v2.2.5
  • github.com/kr/pretty v0.3.1
  • github.com/kr/text v0.2.0
  • github.com/leodido/go-urn v1.2.0
  • github.com/mattn/go-colorable v0.1.13
  • github.com/mattn/go-isatty v0.0.16
  • github.com/mattn/go-isatty v0.0.19
  • github.com/mattn/go-sqlite3 v1.14.16
  • github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8
  • github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3
  • github.com/pierrec/lz4/v4 v4.1.18
  • github.com/pmezard/go-difflib v1.0.0
  • github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0
  • github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec
  • github.com/rogpeppe/go-internal v1.9.0
  • github.com/stretchr/objx v0.1.0
  • github.com/stretchr/objx v0.4.0
  • github.com/stretchr/objx v0.5.0
  • github.com/stretchr/testify v1.7.1
  • github.com/stretchr/testify v1.8.0
  • github.com/stretchr/testify v1.8.4
  • github.com/substrait-io/substrait-go v0.4.2
  • github.com/zeebo/assert v1.3.0
  • github.com/zeebo/xxh3 v1.0.2
  • golang.org/x/crypto v0.13.0
  • golang.org/x/exp v0.0.0-20230905200255-921286631fa9
  • golang.org/x/mod v0.12.0
  • golang.org/x/net v0.15.0
  • golang.org/x/sync v0.3.0
  • golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab
  • golang.org/x/sys v0.5.0
  • golang.org/x/sys v0.6.0
  • golang.org/x/sys v0.12.0
  • golang.org/x/text v0.13.0
  • golang.org/x/tools v0.13.0
  • golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543
  • golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
  • gonum.org/v1/gonum v0.12.0
  • google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1
  • google.golang.org/grpc v1.54.0
  • google.golang.org/protobuf v1.26.0-rc.1
  • google.golang.org/protobuf v1.26.0
  • google.golang.org/protobuf v1.31.0
  • gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405
  • gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c
  • gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
  • gopkg.in/yaml.v3 v3.0.1
  • lukechampine.com/uint128 v1.3.0
  • modernc.org/cc/v3 v3.40.0
  • modernc.org/ccgo/v3 v3.16.13
  • modernc.org/ccorpus v1.11.6
  • modernc.org/httpfs v1.0.6
  • modernc.org/libc v1.22.4
  • modernc.org/mathutil v1.5.0
  • modernc.org/memory v1.5.0
  • modernc.org/opt v0.1.3
  • modernc.org/sqlite v1.21.2
  • modernc.org/strutil v1.1.3
  • modernc.org/tcl v1.15.1
  • modernc.org/token v1.1.0
  • modernc.org/z v1.7.0
swift/data-generator/swift-datagen/go.mod go
  • github.com/andybalholm/brotli v1.0.4
  • github.com/apache/arrow/go/v12 v12.0.0-20230424155504-5de56928e0fe
  • github.com/apache/thrift v0.16.0
  • github.com/goccy/go-json v0.9.11
  • github.com/golang/snappy v0.0.4
  • github.com/google/flatbuffers v2.0.8+incompatible
  • github.com/klauspost/asmfmt v1.3.2
  • github.com/klauspost/compress v1.15.9
  • github.com/klauspost/cpuid/v2 v2.0.9
  • github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8
  • github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3
  • github.com/pierrec/lz4/v4 v4.1.15
  • github.com/zeebo/xxh3 v1.0.2
  • golang.org/x/mod v0.8.0
  • golang.org/x/sys v0.5.0
  • golang.org/x/tools v0.6.0
  • golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f
swift/data-generator/swift-datagen/go.sum go
  • github.com/andybalholm/brotli v1.0.4
  • github.com/apache/arrow/go/v12 v12.0.0-20230424155504-5de56928e0fe
  • github.com/apache/thrift v0.16.0
  • github.com/goccy/go-json v0.9.11
  • github.com/golang/mock v1.5.0
  • github.com/golang/snappy v0.0.4
  • github.com/google/flatbuffers v2.0.8+incompatible
  • github.com/klauspost/asmfmt v1.3.2
  • github.com/klauspost/compress v1.15.9
  • github.com/klauspost/cpuid/v2 v2.0.9
  • github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8
  • github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3
  • github.com/pierrec/lz4/v4 v4.1.15
  • github.com/zeebo/xxh3 v1.0.2
  • golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2
  • golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
  • golang.org/x/mod v0.3.0
  • golang.org/x/mod v0.8.0
  • golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3
  • golang.org/x/net v0.0.0-20190620200207-3b0461eec859
  • golang.org/x/sync v0.0.0-20190423024810-112230192c58
  • golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a
  • golang.org/x/sys v0.0.0-20190412213103-97732733099d
  • golang.org/x/sys v0.5.0
  • golang.org/x/text v0.3.0
  • golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e
  • golang.org/x/tools v0.6.0
  • golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7
  • golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898
  • golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f
c_glib/Brewfile homebrew
  • gobject-introspection *
  • gtk-doc *
  • libtool *
  • meson *
  • vala *
cpp/Brewfile homebrew
  • aws-sdk-cpp *
  • bash *
  • boost *
  • brotli *
  • c-ares *
  • ccache *
  • cmake *
  • flatbuffers *
  • git *
  • glog *
  • googletest *
  • grpc *
  • llvm@14 *
  • lz4 *
  • ninja *
  • node *
  • openssl@3 *
  • protobuf *
  • python *
  • rapidjson *
  • snappy *
  • thrift *
  • wget *
  • xsimd *
  • zstd *
java/Brewfile homebrew
  • openjdk@11 *
  • sccache *
java/adapter/avro/pom.xml maven
  • org.apache.arrow:arrow-memory-core ${project.version}
  • org.apache.arrow:arrow-memory-netty ${project.version}
  • org.apache.arrow:arrow-vector ${project.version}
  • org.apache.avro:avro ${dep.avro.version}
java/adapter/jdbc/pom.xml maven
  • com.fasterxml.jackson.core:jackson-core
  • com.fasterxml.jackson.core:jackson-databind
  • org.apache.arrow:arrow-memory-core ${project.version}
  • org.apache.arrow:arrow-memory-netty ${project.version}
  • org.apache.arrow:arrow-vector ${project.version}
  • com.fasterxml.jackson.core:jackson-annotations test
  • com.fasterxml.jackson.dataformat:jackson-dataformat-yaml test
  • com.h2database:h2 1.4.196 test
  • org.assertj:assertj-core test
java/adapter/orc/pom.xml maven
  • org.apache.arrow:arrow-memory-core 14.0.0-SNAPSHOT compile
  • org.apache.arrow:arrow-vector 14.0.0-SNAPSHOT compile
  • org.apache.arrow:arrow-memory-netty 14.0.0-SNAPSHOT
  • org.apache.hadoop:hadoop-client-api 3.3.2
  • org.apache.hadoop:hadoop-client-runtime 3.3.2 test
  • org.apache.hadoop:hadoop-common 3.3.3 test
  • org.apache.hive:hive-storage-api 2.8.1 test
  • org.apache.orc:orc-core 1.9.0 test
java/algorithm/pom.xml maven
  • org.apache.arrow:arrow-memory-core ${project.version}
  • org.apache.arrow:arrow-vector ${project.version}
  • org.apache.arrow:arrow-memory-netty ${project.version} test
java/c/pom.xml maven
  • org.apache.arrow:arrow-memory-core 14.0.0-SNAPSHOT compile
  • org.apache.arrow:arrow-vector 14.0.0-SNAPSHOT compile
  • org.slf4j:slf4j-api
  • com.google.guava:guava test
  • org.apache.arrow:arrow-memory-unsafe 14.0.0-SNAPSHOT test
  • org.apache.arrow:arrow-vector 14.0.0-SNAPSHOT test
  • org.assertj:assertj-core test
java/compression/pom.xml maven
  • com.github.luben:zstd-jni 1.4.9-1
  • org.apache.arrow:arrow-memory-core ${project.version}
  • org.apache.arrow:arrow-vector ${project.version}
  • org.apache.commons:commons-compress 1.21
  • org.apache.arrow:arrow-memory-unsafe ${project.version} test
java/dataset/pom.xml maven
  • org.apache.arrow:arrow-c-data 14.0.0-SNAPSHOT compile
  • org.apache.arrow:arrow-memory-core 14.0.0-SNAPSHOT compile
  • org.apache.arrow:arrow-vector 14.0.0-SNAPSHOT compile
  • com.fasterxml.jackson.core:jackson-databind test
  • com.google.guava:guava test
  • commons-io:commons-io 2.7 test
  • org.apache.arrow.orc:arrow-orc 14.0.0-SNAPSHOT test
  • org.apache.arrow:arrow-memory-netty 14.0.0-SNAPSHOT test
  • org.apache.avro:avro 1.8.2 test
  • org.apache.hadoop:hadoop-common ${dep.hadoop.version} test
  • org.apache.hive:hive-storage-api 2.8.1 test
  • org.apache.orc:orc-core 1.7.6 test
  • org.apache.parquet:parquet-avro 1.11.0 test
  • org.apache.parquet:parquet-hadoop 1.11.0 test
java/flight/flight-core/pom.xml maven
  • com.fasterxml.jackson.core:jackson-databind
  • com.google.guava:guava
  • com.google.protobuf:protobuf-java
  • io.grpc:grpc-api
  • io.grpc:grpc-context
  • io.grpc:grpc-core
  • io.grpc:grpc-netty
  • io.grpc:grpc-protobuf
  • io.grpc:grpc-stub
  • io.netty:netty-buffer
  • io.netty:netty-handler
  • io.netty:netty-tcnative-boringssl-static
  • io.netty:netty-transport
  • javax.annotation:javax.annotation-api
  • org.apache.arrow:arrow-format 14.0.0-SNAPSHOT
  • org.apache.arrow:arrow-memory-core 14.0.0-SNAPSHOT
  • org.apache.arrow:arrow-memory-netty 14.0.0-SNAPSHOT
  • org.apache.arrow:arrow-vector 14.0.0-SNAPSHOT
  • org.slf4j:slf4j-api
  • com.google.api.grpc:proto-google-common-protos 1.12.0 test
  • io.grpc:grpc-services test
  • org.apache.arrow:arrow-vector 14.0.0-SNAPSHOT test
java/flight/flight-grpc/pom.xml maven
  • org.apache.arrow:arrow-memory-core 14.0.0-SNAPSHOT compile
  • com.google.guava:guava
  • com.google.protobuf:protobuf-java
  • io.grpc:grpc-api
  • io.grpc:grpc-core
  • io.grpc:grpc-protobuf
  • io.grpc:grpc-stub
  • org.apache.arrow:arrow-memory-netty 14.0.0-SNAPSHOT
  • org.apache.arrow:flight-core 14.0.0-SNAPSHOT
java/flight/flight-integration-tests/pom.xml maven
  • com.google.protobuf:protobuf-java
  • commons-cli:commons-cli 1.4
  • org.apache.arrow:arrow-memory-core ${project.version}
  • org.apache.arrow:arrow-vector ${project.version}
  • org.apache.arrow:flight-core ${project.version}
  • org.apache.arrow:flight-sql ${project.version}
  • org.slf4j:slf4j-api
java/flight/flight-sql/pom.xml maven
  • com.google.guava:guava
  • com.google.protobuf:protobuf-java
  • commons-cli:commons-cli 1.4
  • org.apache.arrow:arrow-jdbc 14.0.0-SNAPSHOT
  • org.apache.arrow:arrow-memory-core 14.0.0-SNAPSHOT
  • org.apache.arrow:arrow-vector 14.0.0-SNAPSHOT
  • org.apache.arrow:flight-core 14.0.0-SNAPSHOT
  • org.slf4j:slf4j-api
  • org.apache.commons:commons-dbcp2 2.9.0 test
  • org.apache.commons:commons-pool2 2.11.1 test
  • org.apache.derby:derby 10.14.2.0 test
  • org.hamcrest:hamcrest test
java/flight/flight-sql-jdbc-core/pom.xml maven
  • com.google.guava:guava
  • com.google.protobuf:protobuf-java
  • io.netty:netty-common
  • joda-time:joda-time 2.10.14
  • org.apache.arrow:arrow-memory-core 14.0.0-SNAPSHOT
  • org.apache.arrow:arrow-memory-netty 14.0.0-SNAPSHOT
  • org.apache.arrow:arrow-vector 14.0.0-SNAPSHOT
  • org.apache.arrow:flight-core 14.0.0-SNAPSHOT
  • org.apache.arrow:flight-sql 14.0.0-SNAPSHOT
  • org.apache.calcite.avatica:avatica 1.18.0
  • org.bouncycastle:bcpkix-jdk15on 1.61
  • org.slf4j:slf4j-api
  • commons-io:commons-io 2.7 test
  • org.hamcrest:hamcrest-core 1.3 test
  • org.mockito:mockito-core 4.11.0 test
  • org.mockito:mockito-inline 4.11.0 test
java/flight/flight-sql-jdbc-driver/pom.xml maven
  • com.google.guava:guava
  • com.google.protobuf:protobuf-java
  • io.netty:netty-common
  • joda-time:joda-time 2.10.14
  • org.apache.arrow:arrow-memory-core ${project.version}
  • org.apache.arrow:arrow-vector ${project.version}
  • org.apache.arrow:flight-core ${project.version}
  • org.apache.arrow:flight-sql ${project.version}
  • org.apache.arrow:flight-sql-jdbc-core ${project.version}
  • org.apache.calcite.avatica:avatica 1.18.0
  • org.bouncycastle:bcpkix-jdk15on 1.61
  • org.slf4j:slf4j-api
  • commons-io:commons-io 2.7 test
  • org.hamcrest:hamcrest-core 1.3 test
  • org.mockito:mockito-core 4.11.0 test
  • org.mockito:mockito-inline 4.11.0 test
java/flight/pom.xml maven
java/format/pom.xml maven
  • com.google.flatbuffers:flatbuffers-java
java/gandiva/pom.xml maven
  • com.google.guava:guava
  • com.google.protobuf:protobuf-java 3.20.3
  • org.apache.arrow:arrow-memory-core 14.0.0-SNAPSHOT
  • org.apache.arrow:arrow-vector 14.0.0-SNAPSHOT
  • org.slf4j:slf4j-api
  • org.apache.arrow:arrow-memory-netty 14.0.0-SNAPSHOT test
java/memory/memory-core/pom.xml maven
  • com.google.code.findbugs:jsr305
  • org.immutables:value
  • org.slf4j:slf4j-api
java/memory/memory-netty/pom.xml maven
  • io.netty:netty-buffer
  • io.netty:netty-common
  • org.apache.arrow:arrow-memory-core ${project.version}
  • org.immutables:value
  • org.slf4j:slf4j-api
  • ch.qos.logback:logback-core 1.2.12 test
java/memory/memory-unsafe/pom.xml maven
  • org.apache.arrow:arrow-memory-core ${project.version}
java/memory/pom.xml maven
java/performance/pom.xml maven
  • org.openjdk.jmh:jmh-generator-annprocess 1.21 provided
  • org.apache.arrow:arrow-avro 14.0.0-SNAPSHOT
  • org.apache.arrow:arrow-jdbc 14.0.0-SNAPSHOT
  • org.apache.arrow:arrow-memory-core 14.0.0-SNAPSHOT
  • org.apache.arrow:arrow-vector 14.0.0-SNAPSHOT
  • org.apache.avro:avro ${dep.avro.version}
  • org.openjdk.jmh:jmh-core 1.21
  • com.h2database:h2 1.4.196 test
  • org.apache.arrow:arrow-algorithm 14.0.0-SNAPSHOT test
  • org.apache.arrow:arrow-memory-netty 14.0.0-SNAPSHOT test
java/pom.xml maven
  • com.fasterxml.jackson:jackson-bom 2.15.1 import
  • com.google.guava:guava-bom 31.1-jre import
  • com.google.protobuf:protobuf-bom 3.23.1 import
  • io.grpc:grpc-bom 1.56.0 import
  • io.netty:netty-bom 4.1.96.Final import
  • org.immutables:value 2.8.2 provided
  • com.google.code.findbugs:jsr305 3.0.2
  • com.google.flatbuffers:flatbuffers-java 1.12.0
  • javax.annotation:javax.annotation-api 1.3.2
  • org.hamcrest:hamcrest 2.2
  • org.slf4j:slf4j-api 1.7.25
  • ch.qos.logback:logback-classic 1.2.3 test
  • de.huxhorn.lilith:de.huxhorn.lilith.logback.appender.multiplex-classic 0.9.44 test
  • junit:junit 4.13.1 test
  • org.assertj:assertj-core 3.23.1 test
  • org.junit.jupiter:junit-jupiter-api 5.9.0 test
  • org.junit.jupiter:junit-jupiter-engine 5.9.0 test
  • org.junit.jupiter:junit-jupiter-params 5.9.0 test
  • org.junit.vintage:junit-vintage-engine 5.9.0 test
  • org.mockito:mockito-junit-jupiter 2.25.1 test
  • org.slf4j:jcl-over-slf4j 1.7.25 test
  • org.slf4j:jul-to-slf4j 1.7.25 test
  • org.slf4j:log4j-over-slf4j 1.7.25 test
java/tools/pom.xml maven
  • ch.qos.logback:logback-classic 1.2.3
  • com.fasterxml.jackson.core:jackson-core
  • com.fasterxml.jackson.core:jackson-databind
  • com.google.guava:guava
  • commons-cli:commons-cli 1.4
  • org.apache.arrow:arrow-compression ${project.version}
  • org.apache.arrow:arrow-memory-core ${project.version}
  • org.apache.arrow:arrow-memory-netty ${project.version}
  • org.apache.arrow:arrow-vector ${project.version}
  • org.slf4j:slf4j-api
  • org.apache.arrow:arrow-vector ${project.version} test
java/vector/pom.xml maven
  • com.fasterxml.jackson.core:jackson-annotations
  • com.fasterxml.jackson.core:jackson-core
  • com.fasterxml.jackson.core:jackson-databind
  • com.fasterxml.jackson.datatype:jackson-datatype-jsr310
  • com.google.flatbuffers:flatbuffers-java ${dep.fbs.version}
  • commons-codec:commons-codec 1.15
  • io.netty:netty-common
  • org.apache.arrow:arrow-format ${project.version}
  • org.apache.arrow:arrow-memory-core ${project.version}
  • org.slf4j:slf4j-api
  • org.apache.arrow:arrow-memory-netty ${project.version} test
  • org.apache.arrow:arrow-memory-unsafe ${project.version} test
docs/source/_static/versions.json meteor
r/pkgdown/assets/versions.json meteor
js/bin/package.json npm
js/package.json npm
  • @openpgp/web-stream-tools 0.0.13 development
  • @rollup/plugin-alias 5.0.0 development
  • @rollup/plugin-node-resolve 15.1.0 development
  • @rollup/stream 3.0.0 development
  • @types/benchmark 2.1.2 development
  • @types/glob 8.1.0 development
  • @types/jest 29.5.3 development
  • @types/randomatic 3.1.3 development
  • @typescript-eslint/eslint-plugin 5.59.9 development
  • @typescript-eslint/parser 5.59.9 development
  • async-done 2.0.0 development
  • benny 3.7.1 development
  • cross-env 7.0.3 development
  • del 7.0.0 development
  • del-cli 5.1.0 development
  • esbuild 0.19.2 development
  • esbuild-plugin-alias 0.2.1 development
  • eslint 8.42.0 development
  • eslint-plugin-jest 27.2.3 development
  • eslint-plugin-unicorn 47.0.0 development
  • esm https://github.com/jsg2021/esm/releases/download/v3.x.x-pr883/esm-3.x.x-pr883.tgz development
  • glob 10.2.7 development
  • google-closure-compiler 20230502.0.0 development
  • gulp 4.0.2 development
  • gulp-esbuild 0.11.1 development
  • gulp-json-transform 0.4.8 development
  • gulp-rename 2.0.0 development
  • gulp-replace 1.1.4 development
  • gulp-sourcemaps 3.0.0 development
  • gulp-terser 2.1.0 development
  • gulp-typescript 5.0.1 development
  • gulp-vinyl-size 1.1.4 development
  • ix 5.0.0 development
  • jest 29.6.2 development
  • jest-silent-reporter 0.5.0 development
  • memfs 4.2.1 development
  • mkdirp 3.0.1 development
  • multistream 4.1.0 development
  • randomatic 3.1.1 development
  • rollup 3.25.0 development
  • rxjs 7.8.1 development
  • ts-jest 29.1.1 development
  • ts-node 10.9.1 development
  • typedoc 0.24.8 development
  • typescript 5.1.3 development
  • vinyl-buffer 1.0.1 development
  • vinyl-named 1.1.0 development
  • vinyl-source-stream 2.0.0 development
  • web-streams-polyfill 3.2.1 development
  • webpack 5.86.0 development
  • webpack-bundle-analyzer 4.9.1 development
  • webpack-stream 7.0.0 development
  • xml2js 0.6.2 development
  • @types/command-line-args 5.2.0
  • @types/command-line-usage 5.0.2
  • @types/node 20.3.0
  • @types/pad-left 2.1.1
  • command-line-args 5.2.1
  • command-line-usage 7.0.1
  • flatbuffers 23.5.26
  • json-bignum ^0.0.3
  • pad-left ^2.1.0
  • tslib ^2.5.3
js/yarn.lock npm
  • 994 dependencies
csharp/examples/FlightAspServerExample/FlightAspServerExample.csproj nuget
csharp/examples/FlightClientExample/FlightClientExample.csproj nuget
csharp/examples/FluentBuilderExample/FluentBuilderExample.csproj nuget
csharp/src/Apache.Arrow/Apache.Arrow.csproj nuget
  • Microsoft.SourceLink.GitHub 1.1.1 development
  • System.Buffers 4.5.1
  • System.Memory 4.5.5
  • System.Runtime.CompilerServices.Unsafe 4.7.1
  • System.Threading.Tasks.Extensions 4.5.4
csharp/src/Apache.Arrow.Compression/Apache.Arrow.Compression.csproj nuget
  • K4os.Compression.LZ4.Streams 1.3.6
  • ZstdSharp.Port 0.7.2