-
Notifications
You must be signed in to change notification settings - Fork 467
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
#30367 Refactor job system and enhance SSE monitoring. #30816
Merged
fabrizzio-dotCMS
merged 13 commits into
main
from
issue-30367-Implement-Abandoned-Job-Detection-and-Recovery-fixes
Dec 4, 2024
Merged
#30367 Refactor job system and enhance SSE monitoring. #30816
fabrizzio-dotCMS
merged 13 commits into
main
from
issue-30367-Implement-Abandoned-Job-Detection-and-Recovery-fixes
Dec 4, 2024
Conversation
This file contains 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
Removed obsolete job events, streamlined job state management by introducing more precise states such as FAILED_PERMANENTLY and ABANDONED_PERMANENTLY. Replaced job completion terminology and refined method signatures and naming conventions to reinforce consistency. Enhanced Server-Sent Events (SSE) monitoring with a dedicated utility class for improved performance and error handling.
…-Abandoned-Job-Detection-and-Recovery-fixes
Quality Gate passedIssues Measures |
…-Abandoned-Job-Detection-and-Recovery-fixes # Conflicts: # dotCMS/src/main/java/com/dotcms/jobs/business/processor/impl/ImportContentletsProcessor.java
…-Abandoned-Job-Detection-and-Recovery-fixes
dotCMS/src/main/java/com/dotcms/jobs/business/api/JobQueueManagerAPIImpl.java
Outdated
Show resolved
Hide resolved
dotCMS/src/main/java/com/dotcms/jobs/business/api/JobQueueManagerAPIImpl.java
Show resolved
Hide resolved
dotCMS/src/main/java/com/dotcms/jobs/business/api/events/RealTimeJobMonitor.java
Outdated
Show resolved
Hide resolved
…-Abandoned-Job-Detection-and-Recovery-fixes
valentinogiardino
approved these changes
Dec 4, 2024
fabrizzio-dotCMS
approved these changes
Dec 4, 2024
fabrizzio-dotCMS
deleted the
issue-30367-Implement-Abandoned-Job-Detection-and-Recovery-fixes
branch
December 4, 2024 22:06
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.
Removed obsolete job events, streamlined job state management by introducing more precise states such as
FAILED_PERMANENTLY
andABANDONED_PERMANENTLY
. Replaced job completion terminology and refined method signatures and naming conventions to reinforce consistency. Enhanced Server-Sent Events (SSE) monitoring with a dedicated utility class for improved performance and error handling.This PR fixes: #30367