Skip to content

Commit 538514e

Browse files
author
Yin Ye
committed
implementation of parquet operator
1 parent 7b28ee2 commit 538514e

File tree

4 files changed

+455
-222
lines changed

4 files changed

+455
-222
lines changed

WORKSPACE

-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ http_archive(
5454
sha256 = "14bf9bf97431b890e0ae5dca8f8904841d4883b8596a7108a42f5700ae58d711",
5555
strip_prefix = "google-cloud-cpp-1.21.0",
5656
urls = [
57-
"https://storage.googleapis.com/mirror.tensorflow.org/github.com/googleapis/google-cloud-cpp/archive/v1.21.0.tar.gz",
5857
"https://github.com/googleapis/google-cloud-cpp/archive/v1.21.0.tar.gz",
5958
],
6059
)

tensorflow_io/arrow.py

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
@@ArrowDataset
1818
@@ArrowFeatherDataset
1919
@@ArrowStreamDataset
20+
@@ArrowParquetDataset
2021
@@list_feather_columns
2122
"""
2223

@@ -26,13 +27,15 @@
2627
from tensorflow_io.python.ops.arrow_dataset_ops import ArrowDataset
2728
from tensorflow_io.python.ops.arrow_dataset_ops import ArrowFeatherDataset
2829
from tensorflow_io.python.ops.arrow_dataset_ops import ArrowStreamDataset
30+
from tensorflow_io.python.ops.arrow_dataset_ops import ArrowParquetDataset
2931
from tensorflow_io.python.ops.arrow_dataset_ops import list_feather_columns
3032

3133

3234
_allowed_symbols = [
3335
"ArrowDataset",
3436
"ArrowFeatherDataset",
3537
"ArrowStreamDataset",
38+
"ArrowParquetDataset",
3639
"list_feather_columns",
3740
]
3841

0 commit comments

Comments
 (0)