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

Make sealed version of Avro Resolver Action #21407

Merged
merged 1 commit into from
Apr 11, 2024

Conversation

jklamer
Copy link
Member

@jklamer jklamer commented Apr 4, 2024

Description

Make a sealed version of the Avro Resolver Action

Additional context and related issues

Release notes

( X) This is not user-visible or is docs only, and no release notes are required.
( ) Release notes are required. Please propose a release note for me.
( ) Release notes are required, with the following suggested text:

# Section
* Fix some things. ({issue}`issuenumber`)

@cla-bot cla-bot bot added the cla-signed label Apr 4, 2024
@jklamer jklamer requested a review from dain April 4, 2024 22:24
@jklamer jklamer force-pushed the jklamer/AvroCompilationAsSealed branch from 3feca8c to a87c9fb Compare April 4, 2024 22:33
@wendigo
Copy link
Contributor

wendigo commented Apr 5, 2024

@jklamer what's that, and where are the tests for it? :)

@jklamer
Copy link
Member Author

jklamer commented Apr 5, 2024

@wendigo It's an internal Avro model that can be improved via sealed. The plan is to expose it to plugin writers so making it sealed is for ergonomics. The tests that currently exist should suffice as this PR does not change logic, but just location and structure of currently class internal structures.

Copy link
Member

@dain dain left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A bunch of minor stuff, but otherwise looks good.

Also, drop the empty commit.

Comment on lines 24 to 25
private final Schema readSchema;
private final Schema writeSchema;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like every implementation has these two fields, which are check for null and assigned in the constructor of every implementation. How about we move these to the base class.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Alternatively, I think every implementation of AvroReadAction and RecordFieldReadAction can be a simple record (with a constructor to verify arguments), so I'd do that instead.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Most implementations can be simple records. For types that can be promoted to, another field is present to hold the promotion function (eg int -> long)

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'll make everything records I can and see how we feel

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

oh I don't have to manually implement the methods for the interface when they're records. Thats aggressively slick. Doing that as much as possible

};
}

@FunctionalInterface
private interface LongIoFunction<A>
public interface LongIoFunction<A>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Consider moving these to the classes like LongRead (can be follow up)

Copy link
Member Author

@jklamer jklamer Apr 10, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Need to do a lot of shuffling when rewriting these pieces. Will happen in follow up

@jklamer jklamer force-pushed the jklamer/AvroCompilationAsSealed branch from f17dafb to d5239d8 Compare April 10, 2024 22:28
Copy link
Member

@dain dain left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Other than the pom change to 22, the rest looks good

@jklamer jklamer force-pushed the jklamer/AvroCompilationAsSealed branch from d5239d8 to 4329fab Compare April 11, 2024 15:18
@dain dain merged commit ee5817a into trinodb:master Apr 11, 2024
58 checks passed
@github-actions github-actions bot added this to the 445 milestone Apr 11, 2024
@jklamer jklamer deleted the jklamer/AvroCompilationAsSealed branch April 11, 2024 19:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

3 participants