We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Explore DataSourceV2 API and come up with a plan.
The text was updated successfully, but these errors were encountered:
This is the doc describing datasource v2 in general. Implementations should at least use ReadSupport or WriteSupport interfaces for readable or writable data sources, respectively. https://jaceklaskowski.gitbooks.io/mastering-spark-sql/content/spark-sql-DataSourceV2.html
Sorry, something went wrong.
ReadSupport defines a single createReader method that creates a DataSourceReader.
DataSourceReader createReader(DataSourceOptions options) DataSourceReader createReader(StructType schema, DataSourceOptions options)
Add a initial support for DataSourceV2. Will upgrade more for the other relevant optimization.
No branches or pull requests
Explore DataSourceV2 API and come up with a plan.
The text was updated successfully, but these errors were encountered: