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
Currently avro2json workflow is responsible for translating avro input into json output.
avro2json
It will be convenient, also for #918, to allow enabling compression by providing e.g. compression_method input parameter which could result in adding:
compression_method
.option("compression", params.compressionMethod)
before .json() spark method producing json out of the Dataset.
.json()
Dataset
Compression should be disabled when set to null, empty or $UNDEFINED$ value.
$UNDEFINED$
The text was updated successfully, but these errors were encountered:
Closes #1371: Add optional compression support in avro2json workflow
7790a51
Accepting `compression_method` input parameter set to `$UNDEFINED$` value by default (compression disabled).
marekhorst
No branches or pull requests
Currently
avro2json
workflow is responsible for translating avro input into json output.It will be convenient, also for #918, to allow enabling compression by providing e.g.
compression_method
input parameter which could result in adding:before
.json()
spark method producing json out of theDataset
.Compression should be disabled when set to null, empty or
$UNDEFINED$
value.The text was updated successfully, but these errors were encountered: