-
Notifications
You must be signed in to change notification settings - Fork 3
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
Implement Job Scheduler logic #103
base: master
Are you sure you want to change the base?
Conversation
Not functional yet
Not functional yet
…dexer-plugins into 65-job-scheduler-research
d2d8680
to
7f03e48
Compare
Signed-off-by: Álex Ruiz <[email protected]>
plugins/command-manager/src/main/java/com/wazuh/commandmanager/jobscheduler/JobDocument.java
Outdated
Show resolved
Hide resolved
plugins/command-manager/src/main/java/com/wazuh/commandmanager/jobscheduler/SearchJob.java
Outdated
Show resolved
Hide resolved
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
Signed-off-by: Álex Ruiz <[email protected]>
When I tested this branch with
This is the complete log file: |
An issue was observed where the plugin entered an infinite loop whenever API calls were received whilst outgoing http requests where being performed.
I haven't been able to pin point the issue with exactitude, but I took the following measures to try and fix it:
With these changes, the problem seems to not manifest itself anymore. However this brings new issues as we now need to handle the lifecycle of the |
Description
This PR adds job scheduler logic to the
command-manager
plugin.Issues Resolved
Resolves #87