nimbus (1.2.4) | 2018-01-25 20:02 |
nimbus-sample (1.2.4) | 2018-01-26 17:06 |
jp.ossc.nimbus.service.scheduler2.DefaultScheduleManagerServiceは、スケジュールマスタをサービス定義で設定し、スケジュールをメモリ中で管理し、ファイルに保存するScheduleManager実装サービスです。
スケジュールをファイルで保存するため、分散環境下で複数のScheduleManagerがスケジュールを共有する事を前提に設計されていません。
したがって、この実装は、スケジューラのクラスタ化をサポートしません。
このサービスは、複合的なサービスで、以下のサービスを下位サービスとして使用します。
下位サービスインタフェース | 用途 |
jp.ossc.nimbus.service.scheduler2.ScheduleMaker | スケジュールマスタからスケジュールを作成する。 |
jp.ossc.nimbus.service.sequence.Sequence | スケジュールIDを発行する。 |
以下に簡単なサービス定義を示します。
- <?xml version="1.0" encoding="Shift_JIS"?>
- <!DOCTYPE server PUBLIC
- "-//Nimbus//DTD Nimbus 1.0//JA"
- "http://nimbus.sourceforge.jp/dtd/nimbus-service_1_0.dtd">
- <server>
- <manager>
- <!-- ScheduleManagerサービス -->
- <service name="ScheduleManager"
- code="jp.ossc.nimbus.service.scheduler2.DefaultScheduleManagerService">
- <attribute name="ScheduleMasterServiceNames">
- #ScheduleMaster1
- #ScheduleMaster2
- #ScheduleMaster3
- #ScheduleMaster4
- </attribute>
- <attribute name="PersistDir">./schedule</attribute>
- <depends>
- <!-- スケジュールマスタ1
- 08:00:00にFlow1を実行するスケジュール
- -->
- <service name="ScheduleMaster1"
- code="jp.ossc.nimbus.service.scheduler2.DefaultScheduleMaster">
- <attribute name="Id">Schedule1</attribute>
- <attribute name="TaskName">Flow1</attribute>
- <attribute name="StartTime">// 08:00:00 000</attribute>
- </service>
- </depends>
- <depends>
- <!-- スケジュールマスタ2
- スケジュールマスタ1の終了を待って、08:00:00にFlow2を実行するスケジュール
- -->
- <service name="ScheduleMaster2"
- code="jp.ossc.nimbus.service.scheduler2.DefaultScheduleMaster">
- <attribute name="Id">Schedule2</attribute>
- <attribute name="TaskName">Flow2</attribute>
- <attribute name="StartTime">// 08:00:00 000</attribute>
- <attribute name="Input">100</attribute>
- <attribute name="Depends">Schedule1</attribute>
- </service>
- </depends>
- <depends>
- <!-- スケジュールマスタ3
- スケジュールマスタ2の終了を待って、08:01:00から08:02:00まで5秒間隔にFlow3を実行するスケジュール
- -->
- <service name="ScheduleMaster3"
- code="jp.ossc.nimbus.service.scheduler2.DefaultScheduleMaster">
- <attribute name="Id">Schedule3</attribute>
- <attribute name="TaskName">Flow3</attribute>
- <attribute name="StartTime">// 08:01:00 000</attribute>
- <attribute name="EndTime">// 08:02:00 000</attribute>
- <attribute name="RepeatInterval">5000</attribute>
- <attribute name="Depends">Schedule2</attribute>
- </service>
- </depends>
- <depends>
- <!-- スケジュールマスタ4
- スケジュールマスタ1とスケジュールマスタ3の終了を待って、08:00:00から08:03:00までFlow4の結果でリトライを指示される限り、10秒間隔でFlow4を実行するスケジュール
- 08:03:00に達しても、リトライを指示された場合は、エラー終了する
- -->
- <service name="ScheduleMaster4"
- code="jp.ossc.nimbus.service.scheduler2.DefaultScheduleMaster">
- <attribute name="Id">Schedule4</attribute>
- <attribute name="TaskName">Flow4</attribute>
- <attribute name="StartTime">// 08:00:00 000</attribute>
- <attribute name="Depends">Schedule1,Schedule3</attribute>
- <attribute name="RetryInterval">10000</attribute>
- <attribute name="RetryEndTime">// 08:03:00 000</attribute>
- </service>
- </depends>
- </service>
- </manager>
- </server>