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

[Merged by Bors] - Initial work on config merging #368

Closed
wants to merge 17 commits into from
Closed

Conversation

nightkr
Copy link
Member

@nightkr nightkr commented Apr 8, 2022

Description

This is a starting point for #362, but is intended to be usable outside of that context (in this case, the primary motivation for getting this done now is #365).

Work Checklist until R4R

  • Merging "primitive" types like u8 or String
  • Merging arbitrarily nested structs
  • Merging enums
  • Merging boxed stuff
  • Merging lists
    • This will probably depend on the lists in question, might want to defer this for a later PR
  • Docs

Review Checklist

  • Code contains useful comments
  • (Integration-)Test cases added (or not applicable)
  • Documentation added (or not applicable)
  • Changelog updated (or not applicable)
  • Cargo.toml only contains references to git tags (not specific commits or branches)

Once the review is done, comment bors r+ (or bors merge) to merge. Further information

@nightkr nightkr self-assigned this Apr 8, 2022
soenkeliebau added a commit that referenced this pull request Apr 11, 2022
@nightkr nightkr marked this pull request as ready for review April 19, 2022 11:27
@nightkr nightkr requested review from soenkeliebau and a team April 19, 2022 11:27
@nightkr
Copy link
Member Author

nightkr commented Apr 19, 2022

We might want to reorganize this into a "virtual root crate + members" layout, but I'd rather split that into a separate PR to avoid cluttering the diff view too much.

Copy link
Member

@maltesander maltesander left a comment

Choose a reason for hiding this comment

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

Im still on the code, just 2 findings to not get lost.
stackable-operator-derive needs to be added to exceptions in the deny.toml.

@nightkr
Copy link
Member Author

nightkr commented Apr 20, 2022

Hopefully cargo deny should be happy now...

Copy link
Member

@maltesander maltesander left a comment

Choose a reason for hiding this comment

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

LGTM. Works fine for the usecases i could come up with.
As discussed with @teozkr, im fine with merging for now and see what we stumble across later on.

@nightkr
Copy link
Member Author

nightkr commented Apr 22, 2022

I've been experimenting a bit further with this in feature/merge-experiments, but never really got to a point that I was happy with there. In particular:

  • cbb7f0b changes our uses of Option into a new Inheritable enum to try to clarify the semantics we want a bit better. This leaves Option available for semantically optional fields. However, this has a bunch of downsides:
    • Serde doesn't like differentiating between missing and null fields, the closest I could get required sprinkling #[serde(default)] on every field, which is.. far from ideal
    • This is pretty much impossible to represent idiomatically in Go, which I suspect will cause problems for getting K8s to accept the schema definitions down the line (I didn't even try this yet at that point)
  • 19bdb83 and 0bebbe7 further split up Inheritable into the Atomic and Enum enums, allowing any type (that conforms to the regular Deserialize+Serialize+JsonSchema requirements) to be used as an atomic, but arguably this is an even worse situation to be in because it further increases complexity without really fixing the root issues
  • 7dc134c (the current state of the feature/merge branch that this PR concerns) overloads Option between "this is optional" and "this should be inherited", leaving the differentiation between those two cases for a future validation step.. this also has a few disadvantages
    • It's impossible to override a field to null once a value has been set
    • It's unclear from the struct itself whether a field should actually be optional

I'm starting to believe that "Option everywhere" is still the most viable approach though, and that we'll have to handle cases where we want to allow override-to-null separately. I think the "unclear optionality" problem should get better once we have the validation layer in place, at which point the mergeable fragments would likely be generated by the validation layer anyway.

@nightkr nightkr requested a review from a team April 22, 2022 14:50
nightkr and others added 5 commits May 3, 2022 16:47
## Description

- Renamed ConnectionDef to S3ConnectionDef for consistency
- Added a `resolve` function to the S3ConnectionDef, similar to the function on the S3BucketDef
- minor documentation fix
- added TlsAuthenticationProvider as discussed in stackabletech/documentation#186
- removed MutualTlsVerification

Co-authored-by: Malte Sander <[email protected]>
## Description

*Please add a description here. This will become the commit message of the merge request later.*
Signed-off-by: Sönke Liebau <[email protected]>
@soenkeliebau
Copy link
Member

I have tested the code in here with my draft PR in NiFi and everything works as expected. I'd be happy to merge this.

However, I f****d up when trying to merge main into this PR earlier today and may have broken other code, not sure..

@nightkr
Copy link
Member Author

nightkr commented May 5, 2022

bors r+

bors bot pushed a commit that referenced this pull request May 5, 2022
## Description

This is a starting point for #362, but is intended to be usable outside of that context (in this case, the primary motivation for getting this done now is #365).



Co-authored-by: Teo Klestrup Röijezon <[email protected]>
Co-authored-by: Felix Hennig <[email protected]>
Co-authored-by: Malte Sander <[email protected]>
Co-authored-by: Sebastian Bernauer <[email protected]>
Co-authored-by: Sönke Liebau <[email protected]>
@bors
Copy link
Contributor

bors bot commented May 5, 2022

Pull request successfully merged into main.

Build succeeded:

@bors bors bot changed the title Initial work on config merging [Merged by Bors] - Initial work on config merging May 5, 2022
@bors bors bot closed this May 5, 2022
@bors bors bot deleted the feature/merge branch May 5, 2022 07:52
bors bot pushed a commit to stackabletech/nifi-operator that referenced this pull request Jun 9, 2022
…able (#265)

## Description
Fixes #252

This doesn't work with the currently released version of the operator-rs, and is only intended for code study, as this might serve as a template for making similar changes in other operators.

Most notably it depends on stackabletech/operator-rs#368 and a PR to make small changes to the Resource structs to make them work with the Merging code, which can in turn only be created once the above mentioned PR has been merged.


*Please add a description here. This will become the commit message of the merge request later.*



Co-authored-by: Razvan-Daniel Mihai <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants