-
Notifications
You must be signed in to change notification settings - Fork 7
Features/hpcdatamgm 2088 - DON'T MERGE #142
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
eranrosenberg
wants to merge
18
commits into
releases/3.23.0
Choose a base branch
from
features/HPCDATAMGM-2088
base: releases/3.23.0
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 8 commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
b5ac515
Initial code w/ DB script
308b18a
Merge branch 'releases/3.23.0' into features/HPCDATAMGM-2088
1b788c6
Merge branch 'releases/3.23.0' into features/HPCDATAMGM-2088
cea5f4f
Done w/ auto-tiering bulk task and a new API to kick off auto-tiering…
bb489d8
Merge branch 'releases/3.23.0' into features/HPCDATAMGM-2088
a369e12
Progress so far - bus and app services
7a6d8ee
Merge branch 'releases/3.23.0' into features/HPCDATAMGM-2088
8d3a05a
Changes so far to include 2 scheduled tasks
d153b43
Created branch 3.24.0.
dinhys ec6916c
HPCDATAMGM-2166: Collections gets registered sometimes without system…
dinhys 800e812
Update src/hpc-server/hpc-integration-impl/src/main/java/gov/nih/nci/…
dinhys 0040d9c
HPCDATAMGM-2167: Upgrade jackson-core from 2.18.1 to 2.18.6
dinhys a6f7eda
Merge pull request #148 from CBIIT/features/HPCDATAMGM-2166
dinhys 08009d2
Design doc update
227af59
Merge branch 'releases/3.23.0' into features/HPCDATAMGM-2088
3112712
Merge branch 'releases/3.24.0' into features/HPCDATAMGM-2088
043a9bf
Move scripts
1cc8173
Completed DAO w/ Trino
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
Binary file modified
BIN
+194 Bytes
(100%)
doc/development/HPCDATAMGM-2088 - External Archive Auto-Tiering.docx
Binary file not shown.
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
530 changes: 283 additions & 247 deletions
530
...er/hpc-app-service-api/src/main/java/gov/nih/nci/hpc/service/HpcDataMigrationService.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
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.
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.
Auto-tiering tasks are being created with status AUTO_TIERING_RECEIVED, but the migration processing flows shown in this PR only poll/process status RECEIVED (no code paths query for AUTO_TIERING_RECEIVED). As a result, these tasks can be assigned to a server but never picked up for processing. Either keep the status as RECEIVED for data-object migration tasks, or add corresponding processing/queries for AUTO_TIERING_RECEIVED.