JP2010211826A - Message queue control program, message queuing system, and control method for message queuing system - Google Patents

Message queue control program, message queuing system, and control method for message queuing system Download PDF

Info

Publication number
JP2010211826A
JP2010211826A JP2010121797A JP2010121797A JP2010211826A JP 2010211826 A JP2010211826 A JP 2010211826A JP 2010121797 A JP2010121797 A JP 2010121797A JP 2010121797 A JP2010121797 A JP 2010121797A JP 2010211826 A JP2010211826 A JP 2010211826A
Authority
JP
Japan
Prior art keywords
message
storage device
queue
volatile storage
queuing system
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
JP2010121797A
Other languages
Japanese (ja)
Inventor
Hironobu Kitagawa
弘信 北川
Yoshitaka Honishi
義孝 保西
Hideki Kawamoto
英樹 川本
Takayoshi Shitan
崇克 士反
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Fujitsu Ltd
Original Assignee
Fujitsu Ltd
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Fujitsu Ltd filed Critical Fujitsu Ltd
Priority to JP2010121797A priority Critical patent/JP2010211826A/en
Publication of JP2010211826A publication Critical patent/JP2010211826A/en
Pending legal-status Critical Current

Links

Images

Landscapes

  • Techniques For Improving Reliability Of Storages (AREA)

Abstract

<P>PROBLEM TO BE SOLVED: To provide a message queuing system capable of securing a queue on a volatile storage area to accelerate a processing speed, and capable of stopping the queue at an optional time point without requiring a waiting time. <P>SOLUTION: The message queuing system determines which of a volatile storage device 31 or a nonvolatile storage device 33 is used for the management of the queue formed according to the reception of a message, manages the received queue using the volatile storage device 31 when a storage device used for the management of the queue is determined to be the volatile storage device 31 by the determination, stops the queued message of the volatile storage device 31 after being evacuated to the nonvolatile storage device 33 according to a stop indication of the queue, and stops the queued message of the volatile storage device 31 not through the processing of evacuating the message of the volatile storage device 31 queued to the nonvolatile storage device 33 according to the stop indication of the queue when the storage device used for the management of the queue is determined to be the nonvolatile storage device 33 by the determination. <P>COPYRIGHT: (C)2010,JPO&INPIT

Description

本発明は、非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステム、及び、これを制御するメッセージキュー制御プログラム、制御方法に関する。   The present invention relates to a message queuing system for transferring a message between a plurality of applications operating in cooperation by asynchronous communication, a message queue control program for controlling the message queuing system, and a control method.

