1. 程式人生 > >Oozie與Coordinator調度講解及系統時區配置與定時觸發兩種配置方式

Oozie與Coordinator調度講解及系統時區配置與定時觸發兩種配置方式

-- track eno star es2017 alt coo 之前 res

1:修改本地linux時區

查看時區

- 號代表西 + 號 代表東 北京時間是東八區

技術分享圖片

設置時區的配置文件所在位置

1 cd /usr/share/zoneinfo/

技術分享圖片

選擇以亞洲的上海 的時區為基址

技術分享圖片

刪除本地配置文件

1 rm -r /etc/localtime 

技術分享圖片

創建一個硬連接

1  ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

技術分享圖片

時區變成東八區了

技術分享圖片

設置時間

技術分享圖片

2:設置oozie的時區 在oozie-site.xml修改 oozie默認使用UTC 等同於GMT 服務器上是CST 要設置成GMT+0800

1  <!-- Time Zone -->
2  <property>
3      <name>oozie.processing.timezone</name>
4      <value>GMT+0800</value>
5   </property>

1  <property>
2      <name>oozie.service.coord.check.maximum.frequency</name>
3      <value>false</value
> 4 </property>

技術分享圖片

技術分享圖片

上面設置只是設置oozie調度的時間 oozie的web控制臺時間也需要改

修改 oozie-console.js

技術分享圖片

在179行 getTimeZone

技術分享圖片

啟動之前要先清除緩存

技術分享圖片

3:拷貝模板

技術分享圖片

4:修改job.properties

 1 #
 2 # Licensed to the Apache Software Foundation (ASF) under one
 3 # or more contributor license agreements.  See the NOTICE file
 4 # distributed with this work for additional information
5 # regarding copyright ownership. The ASF licenses this file 6 # to you under the Apache License, Version 2.0 (the 7 # "License"); you may not use this file except in compliance 8 # with the License. You may obtain a copy of the License at 9 # 10 # http://www.apache.org/licenses/LICENSE-2.0 11 # 12 # Unless required by applicable law or agreed to in writing, software 13 # distributed under the License is distributed on an "AS IS" BASIS, 14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 # See the License for the specific language governing permissions and 16 # limitations under the License. 17 # 18 19 nameNode=hdfs://hadoop:8020 20 jobTracker=hadoop:8032 21 queueName=default 22 oozieAppsRoot=user/root/oozie-apps 23 oozieDataRoot=user/root/oozie/datas 24 25 oozie.coord.application.path=${nameNode}/${oozieAppsRoot}/cron-schedule 26 start=2015-10-11T20:25+0800 27 end=2015-10-11T20:30+0800 28 workflowAppUri=${nameNode}/${oozieAppsRoot}/cron-schedule

5:修改coordinator.xml

 1 <!--
 2   Licensed to the Apache Software Foundation (ASF) under one
 3   or more contributor license agreements.  See the NOTICE file
 4   distributed with this work for additional information
 5   regarding copyright ownership.  The ASF licenses this file
 6   to you under the Apache License, Version 2.0 (the
 7   "License"); you may not use this file except in compliance
 8   with the License.  You may obtain a copy of the License at
 9 
10        http://www.apache.org/licenses/LICENSE-2.0
11 
12   Unless required by applicable law or agreed to in writing, software
13   distributed under the License is distributed on an "AS IS" BASIS,
14   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15   See the License for the specific language governing permissions and
16   limitations under the License.
17 -->
18 <coordinator-app name="cron-coord" frequency="${coord:minutes(1)}" 
19                 start="${start}" end="${end}" timezone="GMT+0800"
20                 xmlns="uri:oozie:coordinator:0.4">
21         <action>
22         <workflow>
23             <app-path>${workflowAppUri}</app-path>
24             <configuration>
25                 <property>
26                     <name>jobTracker</name>
27                     <value>${jobTracker}</value>
28                 </property>
29                 <property>
30                     <name>nameNode</name>
31                     <value>${nameNode}</value>
32                 </property>
33                 <property>
34                     <name>queueName</name>
35                     <value>${queueName}</value>
36                 </property>
37             </configuration>
38         </workflow>
39     </action>
40 </coordinator-app>

6.把文件上傳至hdfs

1 bin/hdfs dfs -put /opt/cdh-5.3.6/oozie-4.0.0-cdh5.3.6/oozie-apps/cron-schedule oozie-apps/

技術分享圖片

技術分享圖片

7:啟動運行

Oozie與Coordinator調度講解及系統時區配置與定時觸發兩種配置方式