File: datasets_tutorial.rst

package info (click to toggle)
apache-arrow 23.0.1-1
  • links: PTS
  • area: main
  • in suites: sid
  • size: 76,220 kB
  • sloc: cpp: 654,608; python: 70,522; ruby: 45,964; ansic: 18,742; sh: 7,365; makefile: 669; javascript: 125; xml: 41
file content (453 lines) | stat: -rw-r--r-- 18,865 bytes parent folder | download | duplicates (6)
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
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
.. 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.

.. default-domain:: cpp
.. highlight:: cpp

.. cpp:namespace:: arrow

==============
Arrow Datasets
==============

Arrow C++ provides the concept and implementation of :class:`Datasets <dataset::Dataset>` to work
with fragmented data, which can be larger-than-memory, be that due to
generating large amounts, reading in from a stream, or having a large
file on disk. In this article, you will:

1. read a multi-file partitioned dataset and put it into a Table,

2. write out a partitioned dataset from a Table.

Pre-requisites
---------------

Before continuing, make sure you have:

1. An Arrow installation, which you can set up here: :doc:`/cpp/build_system`

2. An understanding of basic Arrow data structures from :doc:`/cpp/tutorials/basic_arrow`

To witness the differences, it may be useful to have also read the :doc:`/cpp/tutorials/io_tutorial`. However, it is not required.

Setup
-----

Before running some computations, we need to fill in a couple gaps:

1. We need to include necessary headers.

2. A ``main()`` is needed to glue things together.

3. We need data on disk to play with.

Includes
^^^^^^^^

Before writing C++ code, we need some includes. We'll get ``iostream`` for output, then import Arrow's
compute functionality for each file type we'll work with in this article:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Includes)
  :end-before: (Doc section: Includes)

Main()
^^^^^^

For our glue, we’ll use the ``main()`` pattern from the previous tutorial on
data structures:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Main)
  :end-before: (Doc section: Main)

Which, like when we used it before, is paired with a ``RunMain()``:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: RunMain)
  :end-before: (Doc section: RunMain)

Generating Files for Reading
^^^^^^^^^^^^^^^^^^^^^^^^^^^^

We need some files to actually play with. In practice, you’ll likely
have some input for your own application. Here, however, we want to
explore without the overhead of supplying or finding a dataset, so let’s
generate some to make this easy to follow. Feel free to read through
this, but the concepts will be visited properly in this article – just
copy it in, for now, and realize it ends with a partitioned dataset on
disk:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Helper Functions)
  :end-before: (Doc section: Helper Functions)

In order to actually have these files, make sure the first thing called
in ``RunMain()`` is our helper function ``PrepareEnv()``, which will get a
dataset on disk for us to play with:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: PrepareEnv)
  :end-before: (Doc section: PrepareEnv)

Reading a Partitioned Dataset
-----------------------------

Reading a Dataset is a distinct task from reading a single file. The
task takes more work than reading a single file, due to needing to be
able to parse multiple files and/or folders. This process can be broken
up into the following steps:

1. Getting a :class:`fs::FileSystem` object for the local FS

2. Create a :class:`fs::FileSelector` and use it to prepare a :class:`dataset::FileSystemDatasetFactory`

3. Build a :class:`dataset::Dataset` using the :class:`dataset::FileSystemDatasetFactory`

4. Use a :class:`dataset::Scanner` to read into a :class:`Table`

Preparing a FileSystem Object
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

In order to begin, we’ll need to be able to interact with the local
filesystem. In order to do that, we’ll need an :class:`fs::FileSystem` object.
A :class:`fs::FileSystem` is an abstraction that lets us use the same interface
regardless of using Amazon S3, Google Cloud Storage, or local disk – and
we’ll be using local disk. So, let’s declare it:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: FileSystem Declare)
  :end-before: (Doc section: FileSystem Declare)

For this example, we’ll have our :class:`FileSystem’s <fs::FileSystem>` base path exist in the
same directory as the executable. :func:`fs::FileSystemFromUriOrPath` lets us get
a :class:`fs::FileSystem` object for any of the types of supported filesystems.
Here, though, we’ll just pass our path:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: FileSystem Init)
  :end-before: (Doc section: FileSystem Init)

.. seealso:: :class:`fs::FileSystem` for the other supported filesystems.

Creating a FileSystemDatasetFactory
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

A :class:`fs::FileSystem` stores a lot of metadata, but we need to be able to
traverse it and parse that metadata. In Arrow, we use a :class:`FileSelector` to
do so:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: FileSelector Declare)
  :end-before: (Doc section: FileSelector Declare)

