.. 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. ===================== Implementation Status ===================== The following tables summarize the features available in the various official Arrow libraries. Unless otherwise stated, the Python, R, Ruby and C/GLib libraries follow the C++ Arrow library. Data Types ========== +-------------------+-------+-------+-------+------------+-------+-------+ | Data type | C++ | Java | Go | JavaScript | C# | Rust | | (primitive) | | | | | | | +===================+=======+=======+=======+============+=======+=======+ | Null | ✓ | ✓ | | | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Boolean | ✓ | ✓ | ✓ | ✓ | ✓ | | +-------------------+-------+-------+-------+------------+-------+-------+ | Int8/16/32/64 | ✓ | ✓ | ✓ | ✓ | ✓ | | +-------------------+-------+-------+-------+------------+-------+-------+ | UInt8/16/32/64 | ✓ | ✓ | ✓ | ✓ | ✓ | | +-------------------+-------+-------+-------+------------+-------+-------+ | Float16 | | | ✓ | | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Float32/64 | ✓ | ✓ | ✓ | ✓ | ✓ | | +-------------------+-------+-------+-------+------------+-------+-------+ | Decimal128 | ✓ | ✓ | | | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Date32/64 | ✓ | ✓ | ✓ | ✓ | ✓ | | +-------------------+-------+-------+-------+------------+-------+-------+ | Time32/64 | ✓ | ✓ | ✓ | ✓ | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Timestamp | ✓ | ✓ | ✓ | ✓ | ✓ | | +-------------------+-------+-------+-------+------------+-------+-------+ | Duration | ✓ | ✓ | ✓ | | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Interval | ✓ | ✓ | ✓ | | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Fixed Size Binary | ✓ | ✓ | ✓ | ✓ | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Binary | ✓ | ✓ | ✓ | ✓ | ✓ | | +-------------------+-------+-------+-------+------------+-------+-------+ | Large Binary | ✓ | ✓ | ✓ | ✓ | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Utf8 | ✓ | ✓ | ✓ | ✓ | ✓ | | +-------------------+-------+-------+-------+------------+-------+-------+ | Large Utf8 | ✓ | ✓ | ✓ | ✓ | | | +-------------------+-------+-------+-------+------------+-------+-------+ +-------------------+-------+-------+-------+------------+-------+-------+ | Data type | C++ | Java | Go | JavaScript | C# | Rust | | (nested) | | | | | | | +===================+=======+=======+=======+============+=======+=======+ | Fixed Size List | ✓ | ✓ | ✓ | ✓ | | | +-------------------+-------+-------+-------+------------+-------+-------+ | List | ✓ | ✓ | ✓ | ✓ | ✓ | | +-------------------+-------+-------+-------+------------+-------+-------+ | Large List | ✓ | ✓ | | | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Struct | ✓ | ✓ | ✓ | ✓ | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Map | ✓ | ✓ | | ✓ | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Dense Union | ✓ | ✓ | | | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Sparse Union | ✓ | ✓ | | | | | +-------------------+-------+-------+-------+------------+-------+-------+ +-------------------+-------+-------+-------+------------+-------+-------+ | Data type | C++ | Java | Go | JavaScript | C# | Rust | | (special) | | | | | | | +===================+=======+=======+=======+============+=======+=======+ | Dictionary | ✓ | ✓ (1) | | ✓ (1) | | | +-------------------+-------+-------+-------+------------+-------+-------+ | Extension | ✓ | ✓ | | | | | +-------------------+-------+-------+-------+------------+-------+-------+ Notes: * \(1) Nested dictionaries not supported .. seealso:: The :ref:`format_columnar` specification. IPC Format ========== +-----------------------------+-------+-------+-------+------------+-------+-------+ | IPC Feature | C++ | Java | Go | JavaScript | C# | Rust | | | | | | | | | +=============================+=======+=======+=======+============+=======+=======+ | Arrow stream format | ✓ | ✓ | ✓ | ✓ | ✓ | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | Arrow file format | ✓ | ✓ | ✓ | ✓ | ✓ | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | Record batches | ✓ | ✓ | ✓ | ✓ | ✓ | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | Dictionaries | ✓ | ✓ | ✓ | ✓ | | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | Replacement dictionaries | ✓ | ✓ | | | | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | Delta dictionaries | | | | | | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | Tensors | ✓ | | | | | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | Sparse tensors | ✓ | | | | | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | Custom schema metadata | ✓ | ✓ | | | | | +-----------------------------+-------+-------+-------+------------+-------+-------+ Flight RPC ========== +-----------------------------+-------+-------+-------+------------+-------+-------+ | Flight RPC Feature | C++ | Java | Go | JavaScript | C# | Rust | | | | | | | | | +=============================+=======+=======+=======+============+=======+=======+ | gRPC transport | ✓ | ✓ | | | | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | gRPC + TLS transport | ✓ | ✓ | | | | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | RPC error codes | ✓ | ✓ | | | | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | Authentication handlers | ✓ | ✓ | | | | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | Custom client middleware | ✓ | ✓ | | | | | +-----------------------------+-------+-------+-------+------------+-------+-------+ | Custom server middleware | ✓ | ✓ | | | | | +-----------------------------+-------+-------+-------+------------+-------+-------+ .. seealso:: The :ref:`flight-rpc` specification. C Data Interface ================ +-----------------------------+-------+--------+-------+ | Feature | C++ | Python | R | | | | | | +=============================+=======+========+=======+ | Schema export | ✓ | ✓ | ✓ | +-----------------------------+-------+--------+-------+ | Array export | ✓ | ✓ | ✓ | +-----------------------------+-------+--------+-------+ | Schema import | ✓ | ✓ | ✓ | +-----------------------------+-------+--------+-------+ | Array import | ✓ | ✓ | ✓ | +-----------------------------+-------+--------+-------+ .. seealso:: The :ref:`C Data Interface ` specification. Third-Party Data Formats ======================== +-----------------------------+---------+---------+-------+------------+-------+-------+ | Format | C++ | Java | Go | JavaScript | C# | Rust | | | | | | | | | +=============================+=========+=========+=======+============+=======+=======+ | Avro | | R | | | | | +-----------------------------+---------+---------+-------+------------+-------+-------+ | CSV | R | | R/W | | | R/W | +-----------------------------+---------+---------+-------+------------+-------+-------+ | ORC | R | | | | | | +-----------------------------+---------+---------+-------+------------+-------+-------+ | Parquet | R/W | | | | | | +-----------------------------+---------+---------+-------+------------+-------+-------+ Notes: * *R* = Read supported * *W* = Write supported