-
Notifications
You must be signed in to change notification settings - Fork 2
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
Multi instance #670
Multi instance #670
Conversation
# Conflicts: # build.gradle # client-app/yarn.lock
# Conflicts: # client-app/yarn.lock
+ Remove extraneous controller
+ Working to get this setup on our Fargate-based ECS instance w/o multicast
…ects of cluster configuration
# Conflicts: # CHANGELOG.md
# Conflicts: # client-app/yarn.lock
# Conflicts: # client-app/yarn.lock
# Conflicts: # client-app/package.json # client-app/src/admin/AppModel.ts # client-app/src/apps/admin.ts # client-app/src/desktop/AppModel.ts # client-app/yarn.lock # grails-app/controllers/io/xh/toolbox/portfolio/PortfolioController.groovy # grails-app/services/io/xh/toolbox/security/Auth0Service.groovy
) | ||
} | ||
return _newsItems ? _newsItems : Collections.emptyList() | ||
newsTimer = newsTimer ?: createTimer( |
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.
Flagging to discuss (related to our Timer conversation yesterday). I could be missing something. It seems like if a non-primary node is hit first, _newsItems
will be empty, the timer runFn
will not run, and this method will fail to return any news items.
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.
correct -- this would benefit from waiting
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.
Yeah- except this timer is lazily created, so I believe it could end up waiting indefinitely (until the same method happens to be called on the primary node).
I have some ideas I'd love to discuss tomorrow if you've got time.
sure -- looking forward to it!
…On Sun, Aug 25, 2024 at 11:33 AM Greg Solomon ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In grails-app/services/io/xh/toolbox/app/NewsService.groovy
<#670 (comment)>:
> @@ -20,15 +22,15 @@ class NewsService extends BaseService {
List<NewsItem> getNewsItems() {
// to avoid hitting the API too frequently, we only start our timer when the NewsService is actually used.
- if (!newsTimer) {
- newsTimer = createTimer(
- runFn: this.&loadAllNews,
- interval: 'newsRefreshMins',
- intervalUnits: MINUTES,
- runImmediatelyAndBlock: true
- )
- }
- return _newsItems ? _newsItems : Collections.emptyList()
+ newsTimer = newsTimer ?: createTimer(
Yeah- except this timer is lazily created, so I believe it could end up
waiting indefinitely (until the same method happens to be called on the
primary node).
I have some ideas I'd love to discuss tomorrow if you've got time.
—
Reply to this email directly, view it on GitHub
<#670 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/AARTL2MVJZYSOYWTIVRCH3DZTH2K3AVCNFSM6AAAAAA4FJN34KVHI2DSMVQWIX3LMV43YUDVNRWFEZLROVSXG5CSMV3GSZLXHMZDENJZGMZDMMRUG4>
.
You are receiving this because you modified the open/close state.Message
ID: ***@***.***>
|
No description provided.