• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

ArrowDatasetConfig.cmake.inH A D10-Nov-20211.5 KiB3834

README.mdH A D10-Nov-20211.3 KiB3310

api.hH A D10-Nov-20211.2 KiB3110

arrow-dataset.pc.inH A D10-Nov-20211.1 KiB2623

dataset.ccH A D10-Nov-20219.6 KiB270198

dataset.hH A D10-Nov-20219.9 KiB265117

dataset_internal.hH A D10-Nov-20216.1 KiB161105

dataset_test.ccH A D10-Nov-202128.3 KiB735462

dataset_writer.ccH A D10-Nov-202118 KiB530452

dataset_writer.hH A D10-Nov-20214.1 KiB9829

dataset_writer_test.ccH A D10-Nov-202114.8 KiB350293

discovery.ccH A D10-Nov-202110.4 KiB283210

discovery.hH A D10-Nov-202110.8 KiB27293

discovery_test.ccH A D10-Nov-202116.4 KiB480345

file_base.ccH A D10-Nov-202117.2 KiB467372

file_base.hH A D10-Nov-202116.2 KiB422231

file_benchmark.ccH A D10-Nov-20213.5 KiB9160

file_csv.ccH A D10-Nov-202114 KiB336260

file_csv.hH A D10-Nov-20214 KiB12464

file_csv_test.ccH A D10-Nov-202113.8 KiB405315

file_ipc.ccH A D10-Nov-202111.8 KiB311242

file_ipc.hH A D10-Nov-20214.1 KiB12665

file_ipc_test.ccH A D10-Nov-20216.5 KiB174127

file_orc.ccH A D10-Nov-20216.4 KiB194134

file_orc.hH A D10-Nov-20212.7 KiB8033

file_orc_test.ccH A D10-Nov-20213.1 KiB8654

file_parquet.ccH A D10-Nov-202139.3 KiB975739

file_parquet.hH A D10-Nov-202115.4 KiB386186

file_parquet_test.ccH A D10-Nov-202123.5 KiB613453

file_test.ccH A D10-Nov-202113.4 KiB347251

partition.ccH A D10-Nov-202125.1 KiB733569

partition.hH A D10-Nov-202114.2 KiB373190

partition_test.ccH A D10-Nov-202136 KiB837622

pch.hH A D10-Nov-20211.2 KiB283

plan.ccH A D10-Nov-20211.3 KiB4018

plan.hH A D10-Nov-20211.2 KiB348

projector.ccH A D10-Nov-20212.3 KiB6434

projector.hH A D10-Nov-20211.1 KiB338

scanner.ccH A D10-Nov-202150.5 KiB1,3481,071

scanner.hH A D10-Nov-202118.2 KiB459173

scanner_benchmark.ccH A D10-Nov-20217.7 KiB211133

scanner_internal.hH A D10-Nov-202110 KiB265188

scanner_test.ccH A D10-Nov-202171.8 KiB1,8151,370

test_util.hH A D10-Nov-202149.5 KiB1,3011,044

type_fwd.hH A D10-Nov-20212.9 KiB10560

visibility.hH A D10-Nov-20211.5 KiB5127

README.md

1<!---
2  Licensed to the Apache Software Foundation (ASF) under one
3  or more contributor license agreements.  See the NOTICE file
4  distributed with this work for additional information
5  regarding copyright ownership.  The ASF licenses this file
6  to you under the Apache License, Version 2.0 (the
7  "License"); you may not use this file except in compliance
8  with the License.  You may obtain a copy of the License at
9
10    http://www.apache.org/licenses/LICENSE-2.0
11
12  Unless required by applicable law or agreed to in writing,
13  software distributed under the License is distributed on an
14  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15  KIND, either express or implied.  See the License for the
16  specific language governing permissions and limitations
17  under the License.
18-->
19
20# Arrow C++ Dataset
21
22The `arrow::dataset` subcomponent provides an API to read and write
23semantic datasets stored in different locations and formats. It
24facilitates parallel processing of datasets spread across different
25physical files and serialization formats. Other concerns such as
26partitioning, filtering (partition- and column-level), and schema
27normalization are also addressed.
28
29## Development Status
30
31Alpha/beta stage as of April 2020. API subject to change, possibly
32without deprecation notices.
33