Skip to content

GH-44801: [Docs] Help visitors find other apache/arrow-___ repos #46535

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,13 @@ enable data systems to efficiently store, process, and move data.

Major components of the project include:

- [The Arrow Columnar In-Memory Format](https://arrow.apache.org/docs/dev/format/Columnar.html):
- [The Arrow Columnar Format](https://arrow.apache.org/docs/dev/format/Columnar.html):
a standard and efficient in-memory representation of various datatypes, plain or nested
- [The Arrow IPC Format](https://arrow.apache.org/docs/dev/format/Columnar.html#serialization-and-interprocess-communication-ipc):
an efficient serialization of the Arrow format and associated metadata,
for communication between processes and heterogeneous environments
- [ADBC (Arrow Database Connectivity)](https://github.com/apache/arrow-adbc/) ``: Arrow-powered API,
drivers, and libraries for access to databases and query engines
- [The Arrow Flight RPC protocol](https://github.com/apache/arrow/tree/main/format/Flight.proto):
based on the Arrow IPC format, a building block for remote services exchanging
Arrow data with application-defined semantics (for example a storage server or a database)
Expand All @@ -44,13 +46,17 @@ Major components of the project include:
- [C# .NET libraries](https://github.com/apache/arrow/tree/main/csharp)
- [Gandiva](https://github.com/apache/arrow/tree/main/cpp/src/gandiva):
an [LLVM](https://llvm.org)-based Arrow expression compiler, part of the C++ codebase
- [Go libraries](https://github.com/apache/arrow-go)
- [Java libraries](https://github.com/apache/arrow-java)
- [JavaScript libraries](https://github.com/apache/arrow/tree/main/js)
- [Go libraries](https://github.com/apache/arrow-go) ``
- [Java libraries](https://github.com/apache/arrow-java) ``
- [JavaScript libraries](https://github.com/apache/arrow-js) ``
- [Julia implementation](https://github.com/apache/arrow-julia) ``
- [Python libraries](https://github.com/apache/arrow/tree/main/python)
- [R libraries](https://github.com/apache/arrow/tree/main/r)
- [Ruby libraries](https://github.com/apache/arrow/tree/main/ruby)
- [Rust libraries](https://github.com/apache/arrow-rs)
- [Rust libraries](https://github.com/apache/arrow-rs) ``

The `` icon denotes that this component of the project is maintained in a separate
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Love this addition!

repository.

Arrow is an [Apache Software Foundation](https://www.apache.org) project. Learn more at
[arrow.apache.org](https://arrow.apache.org).
Expand Down
6 changes: 4 additions & 2 deletions docs/source/developers/guide/step_by_step/arrow_codebase.rst
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,16 @@ The `Apache Arrow repository <https://github.com/apache/arrow>`_ includes
implementations for most of the libraries for which Arrow is available.

Languages like GLib (``c_glib/``), C++ (``cpp/``), C# (``csharp/``),
JavaScript (``js/``), MATLAB (``matlab/``), Python (``python/``), R (``r/``)
and Ruby (``ruby/``) have their own subdirectories in the main folder as written here.
MATLAB (``matlab/``), Python (``python/``), R (``r/``) and Ruby (``ruby/``)
have their own subdirectories in the main folder as written here.

The following language implementations have their own repositories:

- `Rust <https://github.com/apache/arrow-rs>`_
- `Go <https://github.com/apache/arrow-go>`_
- `Java <https://github.com/apache/arrow-java>`_
- `JavaScript <https://github.com/apache/arrow-js>`_
- `Julia <https://github.com/apache/arrow-julia>`_

In the **language-specific subdirectories** you can find the code
connected to that language. For example:
Expand Down
Loading