This :class:`fs::FileSelector` isn’t able to do anything yet. In order to use it, we
need to configure it – we’ll have it start any selection in
“parquet_dataset,” which is where the environment preparation process
has left us a dataset, and set recursive to true, which allows for
traversal of folders.

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: FileSelector Config)
  :end-before: (Doc section: FileSelector Config)

To get a :class:`dataset::Dataset` from a :class:`fs::FileSystem`, we need to prepare a
:class:`dataset::FileSystemDatasetFactory`. This is a long but descriptive name – it’ll
make us a factory to get data from our :class:`fs::FileSystem`. First, we configure
it by filling a :class:`dataset::FileSystemFactoryOptions` struct:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: FileSystemFactoryOptions)
  :end-before: (Doc section: FileSystemFactoryOptions)

There are many file formats, and we have to pick one that will be
expected when actually reading. Parquet is what we have on disk, so of
course we’ll ask for that when reading:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: File Format Setup)
  :end-before: (Doc section: File Format Setup)

After setting up the :class:`fs::FileSystem`, :class:`fs::FileSelector`, options, and file format,
we can make that :class:`dataset::FileSystemDatasetFactory`. This simply requires passing
in everything we’ve prepared and assigning that to a variable:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: FileSystemDatasetFactory Make)
  :end-before: (Doc section: FileSystemDatasetFactory Make)

Build Dataset using Factory
^^^^^^^^^^^^^^^^^^^^^^^^^^^

With a :class:`dataset::FileSystemDatasetFactory` set up, we can actually build our
:class:`dataset::Dataset` with :func:`dataset::FileSystemDatasetFactory::Finish`, just
like with an :class:`ArrayBuilder` back in the basic tutorial:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: FileSystemDatasetFactory Finish)
  :end-before: (Doc section: FileSystemDatasetFactory Finish)

Now, we have a :class:`dataset::Dataset` object in memory. This does not mean that the
entire dataset is manifested in memory, but that we now have access to
tools that allow us to explore and use the dataset that is on disk. For
example, we can grab the fragments (files) that make up our whole
dataset, and print those out, along with some small info:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Dataset Fragments)
  :end-before: (Doc section: Dataset Fragments)

Move Dataset into Table
^^^^^^^^^^^^^^^^^^^^^^^

One way we can do something with :class:`Datasets <dataset::Dataset>` is getting
them into a :class:`Table`, where we can do anything we’ve learned we can do to
:class:`Tables <Table>` to that :class:`Table`.

.. seealso:: :doc:`/cpp/acero` for execution that avoids manifesting the entire dataset in memory.

In order to move a :class:`Dataset’s <dataset::Dataset>` contents into a :class:`Table`,
we need a :class:`dataset::Scanner`, which scans the data and outputs it to the :class:`Table`.
First, we get a :class:`dataset::ScannerBuilder` from the :class:`dataset::Dataset`:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Read Scan Builder)
  :end-before: (Doc section: Read Scan Builder)

Of course, a Builder’s only use is to get us our :class:`dataset::Scanner`, so let’s use
:func:`dataset::ScannerBuilder::Finish`:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Read Scanner)
  :end-before: (Doc section: Read Scanner)

Now that we have a tool to move through our :class:`dataset::Dataset`, let’s use it to get
our :class:`Table`. :func:`dataset::Scanner::ToTable` offers exactly what we’re looking for,
and we can print the results:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: To Table)
  :end-before: (Doc section: To Table)

This leaves us with a normal :class:`Table`. Again, to do things with :class:`Datasets <dataset::Dataset>`
without moving to a :class:`Table`, consider using Acero.

Writing a Dataset to Disk from Table
------------------------------------

Writing a :class:`dataset::Dataset` is a distinct task from writing a single file. The
task takes more work than writing a single file, due to needing to be
able to parse handle a partitioning scheme across multiple files and
folders. This process can be broken up into the following steps:

1. Prepare a :class:`TableBatchReader`

2. Create a :class:`dataset::Scanner` to pull data from :class:`TableBatchReader`

3. Prepare schema, partitioning, and file format options

4. Set up :class:`dataset::FileSystemDatasetWriteOptions` – a struct that configures our writing functions

5. Write dataset to disk

Prepare Data from Table for Writing
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

We have a :class:`Table`, and we want to get a :class:`dataset::Dataset` on disk. In fact, for the
sake of exploration, we’ll use a different partitioning scheme for the
dataset – instead of just breaking into halves like the original
fragments, we’ll partition based on each row’s value in the “a” column.

