Uh oh!
There was an error while loading. Please reload this page.
Add tfio.IOTensor.from_parquet support - #439
Merged
Merged
Conversation
yongtangforce-pushed
the
io_tensor_parquet
branch
2 times, most recently
from
August 25, 2019 19:36
200cd33 to
37bf6b7Compareyongtangforce-pushed
the
io_tensor_parquet
branch
from
September 21, 2019 14:44
37bf6b7 to
46758c2CompareParquet columnar file format that naturally fits into a table/column data. Since Parquet file itself is indexable, degenerating parquet into an iterable dataset is not desirable as it loses convenience and flexibility. This PR adds tfio.IOTensor.from_parquet support so that it is possible to acess parquet data through natual `__getitem__` operations. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
yongtangforce-pushed
the
io_tensor_parquet
branch
from
September 21, 2019 15:30
46758c2 to
82fe387Compareyongtang
commented
Sep 21, 2019
MemberAuthor
Intend to merge this PR soon as it has been open for some time. This PR basically follow the same pattern as other PRs, and adds the ability of partitioned read. |
i-ony pushed a commit
to i-ony/io
that referenced
this pull request
Feb 8, 2021
Parquet columnar file format that naturally fits into a table/column data. Since Parquet file itself is indexable, degenerating parquet into an iterable dataset is not desirable as it loses convenience and flexibility. This PR adds tfio.IOTensor.from_parquet support so that it is possible to acess parquet data through natual `__getitem__` operations. Signed-off-by: Yong Tang <yong.tang.github@outlook.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Parquet columnar file format that naturally fits into a table/column data. Since Parquet file itself is indexable, degenerating parquet into an iterable dataset is not desirable as it loses convenience and flexibility.
This PR adds tfio.IOTensor.from_parquet support so that it is possible to acess parquet data through natual
__getitem__operations.Signed-off-by: Yong Tang yong.tang.github@outlook.com