-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjob-config.html
108 lines (108 loc) · 6.08 KB
/
job-config.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<meta name="description" content="JobStreamer : JobStreamer site."/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/semantic-ui/2.1.8/semantic.min.css" type="text/css"/>
<link rel="stylesheet" href="css/basic.css" type="text/css"/>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/prism/1.5.0/themes/prism.css" type="text/css"/>
</head>
<body>
<div class="ui fixed inverted teal menu">
<div class="title item"><a href="./index.html"><b>Job Streamer</b></a></div>
</div>
<div/>
<div id="main_content_wrap" class="main ui grid content">
<div class="four wide column">
<div class="ui vertical fluid tabular menu">
<a class="item" href="get-started-quickly.html">
Getting Started
</a>
<div class="item">
<div class="header">Guide</div>
<div class="menu">
<a class="item" href="auth.html">
Authentication and authorization
</a>
<a class="item" href="deploy-batch-components.html">
Deploy batch components
</a>
<a class="item" href="create-a-job.html">
Create job
</a>
<a class="item" href="execute-the-job.html">
Execute job
</a>
<a class="item" href="schedule-job.html">
Schedule job
</a>
<a class="item" href="job-config.html">
Job config
</a>
<a class="item" href="notificator-config.html">
Notificator config
</a>
<a class="item" href="import-export.html">
Import and export
</a>
<a class="item" href="test-mode.html">
Test mode
</a>
<a class="item" href="healthcheck.html">
Healthcheck
</a>
</div>
</div>
<div class="item">
<div class="header">Components</div>
<div class="menu">
<a class="item" href="control-bus.html">
Control bus
</a>
<a class="item" href="agent.html">
Agent
</a>
<a class="item" href="console.html">
Management console
</a>
<a class="item" href="notificator.html">
Notificator
</a>
</div>
</div>
<div class="item">
<div class=" header">For contributers</div>
<div class="menu">
<a class="item" href="get-started-developer.html">
Getting Started for contributers
</a>
<a class="item" href="developer-guide.html">
Developer guide for contributers
</a>
</div>
</div>
</div> </div>
<div class="twelve wide stretched column">
<h1><a href="#job-config" name="job-config">Job config</a></h1><h2><a href="#exclusive-execution" name="exclusive-execution">Exclusive execution</a></h2><p>There are cases where it is incovinient for a job to be executed simultaneously.<br/>In order not to be execute a job simultaneously,<br/>turn on “Exclusive execution” in the “Shedule settings” panel of the “Settings” tab of the job details page.<br/># Notice that if you turn on this setting, multiple executions will not be fired even if they are scheduled.<br/># A function, that dispatch a job again as soon as previous job is over, has not been inplemented.</p><h2><a href="#monitor-job-execution" name="monitor-job-execution">Monitor job execution</a></h2><p>You can configure job execution monitoring in the “Settings” tab.</p><p><img src="img/notificator_dojob.png" alt="image" /></p><h3>1. Send mail according to batch status or exit status.</h3><p>Set this in the “Notification” panel.<br/>If you monitor batch status, select the batch status used for condition from the pull-down.<br/>If you monitor exit status, enter the exit status used for condition.<br/>Enter the notification key set in the notification server in the “Notification”.</p><h3>2. Send mail if a job is being executed for more than a certain period of time.</h3><p>Set this in the “Shedule settings” panel.<br/>Enter “a certain period of time” in the “Execution constraints” form, and select “Alert” in the pull-down.<br/>Enter the notification key set in the notification server in the “Notification”.</p><h3>3. Stop job if it is being executed for more than a certain period of time.</h3><p>Set this in the “Shedule settings” panel.<br/>Enter “a certain period of time” in the “Execution constraints” form, and select “Stop” in the pull-down.<br/>Target job needs to be restartable (it means all batchlets making up the job implement javax.batch.api.AbstractBatchlet.stop).</p><h2><a href="#about-notification-server" name="about-notification-server">About notification server</a></h2><p>Please refer to <a href="./notificator-config.html">Notificator config</a> for details.</p>
</div>
</div>
<div class="ui inverted teal footer vertical segment">
<div class="container">
<div class="ui stackable divided relaxed grid">
<div class="sixteen wide column">
<p>Copyright @ 2015-2016 kawasima & contributors.</p>
<p>Released under the EPL license.</p>
</div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/jquery/1.12.3/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/prism/1.5.0/prism.js"></script>
<script src="https://cdn.jsdelivr.net/prism/1.5.0/components/prism-java.min.js"></script>
<script src="https://cdn.jsdelivr.net/prism/1.5.0/components/prism-bash.min.js"></script>
<script src="https://cdn.jsdelivr.net/prism/1.5.0/plugins/line-numbers/prism-line-numbers.min.js"></script>
<script src="https://cdn.jsdelivr.net/semantic-ui/2.1.8/semantic.min.js"> </script>
</body>
</html>