[Draft] Simplified upgrades WIP branch.#15964
Draft
ritwiksahani wants to merge 12 commits intodevelopfrom
Draft
Conversation
Add API definition and request-response for list Upgrades.
* Added a metadata fetcher to fetch mapping from CDAP metadata.
Sample response from metadata API for a user plugin `Trash` and the pipeline `DataFusionQuickstart`
```
{
"sort": "io.cdap.cdap.data2.metadata.dataset.SortInfo@74a24bc1",
"offset": 0,
"limit": 2147483647,
"numCursors": 0,
"total": 1,
"results": [
{
"metadataEntity": {
"details": {
"namespace": "default",
"artifact": "trash-plugin",
"version": "1.2.0",
"type": "batchsink",
"plugin": "Trash"
},
"type": "plugin"
},
"metadata": {
"SYSTEM": {
"properties": {
"default:DataFusionQuickstart": "1"
},
"tags": []
}
}
}
],
"cursors": [],
"showHidden": false,
"entityScope": [
"USER"
]
}
```
Fix test failure due to a new API being added.
* Upgrade Manager is the class that has the core logic to read from various sources and covert the data to a list of ApplicationUpgradeDetail. * This PR also has changes to the ApplicationUpgradeDetail class where a new class for plugin upgrade detail is created which extends ArtifactUpgradeDetail class.
Adding fetcher for plugin to pipeline mapping.
Added Upgrade manager interface and implementation.
981084f to
4b65e74
Compare
HttpHandler and Module changes for view upgrades API.
* New applications added for upgrades test were not being deleted leading to higher count being returned for list apps.
Fixing unit test failures.
|
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.


Draft CL to validate builds.