非同期通信により複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムでは、通信の信頼性を重視する場合には、キュー(メッセージを格納する
コンテナ)を不揮発性の記憶領域(例えばハードディスク上のファイルやデータベース)上
に確保してメッセージを磁気的に保存し、通信の速度を重視する場合にはキューを揮発性の記憶領域(例えばメモリ)上に確保してメッセージを電気的に保存するのが一般的である。ただし、前者の方式では信頼性は確保される反面、メッセージを送受信する毎にファイルに磁気的に読み書きしなければならず、処理速度が遅くなる。一方、後者の方式では、メモリ上での電気的な読み書きで足りるため処理速度は向上する反面、システムダウンが発生した場合にはメッセージが失われ、また、オペレータの操作でキューを停止する際にはメッセージの消失を避けるためにはキューに保存されているメッセージが全て送信されるまで待たなければならない。
In a message queuing system that transfers messages between multiple applications using asynchronous communication, when emphasizing communication reliability, queues (containers for storing messages) are stored in non-volatile storage areas (for example, files on the hard disk or Databases are stored on the database and the messages are stored magnetically, and when communication speed is important, queues are generally stored on a volatile storage area (for example, memory) and the messages are stored electrically. Is. However, the reliability of the former method is ensured, but the file must be magnetically read / written each time a message is transmitted / received, resulting in a slow processing speed. On the other hand, in the latter method, electrical reading and writing on the memory is sufficient, so the processing speed is improved. However, when the system goes down, the message is lost, and when the queue is stopped by the operator's operation To avoid losing messages, you have to wait until all the messages stored in the queue are sent.

特許文献1には、通信障害やキューイングシステムのシステムダウンが発生した後にログファイルに基づいてメッセージを短時間で回復させるため、通常の運用時にはメッセージ内容のバックアップを取得せずに、メッセージのキューへの書き込み、取り出しをログファイルに記録し、取り出されたメッセージの位置を回復用ログ位置情報としてファイルに記録する方法が開示されている。メッセージの回復時には、回復用ログ位置情報以降のログ情報を、再作成した空のキューファイルに反映することでキューファイルを回復する。   In Patent Document 1, a message queue is recovered without acquiring a backup of a message content during normal operation in order to recover a message in a short time based on a log file after a communication failure or a system down of the queuing system occurs. A method is disclosed in which writing to and reading from are recorded in a log file, and the position of the retrieved message is recorded in the file as recovery log position information. When the message is recovered, the queue file is recovered by reflecting the log information after the recovery log position information to the re-created empty queue file.

特開2003−256255号公報JP 2003-256255 A

しかしながら、特許文献1の方法では、キューを不揮発性の記憶領域上に確保するよりは速度が向上するが、メッセージを送受信するたびにログファイルの記録が必要となり、キューを揮発性の記憶領域上に確保するよりは処理速度が落ちるという問題がある。   However, the method of Patent Document 1 is faster than securing the queue on the non-volatile storage area, but requires log file recording each time a message is sent and received, and the queue is stored on the volatile storage area. However, there is a problem that the processing speed is lower than securing it.

本発明は、上記の問題点に鑑みてなされたものであり、その課題は、システムダウン等による不意の障害によるメッセージの消失については対策せずに、キューを揮発性の記憶領域上に確保することにより運用時の処理速度を上げ、かつ、任意の時点で待ち時間なくメッセージを消失させずにキューを停止させることができるメッセージキューイングシステム、及び、そのようなメッセージキューイングシステムを実現できるメッセージキュー制御プログラム及び制御方法を提供することにある。   The present invention has been made in view of the above-mentioned problems, and its problem is to secure a queue on a volatile storage area without taking measures against message loss due to an unexpected failure caused by a system down or the like. The message queuing system that can increase the processing speed during operation and stop the queue without losing the message without waiting at any time, and the message that can realize such a message queuing system A queue control program and a control method are provided.

本発明に係る、非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムを制御するメッセージキュー制御プログ
ラムは、『メッセージの受信に応じて形成するキューを揮発性の記憶装置を用いて管理するか、不揮発性の記憶装置を用いて管理するか判定を行い、当該判定によって、キューの管理に用いる記憶装置が揮発性の記憶装置であると判定された場合は、受信したメッセージを該揮発性の記憶装置を用いて管理し、キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に退避させてから、前記メッセージキューイングシステムを停止し、当該によって、キューの管理に用いる記憶装置が不揮発性の記憶装置であると判定された場合は、前記キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に退避させる処理を経ずに、前記メッセージキューイングシステムを停止する』処理をコンピュータに実行させる。
According to the present invention, a message queue control program for controlling a message queuing system for transferring a message between a plurality of applications operating in cooperation by asynchronous communication is described as follows. Determine whether to manage using a device or a non-volatile storage device. If the determination determines that the storage device used for queue management is a volatile storage device, receive The volatile storage device is used to manage the message, the queued message of the volatile storage device is saved in the nonvolatile storage device in response to a queue stop instruction, and then the message queue Determines that the storage device used for queue management is a non-volatile storage device. When the queue is stopped, the message queuing system is stopped without performing processing for saving the queued message of the volatile storage device to the nonvolatile storage device according to the queue stop instruction. Have the computer execute the process.

また、本発明の他の態様の、非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムを制御するメッセージキュー制御プログラムは、受信したメッセージを揮発性の記憶装置を用いて管理し、キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に待避させ、該揮発性の記憶装置のメッセージの待避時に、待避元の情報を該不揮発性記憶装置に記憶させる処理をコンピュータに実行させる。   According to another aspect of the present invention, there is provided a message queue control program for controlling a message queuing system for transferring a message between a plurality of applications operating in cooperation with asynchronous communication. In response to a queue stop instruction, the queuing message of the volatile storage device is saved in the nonvolatile storage device, and when the message of the volatile storage device is saved, the saving source A computer is caused to execute processing for storing information in the nonvolatile storage device.

また、本発明の、非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムは、揮発性の記憶装置及び不揮発性の記憶装置を備え、メッセージの受信に応じて形成するキューを揮発性の記憶装置を用いて管理するか、不揮発性の記憶装置を用いて管理するか判定を行い、当該判定によって、キューの管理に用いる記憶装置が揮発性の記憶装置であると判定された場合は、受信したメッセージを該揮発性の記憶装置を用いて管理し、キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に退避させてから、停止し、当該判定によって、キューの管理に用いる記憶装置が不揮発性の記憶装置であると判定された場合は、前記キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に退避させる処理を経ずに、停止する。   In addition, a message queuing system for transferring a message between a plurality of applications operating in cooperation by asynchronous communication according to the present invention includes a volatile storage device and a nonvolatile storage device, and is formed in response to reception of a message. To determine whether the queue to be managed is managed using a volatile storage device or a non-volatile storage device, and the storage device used for queue management is a volatile storage device based on the determination. If determined, the received message is managed using the volatile storage device, and the queued message of the volatile storage device is saved to the nonvolatile storage device in response to a queue stop instruction. If the storage device used for queue management is determined to be a non-volatile storage device according to the determination, Depending on the stop instruction, without going through the process of saving queued messages of the volatile storage device in a nonvolatile storage device, and stops.

本発明の他の態様の、非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムは、揮発性の記憶装置及び不揮発性の記憶装置を備え、受信したメッセージを揮発性の記憶装置を用いて管理し、キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に待避させ、該揮発性の記憶装置のメッセージの待避時に、待避元の情報を該不揮発性記憶装置に記憶させる。   According to another aspect of the present invention, a message queuing system for transferring a message between a plurality of applications operating in cooperation by asynchronous communication includes a volatile storage device and a nonvolatile storage device, and volatiles the received message. In response to a queue stop instruction, the queued message of the volatile storage device is saved in the nonvolatile storage device, and the message of the volatile storage device is saved. Sometimes, the information of the saving source is stored in the nonvolatile storage device.

また、本発明の、非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムの制御方法は、メッセージの受信に応じて形成するキューを揮発性の記憶装置を用いて管理するか、不揮発性の記憶装置を用いて管理するか判定を行い、前記判定によって、キューの管理に用いる記憶装置が揮発性の記憶装置であると判定された場合は、受信したメッセージを該揮発性の記憶装置を用いて管理し、キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に退避させてから停止するように、メッセージキューイングシステムを制御し、前記判定によって、キューの管理に用いる記憶装置が不揮発性の記憶装置であると判定された場合は、前記キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に退避させる処理を経ずに停止するように、メッセージキューイングシステムを制御する。   Further, according to the present invention, there is provided a method for controlling a message queuing system for transferring a message between a plurality of applications operating in cooperation by asynchronous communication. A volatile storage device is used to form a queue formed in response to reception of a message. It is determined whether management is performed using a non-volatile storage device, and when the determination determines that the storage device used for queue management is a volatile storage device, the received message is Message queuing is managed using a volatile storage device, and in response to an instruction to stop the queue, the queued message of the volatile storage device is saved to a non-volatile storage device and then stopped. If the storage system used to control the system and manage the queue is determined to be a non-volatile storage device Depending on the queue stop instruction, to stop without going through the process of saving queued messages of the volatile storage device in a nonvolatile storage device, controls the message queuing system.

また、本発明の他の態様の、非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムの制御方法は、受信したメ
ッセージを揮発性の記憶装置を用いて管理し、キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に待避させ、該揮発性の記憶装置のメッセージの待避時に、待避元の情報を該不揮発性記憶装置に記憶するように、メッセージキューイングシステムを制御する。
Further, according to another aspect of the present invention, a method for controlling a message queuing system for transferring a message between a plurality of applications operating in cooperation by asynchronous communication manages a received message using a volatile storage device. In response to an instruction to stop the queue, the queuing message of the volatile storage device is saved in the nonvolatile storage device, and when the message of the volatile storage device is saved, the information of the saving source is stored in the nonvolatile storage device. The message queuing system is controlled to be stored in the sexual storage.

以上のような本発明のプログラム、システム、方法によれば、メッセージキューをメモリ等の揮発性の記憶領域上に確保するため、運用時のメッセージ転送の処理速度を向上させることができ、しかも、キューの停止時にはメッセージを不揮発性の記憶領域に退避させるようにしたため、キューイングシステムを停止してもキューに保存されていたメッセージが消失するのを防ぐことができる。したがって、オペレータは、メッセージの内容を損なうことなく、メッセージキューイングシステムを任意のタイミングで即座に停止させることができ、保守作業や環境設定の変更などをタイムリーに行うことができる。これにより、例えばトラブル復旧時間を短縮することができる。   According to the program, system, and method of the present invention as described above, the message queue is secured on a volatile storage area such as a memory, so that the processing speed of message transfer during operation can be improved, Since the message is saved in the non-volatile storage area when the queue is stopped, the message stored in the queue can be prevented from being lost even when the queuing system is stopped. Therefore, the operator can immediately stop the message queuing system at an arbitrary timing without deteriorating the content of the message, and can perform maintenance work, change of environment settings, etc. in a timely manner. Thereby, trouble recovery time can be shortened, for example.

また、オペレータが操作ミスにより不用意にメッセージキューイングシステムを停止した場合にも、メッセージの消失を防ぐことができる。そして、メッセージキューイングシステムが停止した後にキュー再起動の指示が入力された際に、不揮発性の記憶領域に待避させたメッセージを揮発性のキューに復旧させるようにすれば、キュー再起動後に業務を継続することが可能となる。   Further, even when the operator inadvertently stops the message queuing system due to an operation mistake, it is possible to prevent the message from being lost. When a message for restarting the queue is input after the message queuing system is stopped, the message saved in the non-volatile storage area can be restored to the volatile queue. Can be continued.

本発明の実施形態にかかるメッセージキューイングシステムを利用したネットワークシステムの一例を示すブロック図である。It is a block diagram which shows an example of the network system using the message queuing system concerning embodiment of this invention. 本発明の実施形態にかかるメッセージキュー制御プログラムの起動から停止までの処理内容を示すフローチャートである。It is a flowchart which shows the processing content from starting to a stop of the message queue control program concerning embodiment of this invention. 本発明の実施形態にかかるメッセージキュー制御プログラムの停止後の再起動の処理内容を示すフローチャートである。It is a flowchart which shows the processing content of restart after the stop of the message queue control program concerning embodiment of this invention. 本発明の実施形態にかかるネットワークシステムにおける指示及びメッセージの転送のタイミングを示すタイミングチャートである。It is a timing chart which shows the timing of the transmission of the instruction | indication and message in the network system concerning embodiment of this invention.

以下、本発明にかかるメッセージキューイングシステム及びメッセージキュー制御プログラムの実施形態を図面に基づいて説明する。   Embodiments of a message queuing system and a message queue control program according to the present invention will be described below with reference to the drawings.

最初に、図1に基づいて本実施形態のキューイングシステムが適用されるネットワークシステムの概要を説明する。図1に示されるように、このネットワークシステム1は、メッセージ送信元アプリケーション11が実行される送信元コンピュータ10と、メッセージ送信先アプリケーション21が実行される送信先コンピュータ20と、これらのアプリケーション間のメッセージの非同期通信を制御するメッセージキューイングシステム30と、このメッセージキューイングシステム30に対して指示を与えるオペレータ用コンソール40とを備えている。   First, an outline of a network system to which the queuing system of this embodiment is applied will be described with reference to FIG. As shown in FIG. 1, the network system 1 includes a transmission source computer 10 on which a message transmission source application 11 is executed, a transmission destination computer 20 on which a message transmission destination application 21 is executed, and messages between these applications. A message queuing system 30 for controlling the asynchronous communication and an operator console 40 for giving an instruction to the message queuing system 30.

メッセージキューイングシステム30には、揮発性の記憶領域であるメモリ31と、このシステムを作動させるメッセージキュー制御プログラム32と、不揮発性の記憶領域であるハードディスク33とを備えている。メモリ31上には、メッセージを格納するためのコンテナであるキュー31aが確保され、このキュー31a内にメッセージ送信元アプリケーション11より受信したメッセージが保存される。この例では、メッセージ1,メッセージ2、…、メッセージnが保存されている。また、ハードディスク33には、システムの停止時にキュー内のメッセージを待避させる待避ファイル33aが格納されている
The message queuing system 30 includes a memory 31 that is a volatile storage area, a message queue control program 32 that operates the system, and a hard disk 33 that is a nonvolatile storage area. A queue 31a, which is a container for storing messages, is secured on the memory 31, and messages received from the message transmission source application 11 are stored in the queue 31a. In this example, message 1, message 2,..., Message n are stored. The hard disk 33 stores a save file 33a that saves messages in the queue when the system is stopped.

次に、図2に示すフローチャートにしたがって、メッセージキュー制御プログラム32の処理内容について説明する。   Next, the processing contents of the message queue control program 32 will be described with reference to the flowchart shown in FIG.

オペレータ用コンソール40からキュー起動の指示が入力されると、メッセージキュー制御プログラム32が起動して非同期通信の処理を開始する。まず、メッセージキュー制御プログラム32は、所定の定義ファイルを読み込む(S001)。定義ファイルからは、非同期通信のメッセージキューが揮発性の記憶領域上で運用されるか、不揮発性の記憶領域上で運用されるかの種別が読み取られる。   When a queue activation instruction is input from the operator console 40, the message queue control program 32 is activated to start asynchronous communication processing. First, the message queue control program 32 reads a predetermined definition file (S001). The type of whether the message queue for asynchronous communication is operated on the volatile storage area or the nonvolatile storage area is read from the definition file.

続いて、メッセージキュー制御プログラム32は、キューが揮発性の記憶領域上で運用されるか否か、定義ファイルの内容から判断する(S002)。キューが揮発性の記憶領域上で運用される場合には(S002: Yes)、揮発性の運用がなされる(S003)。すなわち、メッセー
ジキューイングシステム30のメモリ31上にキュー31aが確保される。そして、メッセージ送信元アプリケーション11からメッセージを受信すると、これをキュー31a内に保存し、メッセージ送信先アプリケーション21から要求があると、これを転送する(S004)。揮発性の運用では、メッセージをメモリ31に電気的に保存するため、処理速度を高めることができる。
Subsequently, the message queue control program 32 determines whether or not the queue is operated on a volatile storage area from the contents of the definition file (S002). When the queue is operated on the volatile storage area (S002: Yes), the volatile operation is performed (S003). That is, the queue 31 a is secured on the memory 31 of the message queuing system 30. When a message is received from the message transmission source application 11, it is stored in the queue 31a, and when there is a request from the message transmission destination application 21, it is transferred (S004). In the volatile operation, the message is electrically stored in the memory 31, so that the processing speed can be increased.

上記の送受信の処理をキューの停止の指示が入力されるまで繰り返し実行する(S005: No)。オペレータ用コンソール40からキュー停止の指示が入力されると(S005: Yes)、メ
ッセージキュー制御プログラム32は、キュー31aの情報をメッセージ退避元としてメッセージ内容に追加し(S006)、キュー内に保存されている未転送のメッセージと共に待避ファイル33aに待避させる(S007)。待避が完了すると、キュー内のメッセージを消去し(S008)、メッセージキューイングシステム30を停止させ(S009)、処理を終了する。このように、揮発性の運用の場合には、オペレータがキューの停止を指示すると、キューに保存されているメッセージは待避ファイルに待避されるため、これらのメッセージが送信先アプリケーション21に転送されるのを待たずに、即座にメッセージキューイングシステム30を停止させることができる。したがって、運用時の高速での処理と、停止時の待ち時間の短縮とを両立させることが可能となる。
The above transmission / reception processing is repeatedly executed until an instruction to stop the queue is input (S005: No). When an instruction to stop the queue is input from the operator console 40 (S005: Yes), the message queue control program 32 adds the information of the queue 31a to the message content as the message save source (S006) and saves it in the queue. The saved file 33a is saved together with the untransferred message (S007). When the saving is completed, the message in the queue is deleted (S008), the message queuing system 30 is stopped (S009), and the process is terminated. Thus, in the case of volatile operation, when the operator instructs the queue to stop, the messages stored in the queue are saved in the save file, so these messages are transferred to the destination application 21. The message queuing system 30 can be stopped immediately without waiting. Therefore, it is possible to achieve both high-speed processing during operation and reduction in waiting time during stoppage.

一方、キューが不揮発性の記憶領域上で運用される場合には(S002: No)、不揮発性の運用がなされる(S010)。すなわち、例えば、図1の構成ではメッセージキューイングシステム30のハードディスク33上にキューを確保する。そして、メッセージ送信元アプリケーション11からメッセージを受信すると、これをキュー内に保存し、メッセージ送信先アプリケーション21から要求があると、これを転送する(S011)。不揮発性の運用では、メッセージをハードディスクに対して読み書きするため、処理速度が遅くなるが、不意のシステムダウンの際にもメッセージの消失を防ぐことができる。   On the other hand, when the queue is operated on the nonvolatile storage area (S002: No), the nonvolatile operation is performed (S010). That is, for example, in the configuration of FIG. 1, a queue is secured on the hard disk 33 of the message queuing system 30. When a message is received from the message transmission source application 11, it is stored in the queue, and when there is a request from the message transmission destination application 21, it is transferred (S011). In the non-volatile operation, since the message is read from and written to the hard disk, the processing speed is slow, but the loss of the message can be prevented even when the system is unexpectedly down.

上記の送受信の処理をキューの停止の指示が入力されるまで繰り返し実行する(S012: No)。オペレータ用コンソール40からキュー停止の指示が入力されると(S012: Yes)、メ
ッセージキュー制御プログラム32は、メッセージキューイングシステム30を停止させ(S009)、処理を終了する。このように、不揮発性の運用の場合には、メッセージは不揮発の記憶領域に記憶されているため、キューを停止する場合にも待避は不必要であり、そのままシステムを停止させることができる。
The above transmission / reception process is repeated until an instruction to stop the queue is input (S012: No). When a queue stop instruction is input from the operator console 40 (S012: Yes), the message queue control program 32 stops the message queuing system 30 (S009) and ends the processing. Thus, in the case of nonvolatile operation, since the message is stored in the nonvolatile storage area, saving is not necessary even when the queue is stopped, and the system can be stopped as it is.

オペレータ用コンソール40からキューの再起動の指示が入力されると、図3に示す復旧処理を実行してから図2の処理に戻る。図3の復旧処理では、メッセージキュー制御プログラム32は、待避ファイル33aから待避されたメッセージを取得し(S101)、メッセ
ージの内容から待避元のキューの情報を取得し(S102)、待避元のキューに対して取得したメッセージを送信し(S103)、処理を終了する。これにより、メッセージキュー制御プログラム32は、停止前と同一の状態で処理を続行することが可能となる。
When an instruction to restart the queue is input from the operator console 40, the recovery process shown in FIG. 3 is executed, and the process returns to the process shown in FIG. In the recovery process of FIG. 3, the message queue control program 32 acquires the saved message from the save file 33a (S101), acquires the information of the save source queue from the message content (S102), and saves the save source queue. The acquired message is sent to (S103), and the process is terminated. As a result, the message queue control program 32 can continue processing in the same state as before the stop.

なお、上記の図2及び図3に示すフローチャートのうち、S002はメッセージキュー制御プログラム32がメッセージが保存されるキューが揮発性か不揮発性かを判定するステップに該当し、S004は送信元アプリケーションより受信したメッセージを順次揮発性のキューに保存するステップと揮発性のキューに保存されたメッセージを要求のあった送信先アプリケーションへ転送するステップとに該当し、S007はキュー停止の指示が入力された際に揮発性のキューに保存されているメッセージを不揮発性の記憶領域に待避させるステップに該当し、S009はメッセージの待避終了後にメッセージキューイングシステムを停止させるステップに該当し、S101〜S103は不揮発性の記憶領域に待避させたメッセージを揮発性のキューに復旧させるステップに該当する。   In the flowcharts shown in FIGS. 2 and 3, S002 corresponds to the step in which the message queue control program 32 determines whether the queue in which the message is stored is volatile or non-volatile, and S004 is from the transmission source application. This corresponds to the step of sequentially storing received messages in the volatile queue and the step of transferring the messages stored in the volatile queue to the requested destination application. In S007, an instruction to stop the queue is input Corresponds to the step of saving the message stored in the volatile queue to the nonvolatile storage area, S009 corresponds to the step of stopping the message queuing system after the saving of the message, and S101 to S103 are nonvolatile Corresponds to the step of recovering the message saved in the volatile storage area to the volatile queue That.

次に、上記のメッセージキュー制御プログラム32の処理に沿って揮発性の運用時におけるメッセージと指示の流れを図4のタイミングチャートに基づいて説明する。ここでは、オペレータ用コンソール40、メッセージ送信元アプリケーション11、メッセージキュー31a、メッセージ送信先アプリケーション21、待避ファイル33aの間の指示、メッセージのやりとりについて説明する。なお、図4では、説明を簡単にするため、メッセージキュー制御プログラム32の作用もメッセージキュー31aの欄に記載している。オペレータ用コンソール40からの指令は実際にはメッセージキュー制御プログラム32に渡されるが、図4ではメッセージキュー31aに渡されるものとして記載している。   Next, the flow of messages and instructions during volatile operation along the processing of the message queue control program 32 will be described based on the timing chart of FIG. Here, instructions and message exchanges among the operator console 40, the message transmission source application 11, the message queue 31a, the message transmission destination application 21, and the save file 33a will be described. In FIG. 4, the operation of the message queue control program 32 is also described in the column of the message queue 31a for the sake of simplicity. The command from the operator console 40 is actually passed to the message queue control program 32, but is described as being passed to the message queue 31a in FIG.

オペレータ用コンソール40から揮発性の運用でのキュー起動の指示が入力されると(T01)、メッセージキュー制御プログラム32を介してメッセージキューに対する送受信が
可能となる。メッセージ送信先アプリケーション21は、メッセージキューにメッセージが入力されているか否かを確認し(T02)、入力されるまで待機している。メッセージ送信
元アプリケーション11からメッセージが送信されると(T03)、このメッセージはメッセ
ージキューに保存され(T04)、メッセージ送信先アプリケーション21の処理の度合いに
応じて転送される(T05)。メッセージ送信先アプリケーション21は、メッセージを受信
し(T06)、このメッセージに基づいて事務処理を実行する(T07)。
When an instruction to start a queue in a volatile operation is input from the operator console 40 (T01), transmission / reception to / from the message queue becomes possible via the message queue control program 32. The message transmission destination application 21 checks whether or not a message is input to the message queue (T02), and waits until it is input. When a message is transmitted from the message transmission source application 11 (T03), this message is saved in the message queue (T04) and transferred according to the degree of processing of the message transmission destination application 21 (T05). The message transmission destination application 21 receives the message (T06), and executes paperwork based on this message (T07).

T02〜T07の処理は、キューの停止の指示が入力されるまで繰り返し実行される。メッセージ送信元アプリケーション11は、メッセージを順次送信し、これがメッセージキュー31aに保存される。メッセージ送信先アプリケーション21は、自己の処理速度に応じて、1つのメッセージに基づく事務処理が終了すると、次のメッセージを受信する。このように、メッセージキューを介在させることにより、両アプリケーションを非同期通信により連携して作動させることができる。   The processing from T02 to T07 is repeatedly executed until an instruction to stop the queue is input. The message transmission source application 11 sequentially transmits messages, which are stored in the message queue 31a. The message transmission destination application 21 receives the next message when the paperwork based on one message is completed according to its own processing speed. Thus, by interposing a message queue, both applications can be operated in cooperation by asynchronous communication.

オペレータ用コンソール40からキュー停止の指示が入力されると(T08)、メッセージ
キュー31aに未処理のメッセージが残っている場合には、これらのメッセージを待避ファイル33aに待避させ(T09)、その後に未処理のメッセージを消去し(T10)、システムは停止する(T11)。待避ファイル33aには、メッセージが保存される(T12)。
When a queue stop instruction is input from the operator console 40 (T08), if unprocessed messages remain in the message queue 31a, these messages are saved in the save file 33a (T09), and thereafter The unprocessed message is deleted (T10), and the system is stopped (T11). A message is stored in the save file 33a (T12).

オペレータ用コンソール40からキューの再起動の指示が入力されると(T13)、待避フ
ァイル33aから待避されたメッセージを読み出してキューに取得し(T14, T15)、これをメッセージ送信先アプリケーション21に転送する(T16)。メッセージ送信先アプリケー
ション21は、メッセージを受信し(T17)、このメッセージに基づいて事務処理を実行す
る(T18)。メッセージ送信元アプリケーション11からメッセージが送信されると(T19)、このメッセージはメッセージキューに保存され(T20)、上記と同様順次メッセージ送信先
アプリケーション21に転送されて処理される。
When an instruction to restart the queue is input from the operator console 40 (T13), the saved message is read from the save file 33a and acquired in the queue (T14, T15) and transferred to the message destination application 21. (T16). The message transmission destination application 21 receives the message (T17), and executes paperwork based on this message (T18). When a message is transmitted from the message transmission source application 11 (T19), this message is stored in the message queue (T20), and sequentially transferred to the message transmission destination application 21 and processed in the same manner as described above.

以上説明したように、実施形態のメッセージキューイングシステム30及びメッセージキュー制御プログラム32によれば、揮発性の運用時には、メモリ31上にキュー31aを確保しているため、処理速度を向上させることができ、しかも、キューの停止時にはメッセージを待避ファイル33aに待避させるため、未処理のメッセージを失わずに、システムを任意のタイミングで即座に停止させることができ、保守作業や環境設定の変更などをタイムリーに行うことができる。   As described above, according to the message queuing system 30 and the message queue control program 32 of the embodiment, the queue 31a is secured on the memory 31 during volatile operation, so that the processing speed can be improved. Moreover, since the message is saved in the save file 33a when the queue is stopped, the system can be stopped immediately at an arbitrary timing without losing an unprocessed message, and maintenance work and environment setting change can be performed. Can be done in a timely manner.

なお、実施形態では、キュー停止時に未処理のメッセージをメッセージキューイングシステム30内のハードディスク33に待避させているが、外部に接続されたコンピュータのディスクやメモリ上に確保されたキューに待避させてもよい。   In the embodiment, an unprocessed message is saved in the hard disk 33 in the message queuing system 30 when the queue is stopped, but is saved in a queue secured on a disk or memory of an externally connected computer. Also good.

10 送信元コンピュータ
11 メッセージ送信元アプリケーション
20 送信先コンピュータ
21 メッセージ送信先アプリケーション
30 メッセージキューイングシステム
31 メモリ
31a キュー
32 メッセージキュー制御プログラム
33 ハードディスク
33a 待避ファイル
40 オペレータ用コンソール
DESCRIPTION OF SYMBOLS 10 Source computer 11 Message transmission source application 20 Transmission destination computer 21 Message transmission destination application 30 Message queuing system 31 Memory 31a Queue 32 Message queue control program 33 Hard disk 33a Save file 40 Console for operator

Claims (6)

非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムを制御するメッセージキュー制御プログラムであって、
メッセージの受信に応じて形成するキューを揮発性の記憶装置を用いて管理するか、不揮発性の記憶装置を用いて管理するか判定を行い、
前記判定によって、キューの管理に用いる記憶装置が揮発性の記憶装置であると判定された場合は、受信したメッセージを該揮発性の記憶装置を用いて管理し、キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に退避させてから、前記メッセージキューイングシステムを停止し、
前記判定によって、キューの管理に用いる記憶装置が不揮発性の記憶装置であると判定された場合は、前記キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に退避させる処理を経ずに、前記メッセージキューイングシステムを停止する
処理をコンピュータに実行させることを特徴とするメッセージキュー制御プログラム。
A message queue control program for controlling a message queuing system for transferring a message between a plurality of applications operating in cooperation with asynchronous communication,
It is determined whether the queue formed in response to the message reception is managed using a volatile storage device or a non-volatile storage device,
When it is determined by the determination that the storage device used for queue management is a volatile storage device, the received message is managed using the volatile storage device, and according to the queue stop instruction, Evacuating the queuing message of the volatile storage device to a non-volatile storage device, and then stopping the message queuing system;
If it is determined by the determination that the storage device used for queue management is a nonvolatile storage device, the queuing message of the volatile storage device is stored in a nonvolatile manner in response to the queue stop instruction. A message queue control program for causing a computer to execute a process of stopping the message queuing system without performing a process of saving to a storage device.
非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムを制御するメッセージキュー制御プログラムであって、
受信したメッセージを揮発性の記憶装置を用いて管理し、キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に待避させ、該揮発性の記憶装置のメッセージの待避時に、待避元の情報を該不揮発性記憶装置に記憶させる処理をコンピュータに実行させることを特徴とするメッセージキュー制御プログラム。
A message queue control program for controlling a message queuing system for transferring a message between a plurality of applications operating in cooperation with asynchronous communication,
The received message is managed using a volatile storage device, and in response to a queue stop instruction, the queued message of the volatile storage device is saved in the nonvolatile storage device, and the volatile storage is performed. A message queue control program for causing a computer to execute processing for storing information of a save source in the nonvolatile storage device when a message of the device is saved.
非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムであって、
揮発性の記憶装置及び不揮発性の記憶装置を備え、
メッセージの受信に応じて形成するキューを揮発性の記憶装置を用いて管理するか、不揮発性の記憶装置を用いて管理するか判定を行い、
前記判定によって、キューの管理に用いる記憶装置が揮発性の記憶装置であると判定された場合は、受信したメッセージを該揮発性の記憶装置を用いて管理し、キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に退避させてから、停止し、
前記判定によって、キューの管理に用いる記憶装置が不揮発性の記憶装置であると判定された場合は、前記キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に退避させる処理を経ずに、停止する
ことを特徴とするメッセージキューイングシステム。
A message queuing system for transferring messages between a plurality of applications operating in cooperation with asynchronous communication,
A volatile storage device and a nonvolatile storage device,
It is determined whether the queue formed in response to the message reception is managed using a volatile storage device or a non-volatile storage device,
If it is determined by the determination that the storage device used for queue management is a volatile storage device, the received message is managed using the volatile storage device, and according to the queue stop instruction, Save the queued message of the volatile storage device to the nonvolatile storage device, and then stop,
If it is determined by the determination that the storage device used for queue management is a nonvolatile storage device, the queuing message of the volatile storage device is stored in a nonvolatile manner in response to the queue stop instruction. The message queuing system is characterized in that the message queuing system is stopped without going through the process of saving to the storage device.
非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムであって、
揮発性の記憶装置及び不揮発性の記憶装置を備え、
受信したメッセージを揮発性の記憶装置を用いて管理し、キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に待避させ、該揮発性の記憶装置のメッセージの待避時に、退避元の情報を該不揮発性記憶装置に記憶させる
ことを特徴とするメッセージキューイングシステム。
A message queuing system for transferring messages between a plurality of applications operating in cooperation with asynchronous communication,
A volatile storage device and a nonvolatile storage device,
The received message is managed using a volatile storage device, and in response to a queue stop instruction, the queued message of the volatile storage device is saved in the nonvolatile storage device, and the volatile storage is performed. A message queuing system, wherein information of a save source is stored in the nonvolatile storage device when a message of the device is saved.
非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムの制御方法であって、
メッセージの受信に応じて形成するキューを揮発性の記憶装置を用いて管理するか、不
揮発性の記憶装置を用いて管理するか判定を行い、
前記判定によって、キューの管理に用いる記憶装置が揮発性の記憶装置であると判定された場合は、受信したメッセージを該揮発性の記憶装置を用いて管理し、キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に退避させてから停止するように、前記メッセージキューイングシステムを制御し、
前記判定によって、キューの管理に用いる記憶装置が不揮発性の記憶装置であると判定された場合は、前記キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に退避させる処理を経ずに停止するように、前記メッセージキューイングシステムを制御する
ことを特徴とするメッセージキューイングシステムの制御方法。
A method for controlling a message queuing system for transferring a message between a plurality of applications operating in cooperation with asynchronous communication,
It is determined whether the queue formed in response to the message reception is managed using a volatile storage device or a non-volatile storage device,
When it is determined by the determination that the storage device used for queue management is a volatile storage device, the received message is managed using the volatile storage device, and according to the queue stop instruction, Controlling the message queuing system to evacuate queued messages of the volatile storage device to a non-volatile storage device and then stop,
If it is determined by the determination that the storage device used for queue management is a nonvolatile storage device, the queuing message of the volatile storage device is stored in a nonvolatile manner in response to the queue stop instruction. A method for controlling a message queuing system, comprising: controlling the message queuing system so that the message queuing system is stopped without performing a process of saving to the storage device.
非同期通信により連携して作動する複数のアプリケーション間でメッセージを転送するメッセージキューイングシステムの制御方法であって、
受信したメッセージを揮発性の記憶装置を用いて管理し、キューの停止指示に応じて、該揮発性の記憶装置のキューイングされたメッセージを不揮発性の記憶装置に待避させ、該揮発性の記憶装置のメッセージの待避時に、待避元の情報を該不揮発性記憶装置に記憶するように、前記メッセージキューイングシステムを制御する
ことを特徴とするメッセージキューイングシステムの制御方法。
A method for controlling a message queuing system for transferring a message between a plurality of applications operating in cooperation with asynchronous communication,
The received message is managed using a volatile storage device, and in response to a queue stop instruction, the queued message of the volatile storage device is saved in the nonvolatile storage device, and the volatile storage is performed. A method for controlling a message queuing system, comprising: controlling the message queuing system so as to store information on a save source in the nonvolatile storage device when the message of the device is saved.
JP2010121797A 2010-05-27 2010-05-27 Message queue control program, message queuing system, and control method for message queuing system Pending JP2010211826A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP2010121797A JP2010211826A (en) 2010-05-27 2010-05-27 Message queue control program, message queuing system, and control method for message queuing system

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP2010121797A JP2010211826A (en) 2010-05-27 2010-05-27 Message queue control program, message queuing system, and control method for message queuing system

Related Parent Applications (1)

Application Number Title Priority Date Filing Date
JP2006044980A Division JP2007226385A (en) 2006-02-22 2006-02-22 Message queue control program and message queuing system

Publications (1)

Publication Number Publication Date
JP2010211826A true JP2010211826A (en) 2010-09-24

Family

ID=42971837

Family Applications (1)

Application Number Title Priority Date Filing Date
JP2010121797A Pending JP2010211826A (en) 2010-05-27 2010-05-27 Message queue control program, message queuing system, and control method for message queuing system

Country Status (1)

Country Link
JP (1) JP2010211826A (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2013111801A1 (en) 2012-01-24 2013-08-01 国立大学法人筑波大学 Triblock copolymer and use thereof
JP2020071729A (en) * 2018-10-31 2020-05-07 富士通株式会社 Processing framework cooperation device, processing framework cooperation method and processing framework cooperation program

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH06198981A (en) * 1992-12-28 1994-07-19 Canon Inc Recording device
JPH10243190A (en) * 1997-02-27 1998-09-11 Ricoh Co Ltd Facsimile equipment
JP2001022543A (en) * 1999-07-13 2001-01-26 Seiko Epson Corp Network print system
WO2002054263A1 (en) * 2000-12-28 2002-07-11 Future System Consulting Corp. Framework system

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH06198981A (en) * 1992-12-28 1994-07-19 Canon Inc Recording device
JPH10243190A (en) * 1997-02-27 1998-09-11 Ricoh Co Ltd Facsimile equipment
JP2001022543A (en) * 1999-07-13 2001-01-26 Seiko Epson Corp Network print system
WO2002054263A1 (en) * 2000-12-28 2002-07-11 Future System Consulting Corp. Framework system

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
WO2013111801A1 (en) 2012-01-24 2013-08-01 国立大学法人筑波大学 Triblock copolymer and use thereof
US9849186B2 (en) 2012-01-24 2017-12-26 University Of Tsukuba Triblock copolymer and use therefor
JP2020071729A (en) * 2018-10-31 2020-05-07 富士通株式会社 Processing framework cooperation device, processing framework cooperation method and processing framework cooperation program
JP7087921B2 (en) 2018-10-31 2022-06-21 富士通株式会社 Processing framework linkage device, processing framework linkage method and processing framework linkage program

Similar Documents

Publication Publication Date Title
US9104629B2 (en) Autonomic reclamation processing on sequential storage media
JP2007226385A (en) Message queue control program and message queuing system
US11126422B2 (en) Program update system, control system, mobile body, program update method, recording medium
JP4834566B2 (en) Apparatus and method for forcibly terminating a thread blocked by I / O work
US8601182B2 (en) Data communication control device
JP2007323507A (en) Storage system and data processing method using the same
US20170322948A1 (en) Streaming data reading method based on embedded file system
JP2009075716A (en) Disk array device
US10956149B2 (en) Process control system, process control apparatus and program update method
JP2009163658A (en) Input/output controller and its firmware update method
JP2010211826A (en) Message queue control program, message queuing system, and control method for message queuing system
JP2006338197A (en) Transaction control program, transaction control method, and transaction processing system
US8078771B2 (en) Sending large command descriptor block (CDB) structures in serial attached SCSI (SAS) controller
JP2006119786A (en) Method for allocating resource of storage device, and storage device
CN111857579B (en) SSD disk controller resetting method, SSD disk controller resetting system, SSD disk controller resetting device and readable storage medium
JP2001285394A (en) Device and method for information processing and recording medium
JP2013192092A (en) On-vehicle device
JP2008262287A (en) Communication control device and communication log storage method
JP5076400B2 (en) Data processing system and information processing apparatus
WO2014203728A1 (en) Message control system, message control device, message control method, and program
JP5036615B2 (en) Control device
US20240330467A1 (en) Information processing device, network device, and method for updating network device firmware
US7466648B2 (en) Data transfer in a messaging system
JP5492721B2 (en) Computer and program
JP2005107819A (en) Fail/safe method for computer network system

Legal Events

Date Code Title Description
A131 Notification of reasons for refusal

Free format text: JAPANESE INTERMEDIATE CODE: A131

Effective date: 20100914

A521 Written amendment

Free format text: JAPANESE INTERMEDIATE CODE: A523

Effective date: 20101115

A02 Decision of refusal

Free format text: JAPANESE INTERMEDIATE CODE: A02

Effective date: 20101221