-
Notifications
You must be signed in to change notification settings - Fork 344
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
[CDAP-21096] Remove in-memory launching queue from RunRecordMonitorService #15800
Merged
vsethi09
merged 1 commit into
develop
from
feature/CDAP-21096_fix_RunRecordMonitorService_queue_cache
Jan 24, 2025
Merged
[CDAP-21096] Remove in-memory launching queue from RunRecordMonitorService #15800
vsethi09
merged 1 commit into
develop
from
feature/CDAP-21096_fix_RunRecordMonitorService_queue_cache
Jan 24, 2025
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
vsethi09
force-pushed
the
feature/CDAP-21096_fix_RunRecordMonitorService_queue_cache
branch
5 times, most recently
from
January 15, 2025 20:37
dc068c3
to
0ea30c6
Compare
vsethi09
changed the title
[WIP] Remove in-memory launching queue in RunRecordMonitorService
[CDAP-21096] Remove in-memory launching queue from RunRecordMonitorService
Jan 15, 2025
vsethi09
force-pushed
the
feature/CDAP-21096_fix_RunRecordMonitorService_queue_cache
branch
from
January 15, 2025 20:49
0ea30c6
to
abcd4c5
Compare
tivv
reviewed
Jan 15, 2025
cdap-app-fabric/src/main/java/io/cdap/cdap/internal/app/services/FlowControlMonitorService.java
Outdated
Show resolved
Hide resolved
cdap-app-fabric/src/main/java/io/cdap/cdap/internal/app/services/FlowControlMonitorService.java
Outdated
Show resolved
Hide resolved
...c/src/main/java/io/cdap/cdap/internal/app/services/ProgramNotificationSubscriberService.java
Outdated
Show resolved
Hide resolved
cdap-app-fabric/src/main/java/io/cdap/cdap/internal/app/store/AppMetadataStore.java
Outdated
Show resolved
Hide resolved
cdap-app-fabric/src/main/java/io/cdap/cdap/internal/app/store/AppMetadataStore.java
Outdated
Show resolved
Hide resolved
cdap-app-fabric/src/main/java/io/cdap/cdap/internal/app/store/AppMetadataStore.java
Outdated
Show resolved
Hide resolved
vsethi09
force-pushed
the
feature/CDAP-21096_fix_RunRecordMonitorService_queue_cache
branch
2 times, most recently
from
January 17, 2025 15:24
343101b
to
db8a3ab
Compare
vsethi09
force-pushed
the
feature/CDAP-21096_fix_RunRecordMonitorService_queue_cache
branch
from
January 17, 2025 16:07
db8a3ab
to
66da732
Compare
cdap-app-fabric/src/main/java/io/cdap/cdap/internal/app/services/FlowControlService.java
Fixed
Show fixed
Hide fixed
vsethi09
force-pushed
the
feature/CDAP-21096_fix_RunRecordMonitorService_queue_cache
branch
3 times, most recently
from
January 20, 2025 16:35
ea09155
to
d9e4c13
Compare
tivv
reviewed
Jan 21, 2025
cdap-app-fabric/src/main/java/io/cdap/cdap/internal/app/services/FlowControlService.java
Outdated
Show resolved
Hide resolved
cdap-app-fabric/src/main/java/io/cdap/cdap/internal/app/services/FlowControlService.java
Outdated
Show resolved
Hide resolved
...c/src/main/java/io/cdap/cdap/internal/app/services/ProgramNotificationSubscriberService.java
Outdated
Show resolved
Hide resolved
...c/src/main/java/io/cdap/cdap/internal/app/services/ProgramNotificationSubscriberService.java
Outdated
Show resolved
Hide resolved
cdap-app-fabric/src/main/java/io/cdap/cdap/internal/app/store/AppMetadataStore.java
Outdated
Show resolved
Hide resolved
cdap-app-fabric/src/main/java/io/cdap/cdap/internal/app/store/AppMetadataStore.java
Outdated
Show resolved
Hide resolved
vsethi09
force-pushed
the
feature/CDAP-21096_fix_RunRecordMonitorService_queue_cache
branch
from
January 22, 2025 10:32
d9e4c13
to
31c5b1c
Compare
tivv
approved these changes
Jan 22, 2025
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.
LGTM with a small comment
...c/src/main/java/io/cdap/cdap/internal/app/services/ProgramNotificationSubscriberService.java
Show resolved
Hide resolved
vsethi09
force-pushed
the
feature/CDAP-21096_fix_RunRecordMonitorService_queue_cache
branch
from
January 23, 2025 06:33
31c5b1c
to
0e1ba0b
Compare
vsethi09
force-pushed
the
feature/CDAP-21096_fix_RunRecordMonitorService_queue_cache
branch
from
January 24, 2025 12:46
0e1ba0b
to
03216d0
Compare
Quality Gate failedFailed conditions See analysis details on SonarQube Cloud Catch issues before they fail your Quality Gate with our IDE extension SonarQube for IDE |
vsethi09
deleted the
feature/CDAP-21096_fix_RunRecordMonitorService_queue_cache
branch
January 24, 2025 14:11
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.
Context
Multiple instances of
RunRecordMonitoringService
cannot run as distributed services as the in-memory cache of the launching queue will result in inconsistencies.Removed the in-memory launching queue from the RunRecordMonitoringService and used
AppMetadataStore
APIs.For more context, see: #15773 (comment).
Note:
RunRecordMonitoringService
is renamed asFlowControlMonitoringService
.Testing