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

..03-May-2022-

ArrowDatasetConfig.cmake.inH A D01-Jun-20201.5 KiB3834

README.mdH A D01-Jun-20201.3 KiB3310

api.hH A D01-Jun-20201.1 KiB309

arrow-dataset.pc.inH A D01-Jun-20201.1 KiB2623

dataset.ccH A D01-Jun-20206.7 KiB180124

dataset.hH A D01-Jun-20208.1 KiB21699

dataset_internal.hH A D01-Jun-20202.4 KiB7338

dataset_test.ccH A D01-Jun-202030.5 KiB797506

discovery.ccH A D01-Jun-20208.8 KiB260185

discovery.hH A D01-Jun-20209.4 KiB24390

discovery_test.ccH A D01-Jun-202013.8 KiB415300

file_base.ccH A D01-Jun-20206.8 KiB199143

file_base.hH A D01-Jun-202010.7 KiB295157

file_csv.ccH A D01-Jun-20205.1 KiB13793

file_csv.hH A D01-Jun-20201.9 KiB5524

file_csv_test.ccH A D01-Jun-20204.9 KiB153104

file_ipc.ccH A D01-Jun-20207 KiB213154

file_ipc.hH A D01-Jun-20202 KiB5825

file_ipc_test.ccH A D01-Jun-202010.9 KiB310218

file_parquet.ccH A D01-Jun-202025 KiB636482

file_parquet.hH A D01-Jun-202011.1 KiB280124

file_parquet_test.ccH A D01-Jun-202019.1 KiB518360

file_test.ccH A D01-Jun-20207.8 KiB216142

filter.ccH A D01-Jun-202049 KiB1,4761,160

filter.hH A D01-Jun-202024.1 KiB646342

filter_test.ccH A D01-Jun-202020.6 KiB571436

partition.ccH A D01-Jun-202021.2 KiB603421

partition.hH A D01-Jun-202011 KiB299156

partition_test.ccH A D01-Jun-202017.9 KiB484356

pch.hH A D01-Jun-20201.2 KiB283

projector.ccH A D01-Jun-20205.5 KiB162114

projector.hH A D01-Jun-20202.8 KiB7629

scanner.ccH A D01-Jun-20207.4 KiB225157

scanner.hH A D01-Jun-20209.4 KiB255109

scanner_internal.hH A D01-Jun-20204.4 KiB11773

scanner_test.ccH A D01-Jun-20208 KiB224152

test_util.hH A D01-Jun-202016.1 KiB485342

type_fwd.hH A D01-Jun-20202.2 KiB9647

visibility.hH A D01-Jun-20201.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++ Datasets
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