1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
|
.. Licensed to the Apache Software Foundation (ASF) under one
.. or more contributor license agreements. See the NOTICE file
.. distributed with this work for additional information
.. regarding copyright ownership. The ASF licenses this file
.. to you under the Apache License, Version 2.0 (the
.. "License"); you may not use this file except in compliance
.. with the License. You may obtain a copy of the License at
.. http://www.apache.org/licenses/LICENSE-2.0
.. Unless required by applicable law or agreed to in writing,
.. software distributed under the License is distributed on an
.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
.. KIND, either express or implied. See the License for the
.. specific language governing permissions and limitations
.. under the License.
.. _status:
=====================
Implementation Status
=====================
The following tables summarize the features available in the various official
Arrow libraries. All libraries currently follow version 1.0.0 of the Arrow
format, or later minor versions that are compatible with version 1.0.0. See
:doc:`./format/Versioning` for details about versioning. Unless otherwise
stated, the Python, R, Ruby and C/GLib libraries follow the C++ Arrow library.
Data Types
==========
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Data type | C++ | Java | Go | JS | C# | Rust | Julia | Swift | nanoarrow |
| (primitive) | | | | | | | | | |
+===================+=======+=======+=======+====+=======+=======+=======+=======+===========+
| Null | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Boolean | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Int8/16/32/64 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| UInt8/16/32/64 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Float16 | ✓ | ✓ (1) | ✓ | ✓ | ✓ (2)| ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Float32/64 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Decimal32 | ✓ | | ✓ | | ✓ | ✓ | | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Decimal64 | ✓ | | ✓ | | ✓ | ✓ | | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Decimal128 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Decimal256 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Date32/64 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Time32/64 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Timestamp | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Duration | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Interval | ✓ | ✓ | ✓ | | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Fixed Size Binary | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Binary | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Large Binary | ✓ | ✓ | ✓ | ✓ | \(4) | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Utf8 | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Large Utf8 | ✓ | ✓ | ✓ | ✓ | \(4) | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Binary View | ✓ | | ✓ | | ✓ | ✓ | | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Utf8 View | ✓ | | ✓ | | ✓ | ✓ | | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Data type | C++ | Java | Go | JS | C# | Rust | Julia | Swift | nanoarrow |
| (nested) | | | | | | | | | |
+===================+=======+=======+=======+====+=======+=======+=======+=======+===========+
| Fixed Size List | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| List | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Large List | ✓ | ✓ | ✓ | | \(4) | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| List View | ✓ | | ✓ | | ✓ | ✓ | | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Large List View | ✓ | | ✓ | | | ✓ | | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Struct | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Map | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Dense Union | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Sparse Union | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Data type | C++ | Java | Go | JS | C# | Rust | Julia | Swift | nanoarrow |
| (special) | | | | | | | | | |
+===================+=======+=======+=======+====+=======+=======+=======+=======+===========+
| Dictionary | ✓ | ✓ (3) | ✓ | ✓ | ✓ | ✓ (3) | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Extension | ✓ | ✓ | ✓ | | | ✓ | ✓ | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Run-End Encoded | ✓ | | ✓ | | | ✓ | | | ✓ |
+-------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
+-----------------------+-------+-------+-------+------------+-------+-------+-------+-------+
| Canonical | C++ | Java | Go | JavaScript | C# | Rust | Julia | Swift |
| Extension types | | | | | | | | |
+=======================+=======+=======+=======+============+=======+=======+=======+=======+
| Fixed shape tensor | ✓ | | | | | ✓ | | |
+-----------------------+-------+-------+-------+------------+-------+-------+-------+-------+
| Variable shape tensor | | | | | | ✓ | | |
+-----------------------+-------+-------+-------+------------+-------+-------+-------+-------+
| JSON | ✓ | | ✓ | | | ✓ | | |
+-----------------------+-------+-------+-------+------------+-------+-------+-------+-------+
| Opaque | ✓ | ✓ | ✓ | | | ✓ | | |
+-----------------------+-------+-------+-------+------------+-------+-------+-------+-------+
| UUID | ✓ | | ✓ | | | ✓ | | |
+-----------------------+-------+-------+-------+------------+-------+-------+-------+-------+
| 8-bit Boolean | ✓ | | ✓ | | | ✓ | | |
+-----------------------+-------+-------+-------+------------+-------+-------+-------+-------+
| Parquet Variant | | | ✓ | | | | | |
+-----------------------+-------+-------+-------+------------+-------+-------+-------+-------+
Notes:
* \(1) Casting to/from Float16 in Java is not supported.
* \(2) Float16 support in C# is only available when targeting .NET 6+.
* \(3) Nested dictionaries not supported
* \(4) C# large array types are provided to help with interoperability with other libraries,
but these do not support buffers larger than 2 GiB and an exception will be raised if trying to import an array that is too large.
.. seealso::
The :ref:`format_columnar` and the
:ref:`format_canonical_extensions` specification.
IPC Format
==========
+-----------------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| IPC Feature | C++ | Java | Go | JS | C# | Rust | Julia | Swift | nanoarrow |
| | | | | | | | | | |
+=============================+=======+=======+=======+====+=======+=======+=======+=======+===========+
| Arrow stream format | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ (4) |
+-----------------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Arrow file format | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | |
+-----------------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Record batches | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ |
+-----------------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Dictionaries | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | |
+-----------------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Replacement dictionaries | ✓ | ✓ | ✓ | | | ✓ | ✓ | | |
+-----------------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Delta dictionaries | ✓ (1) | | ✓ (1) | ✓ | ✓ | ✓ | ✓ | | |
+-----------------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Tensors | ✓ | | | | | | | | |
+-----------------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Sparse tensors | ✓ | | | | | | | | |
+-----------------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Buffer compression | ✓ | ✓ (3) | ✓ | | ✓ | ✓ | ✓ | | |
+-----------------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Endianness conversion | ✓ (2) | | ✓ (2) | | | | | | ✓ (2) |
+-----------------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
| Custom schema metadata | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ |
+-----------------------------+-------+-------+-------+----+-------+-------+-------+-------+-----------+
Notes:
* \(1) Delta dictionaries not supported on nested dictionaries
* \(2) Data with non-native endianness can be byte-swapped automatically when reading.
* \(3) LZ4 Codec currently is quite inefficient. ARROW-11901 tracks improving performance.
* \(4) The nanoarrow IPC implementation is only implemented for reading IPC streams.
.. seealso::
The :ref:`format-ipc` specification.
.. _status-flight-rpc:
Flight RPC
==========
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| Flight RPC Transport | C++ | Java | Go | JS | C# | Rust | Julia | Swift |
+============================================+=======+=======+=======+====+=======+=======+=======+=======+
| gRPC_ transport (grpc:, grpc+tcp:) | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| gRPC domain socket transport (grpc+unix:) | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| gRPC + TLS transport (grpc+tls:) | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
Supported features in the gRPC transport:
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| Flight RPC Feature | C++ | Java | Go | JS | C# | Rust | Julia | Swift |
+============================================+=======+=======+=======+====+=======+=======+=======+=======+
| All RPC methods | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| Authentication handlers | ✓ | ✓ | ✓ | | ✓ (1) | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| Call timeouts | ✓ | ✓ | ✓ | | | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| Call cancellation | ✓ | ✓ | ✓ | | | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| Concurrent client calls (2) | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| Custom middleware | ✓ | ✓ | ✓ | | | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| RPC error codes | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
Notes:
* \(1) Support using AspNetCore authentication handlers.
* \(2) Whether a single client can support multiple concurrent calls.
.. seealso::
The :ref:`flight-rpc` specification.
.. _gRPC: https://grpc.io/
Flight SQL
==========
.. note:: Flight SQL is still experimental.
The feature support refers to the client/server libraries only;
databases which implement the Flight SQL protocol in turn will
support/not support individual features.
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| Feature | C++ | Java | Go | JS | C# | Rust | Julia | Swift |
+============================================+=======+=======+=======+====+=======+=======+=======+=======+
| BeginSavepoint | ✓ | ✓ | | | | | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| BeginTransaction | ✓ | ✓ | | | | | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| CancelQuery | ✓ | ✓ | | | | | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| ClosePreparedStatement | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| CreatePreparedStatement | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| CreatePreparedSubstraitPlan | ✓ | ✓ | | | | | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| EndSavepoint | ✓ | ✓ | | | | | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| EndTransaction | ✓ | ✓ | | | | | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| GetCatalogs | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| GetCrossReference | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| GetDbSchemas | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| GetExportedKeys | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| GetImportedKeys | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| GetPrimaryKeys | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| GetSqlInfo | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| GetTables | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| GetTableTypes | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| GetXdbcTypeInfo | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| PreparedStatementQuery | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| PreparedStatementUpdate | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| StatementSubstraitPlan | ✓ | ✓ | | | | | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| StatementQuery | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
| StatementUpdate | ✓ | ✓ | ✓ | | ✓ | ✓ | | |
+--------------------------------------------+-------+-------+-------+----+-------+-------+-------+-------+
.. seealso::
The :doc:`./format/FlightSql` specification.
C Data Interface
================
+-----------------------------+-----+--------+---+------+----+------+--------+------+-------+-----+-------+-----------+
| Feature | C++ | Python | R | Rust | Go | Java | C/GLib | Ruby | Julia | C# | Swift | nanoarrow |
| | | | | | | | | | | | | |
+=============================+=====+========+===+======+====+======+========+======+=======+=====+=======+===========+
| Schema export | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | | ✓ |
+-----------------------------+-----+--------+---+------+----+------+--------+------+-------+-----+-------+-----------+
| Array export | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | | ✓ |
+-----------------------------+-----+--------+---+------+----+------+--------+------+-------+-----+-------+-----------+
| Schema import | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | | ✓ |
+-----------------------------+-----+--------+---+------+----+------+--------+------+-------+-----+-------+-----------+
| Array import | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | | ✓ |
+-----------------------------+-----+--------+---+------+----+------+--------+------+-------+-----+-------+-----------+
.. seealso::
The :ref:`C Data Interface <c-data-interface>` specification.
C Stream Interface
==================
+-----------------------------+-----+--------+---+------+----+------+--------+------+-------+-----+-------+-----------+
| Feature | C++ | Python | R | Rust | Go | Java | C/GLib | Ruby | Julia | C# | Swift | nanoarrow |
| | | | | | | | | | | | | |
+=============================+=====+========+===+======+====+======+========+======+=======+=====+=======+===========+
| Stream export | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | ✓ | | ✓ | | ✓ |
+-----------------------------+-----+--------+---+------+----+------+--------+------+-------+-----+-------+-----------+
| Stream import | ✓ | ✓ | ✓ | ✓ | ✓ | | ✓ | ✓ | | ✓ | | ✓ |
+-----------------------------+-----+--------+---+------+----+------+--------+------+-------+-----+-------+-----------+
.. seealso::
The :ref:`C Stream Interface <c-stream-interface>` specification.
Third-Party Data Formats
========================
+-----------------------------+---------+---------+-------+----+-------+-------+-------+-------+
| Format | C++ | Java | Go | JS | C# | Rust | Julia | Swift |
| | | | | | | | | |
+=============================+=========+=========+=======+====+=======+=======+=======+=======+
| Avro | | R | R | | | R/W | | |
+-----------------------------+---------+---------+-------+----+-------+-------+-------+-------+
| CSV | R/W | R (2) | R/W | | | R/W | R/W | |
+-----------------------------+---------+---------+-------+----+-------+-------+-------+-------+
| ORC | R/W | R (1) | | | | | | |
+-----------------------------+---------+---------+-------+----+-------+-------+-------+-------+
| Parquet | R/W | R (2) | R/W | | | R/W | | |
+-----------------------------+---------+---------+-------+----+-------+-------+-------+-------+
Notes:
* *R* = Read supported
* *W* = Write supported
* \(1) Through JNI bindings. (Provided by ``org.apache.arrow.orc:arrow-orc``)
* \(2) Through JNI bindings to Arrow C++ Datasets. (Provided by ``org.apache.arrow:arrow-dataset``)
|