Re: Exposing functions to pyspark

2019-10-08 Thread Andrew Melo
Hello again, Is it possible to grab a handle to the underlying DataSourceReader backing a DataFrame? I see that there's no nice way to add extra methods to Dataset, so being able to grab the DataSource backing the dataframe would be a good escape hatch. Cheers Andrew On Mon, Sep 30, 2019 at

Exposing functions to pyspark

2019-09-30 Thread Andrew Melo
Hello, I'm working on a DSv2 implementation with a userbase that is 100% pyspark based. There's some interesting additional DS-level functionality I'd like to expose from the Java side to pyspark -- e.g. I/O metrics, which source site provided the data, etc... Does someone have an example of