-
Notifications
You must be signed in to change notification settings - Fork 17
Collector: Added task progress saving & Modified push source pause logic & Refactored the scheduled task module #68
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
Conversation
…tored the scheduled task module
| new Option<Long>("executor_cron_heartbeat_event_interval_seconds", 20L) { | ||
| @Override | ||
| public void setValue(final String valueString) { | ||
| value = Long.parseLong(valueString); |
Check notice
Code scanning / CodeQL
Missing catch of NumberFormatException Note
| new Option<Integer>("task_progress_report_interval", 60) { | ||
| @Override | ||
| public void setValue(String valueString) { | ||
| value = Integer.parseInt(valueString); |
Check notice
Code scanning / CodeQL
Missing catch of NumberFormatException Note
| TASK_PROCESS_PARALLELISM_NUM.key(), | ||
| TASK_PROCESS_PARALLELISM_NUM.value()); | ||
| attributes.containsKey(TASK_PROCESS_PARALLELISM_NUM.key()) | ||
| ? Integer.parseInt(TASK_PROCESS_PARALLELISM_NUM.key()) |
Check notice
Code scanning / CodeQL
Missing catch of NumberFormatException Note
| attributes, | ||
| TASK_SINK_PARALLELISM_NUM.key(), | ||
| attributes.containsKey(TASK_SINK_PARALLELISM_NUM.key()) | ||
| ? Integer.parseInt(TASK_SINK_PARALLELISM_NUM.key()) |
Check notice
Code scanning / CodeQL
Missing catch of NumberFormatException Note
| attributes, | ||
| TASK_SOURCE_PARALLELISM_NUM.key(), | ||
| attributes.containsKey(TASK_SOURCE_PARALLELISM_NUM.key()) | ||
| ? Integer.parseInt(attributes.get(TASK_SOURCE_PARALLELISM_NUM.key())) |
Check notice
Code scanning / CodeQL
Missing catch of NumberFormatException Note
No description provided.