-
Notifications
You must be signed in to change notification settings - Fork 63
CASSSIDECAR-429: Add RFC 6902-inspired JSON Patch support to ConfigurationManager #369
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
Open
pauloricardomg
wants to merge
7
commits into
apache:trunk
Choose a base branch
from
pauloricardomg:CASSSIDECAR-429_v2
base: trunk
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
1f18625
CASSSIDECAR-429: Add RFC 6902-inspired JSON Patch support to Configur…
pauloricardomg 17fb889
CASSSIDECAR-429: Detect conflicting boolean JVM options against the e…
pauloricardomg 5c67693
CASSSIDECAR-429: Block path-bearing and file-writing JVM options in e…
pauloricardomg d973ec4
CASSSIDECAR-429: Simplify TEST value comparison in ConfigurationPatch…
pauloricardomg 62c0ebc
CASSSIDECAR-429: Fix stale javadoc reference in CassandraConfiguratio…
pauloricardomg d818e07
CASSSIDECAR-429: Allow JSON values in extra JVM option validation
pauloricardomg 38b8780
CASSSIDECAR-429: Drop reference to not-yet-existing ConfigurationPatc…
pauloricardomg File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
...in/java/org/apache/cassandra/sidecar/configmanagement/ConfigurationConflictException.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,54 @@ | ||
| /* | ||
| * Licensed to the Apache Software Foundation (ASF) under one | ||
| * or more contributor license agreements. See the NOTICE file | ||
| * distributed with this work for additional information | ||
| * regarding copyright ownership. The ASF licenses this file | ||
| * to you under the Apache License, Version 2.0 (the | ||
| * "License"); you may not use this file except in compliance | ||
| * with the License. You may obtain a copy of the License at | ||
| * | ||
| * http://www.apache.org/licenses/LICENSE-2.0 | ||
| * | ||
| * Unless required by applicable law or agreed to in writing, software | ||
| * distributed under the License is distributed on an "AS IS" BASIS, | ||
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| * See the License for the specific language governing permissions and | ||
| * limitations under the License. | ||
| */ | ||
|
|
||
| package org.apache.cassandra.sidecar.configmanagement; | ||
|
|
||
| import org.jetbrains.annotations.NotNull; | ||
|
|
||
| /** | ||
| * Thrown when a configuration patch fails due to a hash mismatch, | ||
| * indicating a concurrent modification to the effective configuration. | ||
| */ | ||
| public class ConfigurationConflictException extends ConfigurationManagerException | ||
| { | ||
| @NotNull | ||
| private final String expectedHash; | ||
|
|
||
| @NotNull | ||
| private final String actualHash; | ||
|
|
||
| public ConfigurationConflictException(@NotNull String expectedHash, @NotNull String actualHash) | ||
| { | ||
| super("Configuration conflict: expected hash [" + expectedHash | ||
| + "] but found [" + actualHash + "]", null); | ||
| this.expectedHash = expectedHash; | ||
| this.actualHash = actualHash; | ||
| } | ||
|
|
||
| @NotNull | ||
| public String expectedHash() | ||
| { | ||
| return expectedHash; | ||
| } | ||
|
|
||
| @NotNull | ||
| public String actualHash() | ||
| { | ||
| return actualHash; | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If incoming patch request has a conflicting jvm option against base yaml, this ConfigurationPatchApplier.apply only checks against overlay and doesn't detect conflict. storeOverlay call below stores it. Then baseSnapshot.overlay call below detects conflict with the base, prints warning and returns config without the conflicting option to the caller. The same thing happens in subsequent calls as well.
Also, returned config should be same as stored config, which is not true in this case.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good to have test case for the same
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good catch! Addressed in 17fb889.
apply() now checks boolean JVM opt conflicts against the effective config (base + overlay), not just the overlay, and rejects the patch before storeOverlay is called. Stored and returned configs no longer diverge, and the warn-and-drop path in baseSnapshot.overlay() is no longer hit.
Tests: ConfigurationManagerTest.testPatchConflictingBooleanJvmOptRejected (rejected, nothing stored) and testPatchReturnedConfigMatchesStoredConfig (returned == re-read).