xuxueli 7 年 前
コミット
f0789c9c47
共有1 個のファイルを変更した5 個の追加8 個の削除を含む
  1. 5 8
      doc/XXL-JOB-English-Documentation.md

+ 5 - 8
doc/XXL-JOB-English-Documentation.md ファイルの表示

@@ -323,7 +323,7 @@ Login in xxl-job-admin,click on the"新建任务" button, configure the job para
323 323
 
324 324
 ![task management](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_o8HQ.png "task management")
325 325
 
326
-![create task](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_SE2u.png "create task")
326
+![create task](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_ZAsz.png "create task")
327 327
 
328 328
 #### Step 2:develop “GLUE模式(Java)” job
329 329
 Click “GLUE” button on the right of the job to go to GLUE editor view as shown below。“GLUE模式(Java)” mode task has been inited with default task code for printing Hello World。 ( “GLUE模式(Java)” mode task is a java code fragment implements IJobHandler interface,it will be executed in executor,you can use @Resource/@Autowire to inject other java bean instance,if you want to see more info please go to chapter 3)
@@ -395,7 +395,7 @@ The task logic exist in the executor project as JobHandler,the develop steps as
395 395
 #### Step 2:create task in schedule center
396 396
 If you want learn more about configure item please go and sedd “Description of configuration item”,select  "BEAN模式" as run mode,property JobHandler please fill in the value defined by @JobHande.
397 397
 
398
-![输入图片说明](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_yrcO.png "在这里输入图片标题")
398
+![输入图片说明](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_ZAsz.png "在这里输入图片标题")
399 399
 
400 400
 ### 3.2 GLUE模式(Java)
401 401
 Task source code is maintained in the schedule center and can be updated by Web IDE online, it will be compiled and effective real-time,didn’t need to assign JobHandler,develop flow shown as below:
@@ -403,7 +403,7 @@ Task source code is maintained in the schedule center and can be updated by Web
403 403
 #### Step 1:create task in schedule center
404 404
 If you want learn more about configure item please go and sedd “Description of configuration item”,select "GLUE模式(Java)" as run mode.
405 405
 
406
-![输入图片说明](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_SE2u.png "在这里输入图片标题")
406
+![输入图片说明](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_tJOq.png "在这里输入图片标题")
407 407
 
408 408
 #### Step 2:develop task source code
409 409
 Select the task record and click “GLUE” button on the righe of it,it will go to GLUE task’s WEB IDE page,on this page yo can edit you task code(also can edit in other IDE tools,copy and paste into this page).
@@ -446,7 +446,7 @@ click"执行器管理" on the left menu,it will go to the page as shown below:
446 446
     2,"执行器列表" :display all nodes under this executor group.
447 447
 
448 448
 If you want to create a new executor,please click "+新增执行器" button: 
449
-![输入图片说明](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_g3Im.png "在这里输入图片标题")
449
+![输入图片说明](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_V3vF.png "在这里输入图片标题")
450 450
 
451 451
 ### Description of executor attributes
452 452
 
@@ -580,7 +580,7 @@ So schedule and task can be decoupled from each other, by the way it can improve
580 580
 
581 581
 #### 5.3.3 Architecture diagram
582 582
 
583
-![输入图片说明](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_aEE2.png "在这里输入图片标题")
583
+![输入图片说明](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_Qohm.png "在这里输入图片标题")
584 584
 
585 585
 ### 5.4 Schedule module analysis
586 586
 #### 5.4.1 Disadvantage of quartz
@@ -661,7 +661,6 @@ Executor will execute task when it receive task execute request.it will notify t
661 661
 If executor project was deployed as cluster schedule center will known all online executor nodes,such as:“127.0.0.1:9997, 127.0.0.1:9998, 127.0.0.1:9999”.
662 662
 
663 663
 When "路由策略" select "故障转移(FAILOVER)",it will send heart beat check request in order while schedule center start schedule request.  The first alive checked executor node will be selected and send schedule request to it.
664
-![输入图片说明](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_P128.png "在这里输入图片标题")
665 664
 
666 665
 “调度备注” can be viewed on the monitor page when schedule success. As shown below: 
667 666
 ![输入图片说明](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_jrdI.png "在这里输入图片标题")
@@ -675,8 +674,6 @@ Every time when task was scheduled in the schedule center it will record a task
675 674
 - 调度信息:include schedule time、schedule result and  schedule log  and so on,accord these parameters you can understand some task schedule info of schedule center.
676 675
 - 执行信息:include execute time、execute result and execute log and so on, accord these parameters you can understand the task execution info in the executor.
677 676
 
678
-![输入图片说明](https://raw.githubusercontent.com/xuxueli/xxl-job/master/doc/images/img_c8Ru.png "在这里输入图片标题")
679
-
680 677
 Schedule log stands fo single task schedule, attribute description is as follows:
681 678
 - 执行器地址:machine addresses on which task will be executed.
682 679
 - JobHandler:JobHandler name of task under Bean module.