Skip to content
New issue

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

[FEA] [AUDIT] Support reading Avro with recursive schema reference #11585

Open
mythrocks opened this issue Oct 10, 2024 · 0 comments
Open

[FEA] [AUDIT] Support reading Avro with recursive schema reference #11585

mythrocks opened this issue Oct 10, 2024 · 0 comments
Labels
? - Needs Triage Need team to review and classify audit_4.0.0 Audit related tasks for 4.0.0 feature request New feature or request

Comments

@mythrocks
Copy link
Collaborator

SPARK-48939 allows Spark 4.0 to now read Avro input where the schema is self-referential.

For instance:

{
  "type": "record",
  "name": "LongList",
  "fields" : [
    {"name": "value", "type": "long"},
    {"name": "next", "type": ["null", "LongList"]}
  ]
}

This isn't yet supported in the spark-rapids plugin's Avro reader. This might be required at some point, for parity.

@mythrocks mythrocks added ? - Needs Triage Need team to review and classify audit_4.0.0 Audit related tasks for 4.0.0 feature request New feature or request labels Oct 10, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
? - Needs Triage Need team to review and classify audit_4.0.0 Audit related tasks for 4.0.0 feature request New feature or request
Projects
None yet
Development

No branches or pull requests

1 participant