mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-03 04:39:00 +08:00
Update architecture-design.md (#960)
* Update 系统架构设计.md * Update architecture-design.md
This commit is contained in:
parent
6acf8c6ad8
commit
73c3fa79ce
@ -266,7 +266,7 @@ In the early scheduling design, if there is no priority design and fair scheduli
|
||||
/**
|
||||
* task log appender
|
||||
*/
|
||||
Public class TaskLogAppender extends FileAppender<ILoggingEvent {
|
||||
Public class TaskLogAppender extends FileAppender<ILoggingEvent> {
|
||||
|
||||
...
|
||||
|
||||
@ -297,7 +297,7 @@ Generate a log in the form of /process definition id/process instance id/task in
|
||||
/**
|
||||
* task log filter
|
||||
*/
|
||||
Public class TaskLogFilter extends Filter<ILoggingEvent {
|
||||
Public class TaskLogFilter extends Filter<ILoggingEvent> {
|
||||
|
||||
@Override
|
||||
Public FilterReply decide(ILoggingEvent event) {
|
||||
@ -313,4 +313,4 @@ Public class TaskLogFilter extends Filter<ILoggingEvent {
|
||||
|
||||
### summary
|
||||
|
||||
Starting from the scheduling, this paper introduces the architecture principle and implementation ideas of the big data distributed workflow scheduling system-EasyScheduler. To be continued
|
||||
Starting from the scheduling, this paper introduces the architecture principle and implementation ideas of the big data distributed workflow scheduling system-EasyScheduler. To be continued
|
||||
|
@ -253,7 +253,7 @@ Master Scheduler线程一旦发现任务实例为” 需要容错”状态,则
|
||||
/**
|
||||
* task log appender
|
||||
*/
|
||||
public class TaskLogAppender extends FileAppender<ILoggingEvent {
|
||||
public class TaskLogAppender extends FileAppender<ILoggingEvent> {
|
||||
|
||||
...
|
||||
|
||||
@ -286,7 +286,7 @@ Master Scheduler线程一旦发现任务实例为” 需要容错”状态,则
|
||||
/**
|
||||
* task log filter
|
||||
*/
|
||||
public class TaskLogFilter extends Filter<ILoggingEvent {
|
||||
public class TaskLogFilter extends Filter<ILoggingEvent> {
|
||||
|
||||
@Override
|
||||
public FilterReply decide(ILoggingEvent event) {
|
||||
|
Loading…
Reference in New Issue
Block a user