You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@arrow.apache.org by "Krisztian Szucs (Jira)" <ji...@apache.org> on 2020/04/14 22:53:00 UTC

[jira] [Resolved] (ARROW-7965) [Python] Refine higher level dataset API

     [ https://issues.apache.org/jira/browse/ARROW-7965?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Krisztian Szucs resolved ARROW-7965.
------------------------------------
    Resolution: Fixed

Issue resolved by pull request 6505
[https://github.com/apache/arrow/pull/6505]

> [Python] Refine higher level dataset API
> ----------------------------------------
>
>                 Key: ARROW-7965
>                 URL: https://issues.apache.org/jira/browse/ARROW-7965
>             Project: Apache Arrow
>          Issue Type: Improvement
>          Components: Python
>            Reporter: Krisztian Szucs
>            Assignee: Krisztian Szucs
>            Priority: Major
>              Labels: pull-request-available
>             Fix For: 0.17.0
>
>          Time Spent: 16.5h
>  Remaining Estimate: 0h
>
> Provide a more intuitive way to construct nested dataset:
> ```python
> # instead of using confusing factory function
> dataset([
>      factory("s3://old-taxi-data", format="parquet"),
>      factory("local/path/to/new/data", format="csv")
> ])
> # let the user to construct a new dataset directly from dataset objects
> dataset([ 
>     dataset("s3://old-taxi-data", format="parquet"),
>     dataset("local/path/to/new/data", format="csv")
> ])
> ```
> In the future we might want to introduce a new Dataset class which wraps functionality of both the dataset actory and the materialized dataset enabling optimizations over rediscovery of already materialized datasets. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)