To get started on that, let’s get a :class:`TableBatchReader`! This makes it very
easy to write to a :class:`Dataset`, and can be used elsewhere whenever a :class:`Table`
needs to be broken into a stream of :class:`RecordBatches <RecordBatch>`. Here, we can just use
the :class:`TableBatchReader’s <TableBatchReader>` constructor, with our table:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: TableBatchReader)
  :end-before: (Doc section: TableBatchReader)

Create Scanner for Moving Table Data
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

The process for writing a :class:`dataset::Dataset`, once a source of data is available,
is similar to the reverse of reading it. Before, we used a :class:`dataset::Scanner` in
order to scan into a :class:`Table` – now, we need one to read out of our
:class:`TableBatchReader`. To get that :class:`dataset::Scanner`, we’ll make a :class:`dataset::ScannerBuilder`
based on our :class:`TableBatchReader`, then use that Builder to build a :class:`dataset::Scanner`:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: WriteScanner)
  :end-before: (Doc section: WriteScanner)

Prepare Schema, Partitioning, and File Format Variables
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

Since we want to partition based on the “a” column, we need to declare
that. When defining our partitioning :class:`Schema`, we’ll just have a single
:class:`Field` that contains “a”:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Partition Schema)
  :end-before: (Doc section: Partition Schema)

This :class:`Schema` determines what the key is for partitioning, but we need to
choose the algorithm that’ll do something with this key. We will use
Hive-style again, this time with our schema passed to it as
configuration:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Partition Create)
  :end-before: (Doc section: Partition Create)

Several file formats are available, but Parquet is commonly used with
Arrow, so we’ll write back out to that:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Write Format)
  :end-before: (Doc section: Write Format)

Configure FileSystemDatasetWriteOptions
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

In order to write to disk, we need some configuration. We’ll do so via
setting values in a :class:`dataset::FileSystemDatasetWriteOptions` struct. We’ll
initialize it with defaults where possible:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Write Options)
  :end-before: (Doc section: Write Options)

One important step in writing to file is having a :class:`fs::FileSystem` to target.
Luckily, we have one from when we set it up for reading. This is a
simple variable assignment:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Options FS)
  :end-before: (Doc section: Options FS)

Arrow can make the directory, but it does need a name for said
directory, so let’s give it one, call it “write_dataset”:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Options Target)
  :end-before: (Doc section: Options Target)

We made a partitioning method previously, declaring that we’d use
Hive-style – this is where we actually pass that to our writing
function:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Options Partitioning)
  :end-before: (Doc section: Options Partitioning)

Part of what’ll happen is Arrow will break up files, thus preventing
them from being too large to handle. This is what makes a dataset
fragmented in the first place. In order to set this up, we need a base
name for each fragment in a directory – in this case, we’ll have
“part{i}.parquet”, which means the third file (within the same
directory) will be called “part3.parquet”, for example:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Options Name Template)
  :end-before: (Doc section: Options Name Template)

Sometimes, data will be written to the same location more than once, and
overwriting will be accepted. Since we may want to run this application
more than once, we will set Arrow to overwrite existing data – if we
didn’t, Arrow would abort due to seeing existing data after the first
run of this application:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Options File Behavior)
  :end-before: (Doc section: Options File Behavior)

Write Dataset to Disk
^^^^^^^^^^^^^^^^^^^^^

Once the :class:`dataset::FileSystemDatasetWriteOptions` has been configured, and a
:class:`dataset::Scanner` is prepared to parse the data, we can pass the Options and
:class:`dataset::Scanner` to the :func:`dataset::FileSystemDataset::Write` to write out to
disk:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Write Dataset)
  :end-before: (Doc section: Write Dataset)

You can review your disk to see that you’ve written a folder containing
subfolders for every value of “a”, which each have Parquet files!

Ending Program
--------------

At the end, we just return :func:`Status::OK`, so the ``main()`` knows that
we’re done, and that everything’s okay, just like the preceding
tutorials.

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Ret)
  :end-before: (Doc section: Ret)

With that, you’ve read and written partitioned datasets! This method,
with some configuration, will work for any supported dataset format. For
an example of such a dataset, the NYC Taxi dataset is a well-known
one, which you can find `here <https://www1.nyc.gov/site/tlc/about/tlc-trip-record-data.page>`_.
Now you can get larger-than-memory data mapped for use!

Which means that now we have to be able to process this data without
pulling it all into memory at once. For this, try Acero.

.. seealso:: :doc:`/cpp/acero` for more information on Acero.

Refer to the below for a copy of the complete code:

.. literalinclude:: ../../../../cpp/examples/tutorial_examples/dataset_example.cc
  :language: cpp
  :start-after: (Doc section: Dataset Example)
  :end-before: (Doc section: Dataset Example)
  :linenos:
  :lineno-match: