You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Collectively, these crates support a vast array of functionality for analytic computations in Rust.
91
+
Collectively, these crates support a wider array of functionality for analytic computations in Rust.
82
92
83
-
For example, you can write an SQL query or a `DataFrame` (using the `datafusion` crate), run it against a parquet file (using the `parquet` crate), evaluate it in-memory using Arrow's columnar format (using the `arrow` crate), and send to another process (using the `arrow-flight` crate).
93
+
For example, you can write SQL queries or a `DataFrame` (using the
94
+
[`datafusion`] crate) to read a parquet file (using the [`parquet`] crate),
95
+
evaluate it in-memory using Arrow's columnar format (using the [`arrow`] crate),
96
+
and send to another process (using the [`arrow-flight`] crate).
84
97
85
-
Generally speaking, the `arrow` crate offers functionality for using Arrow arrays, and `datafusion` offers most operations typically found in SQL, including `join`s and window functions.
98
+
Generally speaking, the [`arrow`] crate offers functionality for using Arrow
99
+
arrays, and [`datafusion`] offers most operations typically found in SQL,
100
+
including `join`s and window functions.
86
101
87
102
You can find more details about each crate in their respective READMEs.
88
103
89
104
## Arrow Rust Community
90
105
91
-
The `[email protected]` mailing list serves as the core communication channel for the Arrow community. Instructions for signing up and links to the archives can be found at the [Arrow Community](https://arrow.apache.org/community/) page. All major announcements and communications happen there.
106
+
The `[email protected]` mailing list serves as the core communication channel for the Arrow community. Instructions for signing up and links to the archives can be found on the [Arrow Community](https://arrow.apache.org/community/) page. All major announcements and communications happen there.
92
107
93
108
The Rust Arrow community also uses the official [ASF Slack](https://s.apache.org/slack-invite) for informal discussions and coordination. This is
94
109
a great place to meet other contributors and get guidance on where to contribute. Join us in the `#arrow-rust` channel and feel free to ask for an invite via:
@@ -109,8 +124,8 @@ There is more information in the [contributing] guide.
0 commit comments