JP2008197980A - Failure analysis file weight reduction device for distributed parallel program, its method and its program - Google Patents

Failure analysis file weight reduction device for distributed parallel program, its method and its program Download PDF

Info

Publication number
JP2008197980A
JP2008197980A JP2007033456A JP2007033456A JP2008197980A JP 2008197980 A JP2008197980 A JP 2008197980A JP 2007033456 A JP2007033456 A JP 2007033456A JP 2007033456 A JP2007033456 A JP 2007033456A JP 2008197980 A JP2008197980 A JP 2008197980A
Authority
JP
Japan
Prior art keywords
file
failure analysis
shared
information
program
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.)
Granted
Application number
JP2007033456A
Other languages
Japanese (ja)
Other versions
JP4858779B2 (en
Inventor
Masashi Ikuta
将史 生田
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.)
NEC Corp
Original Assignee
NEC Corp
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 NEC Corp filed Critical NEC Corp
Priority to JP2007033456A priority Critical patent/JP4858779B2/en
Publication of JP2008197980A publication Critical patent/JP2008197980A/en
Application granted granted Critical
Publication of JP4858779B2 publication Critical patent/JP4858779B2/en
Expired - Fee Related legal-status Critical Current
Anticipated expiration legal-status Critical

Links

Images

Landscapes

  • Debugging And Monitoring (AREA)

Abstract

<P>PROBLEM TO BE SOLVED: To reduce the weight of a failure analysis file for a distributed parallel program to effectively utilize the storage capacity of a storage medium and also shorten I/O (input/output) time. <P>SOLUTION: The file weight-reducing device outputs the same content of a shared memory independently to individual core. gmem files without duplicate output thereof to a failure analysis file of each process, and performs writing into gmlist so that the failure analysis file of each process refers to the core. gmem file concerned. According to this, the file weight can be reduced in either case input or output, and processing can be simplified. <P>COPYRIGHT: (C)2008,JPO&INPIT

Description

本発明は、複数プロセスが共有メモリを使って動作するような並列プログラムの障害解析ファイルの入出力ファイル軽量化装置に関し、より詳細には、障害解析ファイルの入出力を軽量化する用途のファイル軽量化装置に関する。   The present invention relates to an input / output file weight reduction device for a failure analysis file of a parallel program in which a plurality of processes operate using a shared memory. More specifically, the present invention relates to a lightweight file for use in reducing input / output of a failure analysis file. The present invention relates to a conversion device.

一般に、プロセスの実行中に障害が発生した場合は、実行中のメモリイメージ(コンテキスト、スタック、データ)をファイルに出力し、そのファイルを解析することによって障害の原因を調査するという方法がとられている。(このファイルを以下、障害解析ファイルと呼ぶ。)
なお、障害解析ファイルは、プロセス1つを単位とし、1つのプロセスに対し1つの障害解析ファイルが作成される。
In general, when a failure occurs during process execution, the memory image (context, stack, data) being executed is output to a file, and the cause of the failure is investigated by analyzing the file. ing. (This file is hereinafter referred to as the failure analysis file.)
A failure analysis file is created for each process with one process as a unit.

ここで、分散並列プログラムの場合、プログラムを複数のプロセスに分けて実行するが、障害は1つのプロセスだけに原因があって発生するとは限らない。   Here, in the case of a distributed parallel program, the program is divided into a plurality of processes and executed, but a failure does not always occur due to only one process.

よって、すべてのプロセスについて障害解析ファイルを出力し、それらを解析する必要がある。   Therefore, it is necessary to output failure analysis files for all processes and analyze them.

しかし、分散並列プログラムの実装方式によっては、プロセス間のデータ転送を円滑に行うためにメモリの一部を共有し合っている場合がある。   However, depending on the implementation method of the distributed parallel program, a part of the memory may be shared to facilitate data transfer between processes.

このような実装方式において、分散並列プログラムに障害が発生して障害解析ファイルに実行中のメモリイメージを出力する場合は、例えそれが共有しているメモリ部分の内容であったとしても、すべてのプロセスの障害解析ファイルに重複して出力されることになる。   In such an implementation method, when a failure occurs in the distributed parallel program and the memory image being executed is output to the failure analysis file, even if it is the contents of the shared memory part, all Duplicate output to the process failure analysis file.

そのため、障害解析ファイルのサイズの総量が大きくなり入出力にも時間がかかるという問題がある。   Therefore, there is a problem that the total size of the failure analysis file becomes large and input / output takes time.

たとえば、4プロセスで分散並列実行されているプログラムで障害が発生した場合を考える。   For example, consider a case where a failure occurs in a program that is distributed and executed in four processes.

図5に示すようにそれぞれのプロセスの実行中のメモリイメージがcore.proc.110、core.proc.120、core.proc.130及びcore.proc.140の4つの障害解析ファイルに出力される。   As shown in FIG. 5, a memory image during execution of each process is represented by core. proc. 110, core. proc. 120, core. proc. 130 and core. proc. 140 are output to four failure analysis files.

このとき、共有しているメモリ部分のイメージであるgmem201、gmem202、gmem203及びgmem204は、すべてのプロセスの障害解析ファイルに対して出力される。   At this time, gmem201, gmem202, gmem203, and gmem204, which are images of the shared memory portion, are output to the failure analysis files of all processes.

結果として、図で示されるようにすべての障害解析ファイルに重複して、共有しているメモリ部分のイメージが出力されるという問題がある。   As a result, as shown in the figure, there is a problem that an image of the shared memory portion is output in duplicate in all failure analysis files.

ここで、従来のgmem出力時の動作手順について図6を用いて説明する。   Here, the operation procedure at the time of conventional gmem output will be described with reference to FIG.

まず、core.procのgmlistに仮想アドレスとgmemのオフセットサイズを書き出す(S31)。次に、core.proc.xxxにgmemの内容を書き出す(S32)。   First, core. The virtual address and the offset size of gmem are written to proc gmlist (S31). Next, core. proc. The contents of gmem are written in xxx (S32).

そして、上記(S31)及び(S32)を全ての共有メモリに対して処理が行われるまで繰り返す(S33)という、手順になっている。   The procedure (S31) and (S32) is repeated until processing is performed on all shared memories (S33).

このような出力部の動作手順を有する従来の障害解析ファイル出力システムは、前記図5に示すように各core.procファイルに重複して共有メモリの内容を出力することになる(例えば特許文献1参照)。   The conventional failure analysis file output system having such an operation procedure of the output unit has the core. The contents of the shared memory are output in duplicate with the proc file (see, for example, Patent Document 1).

併せて、従来のgmem入力時の動作手順につき図7を用いて説明する。   In addition, a conventional operation procedure when gmem is input will be described with reference to FIG.

まず、core.procのgmlistに仮想アドレスとgmemのオフセットサイズを読み込む(S41)。   First, core. The virtual address and the offset size of gmem are read into proc gmlist (S41).

次に、core.proc.xxxにgmemのオフセットから、サイズ分のデータを仮想アドレスに読み込む(S42)。   Next, core. proc. Data of the size is read into the virtual address from the offset of gmem to xxx (S42).

そして、上記(S41)及び(S42)を全ての共有メモリに対して処理が行われるまで繰り返す(S43)という、手順になっている。
特開平11−312103号公報
Then, the procedure (S43) and (S42) are repeated (S43) until processing is performed on all the shared memories.
JP 11-312103 A

上記の従来技術ではcore.procファイルに重複して共有メモリの内容を入出力している。   In the above prior art, core. The contents of the shared memory are input / output redundantly in the proc file.

よって、入力の際も、出力の際も記憶メディアの記憶容量が有効活用できないという問題が生じていた。加えて、I/O(Input/Output)時間が長くなるという問題も生じていた。   Therefore, there has been a problem that the storage capacity of the storage medium cannot be effectively utilized both at the time of input and at the time of output. In addition, the problem that I / O (Input / Output) time becomes long also occurred.

ここで、前記のような重複する出力を避けるための手段として、障害解析ファイルのうち重複している部分については、あるプロセスが代表して出力するという方法が考えられる。もっとも、次のような複数の理由により実現することは困難であった。   Here, as a means for avoiding the above-described overlapping output, a method in which a part of the failure analysis file outputs a representative of the overlapping portion can be considered. However, it was difficult to realize for several reasons as follows.

まず、共有メモリ部分の論理アドレスがすべてのプロセスで同一とは限らないという問題がある。   First, there is a problem that the logical address of the shared memory portion is not always the same in all processes.

また、どのプロセスが代表して出力するかを決めたとしても、更に、すべてのプロセスに代表プロセスを通知する手段が必要であるという問題があった。   Further, even if it is determined which process is representatively output, there is a further problem that means for notifying the representative process to all processes is necessary.

加えて、1つのプロセスが代表して障害解析ファイルのうち重複している部分を書き出す場合は、その代表プロセスは、結局従来と変わらない処理を行うことになる。   In addition, when one process represents and writes a duplicated portion of the failure analysis file, the representative process eventually performs the same processing as before.

よって、出力時間の短縮が期待できないこととなる。   Therefore, the output time cannot be shortened.

また、仮に上記の問題を解決することが可能となり、重複出力を避けることができたとしても、前記代表プロセスが出力した障害解析ファイルのうち重複している部分の情報を読み込むときに復元する手段が必要である。   In addition, even if it becomes possible to solve the above-described problem and it is possible to avoid duplicate output, means for restoring when reading the information of the duplicate part of the failure analysis file output by the representative process is required.

そこで、本発明は上記の問題を解決し、各プロセスの障害解析ファイルに同じ共有メモリの内容を重複して出力することのない、分散並列プログラムの障害解析ファイル軽量化装置、その方法及びそのプログラムを提供することを目的とする。   Accordingly, the present invention solves the above-described problem, and reduces the weight of a failure analysis file for a distributed parallel program, which does not duplicately output the same shared memory contents to the failure analysis file of each process, its method, and its program The purpose is to provide.

本発明によれば、分散並列プログラムの障害解析ファイルの軽量化を行うファイル軽量化装置であって、共有メモリの情報を障害解析プログラムに書き込む共有メモリ情報リスト化手段と、共有情報をファイルとして新たに生成する共有情報ファイル化手段と、前記リスト情報に基づき前記共有情報ファイルを共有して利用する手段と、を備えることを特徴とするファイル軽量化装置が提供される。   According to the present invention, there is provided a file weight reduction device for reducing the weight of a failure analysis file of a distributed parallel program, a shared memory information listing means for writing shared memory information to a failure analysis program, and new sharing information as a file. There is provided a file weight reduction apparatus comprising: a shared information file generating means for generating a shared information file; and a means for sharing and using the shared information file based on the list information.

上記のファイル軽量化装置その方法及びそのプログラムにおいて、前記共有メモリ情報リスト化手段において、前記障害解析プログラムに書き込む情報は、共有メモリの仮想アドレス、ファイル名及びサイズであるようにしてもよい。   In the file weight reduction apparatus and method and the program thereof, the information written in the failure analysis program in the shared memory information listing unit may be a virtual address, a file name, and a size of the shared memory.

本発明によれば、各プロセスの障害解析ファイルに同じ共有メモリの内容を重複して出力しないことが可能となる。そのため、障害解析ファイル全体のサイズを小さくすることができ、これにより記憶メディアの記憶容量を有効活用することができる。   According to the present invention, it is possible to prevent the same shared memory contents from being duplicated in the failure analysis file of each process. As a result, the size of the entire failure analysis file can be reduced, thereby making it possible to effectively use the storage capacity of the storage medium.

次に、本発明の最良の形態について図面を用いて説明する。   Next, the best mode of the present invention will be described with reference to the drawings.

[実施形態]
(実施形態の構成)
本発明の実施形態における障害解析ファイル群の構成を図1に示す。また該障害解析ファイル群を含む全体の構成を図2に示す。
[Embodiment]
(Configuration of the embodiment)
The configuration of the failure analysis file group in the embodiment of the present invention is shown in FIG. FIG. 2 shows the overall configuration including the failure analysis file group.

図1の障害解析ファイル群は、プロセスごとの障害解析ファイルであるcore.procと、共有メモリ部分の障害解析ファイルであるcore.gmemから構成されている。   The failure analysis file group in FIG. 1 includes core. proc, and core.core, which is a failure analysis file of the shared memory portion. gmem.

本発明の実施形態は、図2で示すように、障害解析ファイル出力部である、コンテキスト出力部101、スタック出力部102、gmlist出力部103、core.gmem確認部104、gmem作成・出力部105、及びデータ出力部106、更に障害解析ファイル入力部である、コンテキスト入力部201、スタック入力部202、core.gmem.list入力部203、core.gmem入力部204及びデータ入力部205、加えて障害解析ファイル群301を備えている。   As shown in FIG. 2, the embodiment of the present invention includes a context output unit 101, a stack output unit 102, a gmlist output unit 103, a core. gmem confirmation unit 104, gmem creation / output unit 105, data output unit 106, and failure analysis file input unit, context input unit 201, stack input unit 202, core. gmem. list input unit 203, core. A gmem input unit 204, a data input unit 205, and a failure analysis file group 301 are provided.

(実施形態の動作)
次に、本発明の実施形態の動作について詳細に説明する。
(Operation of the embodiment)
Next, the operation of the embodiment of the present invention will be described in detail.

動作の説明には、図1、図2に加え図3に示すフローチャートを用いる。まず、コンテキスト出力部101とスタック出力部102は、障害解析ファイル群301中のcore.procファイルにそれぞれコンテキストセグメントとスタックセグメントを出力する。   In the description of the operation, the flowchart shown in FIG. 3 is used in addition to FIGS. First, the context output unit 101 and the stack output unit 102 include the core. The context segment and stack segment are output to the proc file.

次に、gmlist出力部103が共有メモリの仮想アドレス、core.gmemファイル名、core.gmemサイズを障害解析ファイル群301内のcore.procファイルのgmlistセグメントに出力する(S10)。   Next, the gmlist output unit 103 receives the virtual address of the shared memory, core. gmem file name, core. gmem size is set to core. It is output to the gmlist segment of the proc file (S10).

さらに、図2のcore.gmem確認部104がcore.gmem.xxxというファイルがすでに存在するかどうかを調べる(S11)。   Furthermore, the core. gmem confirmation unit 104 receives core. gmem. It is checked whether a file xxx already exists (S11).

ここで、すでにcore.gmem.xxxというファイルが存在する場合は、同じ内容のファイルが重複するのを避けるため、ファイルの作成は、行わない。そして、次の共有メモリ部分の処理に移る。   Here, core. gmem. If a file xxx exists, the file is not created in order to avoid duplication of files having the same contents. Then, the process proceeds to the next shared memory portion.

一方、いまだ存在しない場合は、core.gmem作成・出力部105でcore.gmem.xxxというファイルを作成する(S12)。   On the other hand, if it does not exist yet, core. In the gmem creation / output unit 105, core. gmem. A file called xxx is created (S12).

そして更に、gmem作成・出力部105は共有メモリの内容をcore.gmem.xxxに書き出す(S13)。   Further, the gmem creation / output unit 105 stores the contents of the shared memory as core. gmem. Write out to xxx (S13).

上記した共有メモリを書き出す作業である、(S10)、(S11)、(S12)及び(S13)をすべての共有メモリに対して順次行う。そして全ての共有メモリに対して、処理を完了した段階で共有メモリを書き出す作業は終了となる(S14)。   The operations (S10), (S11), (S12), and (S13), which are operations for writing the shared memory, are sequentially performed on all the shared memories. For all the shared memories, the work of writing the shared memory is completed when the processing is completed (S14).

なお、core.gmem.xxxというファイル名は他のcore.gmemファイル名と重ならないようにする必要がある。   Core. gmem. The file name “xxx” is another core. It should not overlap with the gmem file name.

そのためにはxxxの部分はたとえば共有メモリのメモリリージョン番号を付けるなどしてユニークになるようにする。   For this purpose, the xxx portion is made unique by, for example, attaching a memory region number of the shared memory.

最後に、図2のデータ出力部106で障害解析ファイル群301内のcore.procファイルにデータセグメントを出力する(S15)。   Finally, the data output unit 106 of FIG. The data segment is output to the proc file (S15).

一方、デバッグ時に障害解析ファイルを読み込む時の動作について、図2を用いて説明する。   On the other hand, the operation when reading the failure analysis file during debugging will be described with reference to FIG.

まず、コンテキスト入力部201とスタック入力部202は、障害解析ファイル群301内のコンテキストセグメントとスタックセグメントをメモリに読み込む。   First, the context input unit 201 and the stack input unit 202 read the context segment and stack segment in the failure analysis file group 301 into the memory.

次に、core.gmlist入力部203が障害解析ファイル群301内の、core.procファイルのgmlistセグメントから共有メモリの展開されるべき仮想アドレス、実体が書き込まれているcore.gmemファイル名、およびサイズを読み込む(S21)。   Next, core. The gmlist input unit 203 stores the core. The virtual address to be expanded of the shared memory and the core.core in which the entity is written from the gmlist segment of the proc file. The gmem file name and size are read (S21).

続いて、該読み込んだ情報をもとに、core.gmem入力部204では該当するcore.gmemファイル名を仮想アドレスに読み込む(S22)。   Subsequently, based on the read information, core. In the gmem input unit 204, the corresponding core. The gmem file name is read into the virtual address (S22).

そして、この共有メモリを読み込む作業、(S21)及び(S22)をすべての共有メモリに対して順次行う(S23)。   Then, the operation of reading this shared memory, (S21) and (S22) are sequentially performed on all the shared memories (S23).

最後に、データ入力部205が、障害解析ファイル群301内の、core.procファイルのデータセグメントをメモリに読み込む(S24)。   Finally, the data input unit 205 displays the core. The data segment of the proc file is read into the memory (S24).

(実施形態の効果)
第1の効果は、障害解析ファイル全体のサイズを小さくすることができることである。
(Effect of embodiment)
The first effect is that the size of the entire failure analysis file can be reduced.

その理由は、各プロセスの障害解析ファイルに同じ共有メモリの内容を重複して出力していたのをやめて、図1のようにそれらを独立して個別のcore.gmemファイルに出力し、各プロセスの障害解析ファイルではcore.gmemファイルを参照するようにgmlistに書き込むことによって重複を避けているからである。   The reason is that the same shared memory contents are not duplicated and output to the failure analysis file of each process, and each core. output to the gmem file, and core. This is because duplication is avoided by writing to gmlist so as to refer to the gmem file.

第2の効果は、障害解析ファイルの入出力にかかる時間を短縮できることである。その理由は上述したように障害解析ファイル全体のサイズが小さくなるためである。   The second effect is that the time taken to input / output the failure analysis file can be shortened. The reason is that the size of the entire failure analysis file is reduced as described above.

上記2つの効果により、本発明の目的である、入力の際も、出力の際も記憶メディアの記憶容量が有効活用できないという問題及びI/O(Input/Output)時間が長くなるという問題を解決することが可能となる。   The above two effects solve the problems of the present invention that the storage capacity of the storage medium cannot be used effectively at the time of input and output, and that the I / O (Input / Output) time becomes long. It becomes possible to do.

更に、本発明では、core.procファイルと共有化されているcore.gmemファイルが、ファイル内で別個のものとして区別されている。よって、core.procファイルを削除する際に、共有化されているファイルが一緒に削除されてしまうという心配がない。   Furthermore, in the present invention, the core. core.shared with the proc file. The gmem file is distinguished as separate within the file. Therefore, core. When deleting the proc file, there is no concern that the shared file will be deleted together.

そのため共有化ファイルの事を考慮せずにcore.procファイルを削除できるという効果もある。   Therefore, without considering the shared file, core. There is also an effect that the proc file can be deleted.

加えて本発明では、共有化されているcore.gmemファイル自体を分割するという処理を行っていない。よって、該core.gmemファイルを復号するといった処理も必要ないというメリットもある。   In addition, in the present invention, the shared core. The process of dividing the gmem file itself is not performed. Therefore, the core. There is also an advantage that processing such as decoding the gmem file is not necessary.

これにより、障害解析ファイルをメモリ上に展開する際の処理が迅速となると言う効果もある。   As a result, there is also an effect that the processing when the failure analysis file is expanded on the memory becomes quick.

本発明は、複数のプロセスが共有メモリを使って動作するような並列プログラムの障害解析ファイルを軽量化する用途に適用できる。   The present invention can be applied to the use of reducing a failure analysis file of a parallel program in which a plurality of processes operate using a shared memory.

本発明の障害解析ファイル群の構成を表す概念図である。It is a conceptual diagram showing the structure of the failure analysis file group of this invention. 本発明の基本的構成を表す図である。It is a figure showing the basic composition of the present invention. 本発明の出力部における動作手順を表すフローチャートである。It is a flowchart showing the operation | movement procedure in the output part of this invention. 本発明の入力部における動作手順を表すフローチャートである。It is a flowchart showing the operation | movement procedure in the input part of this invention. 従来技術の障害解析ファイル群の構成を表す概念図である。It is a conceptual diagram showing the structure of the failure analysis file group of a prior art. 従来技術の出力部における動作手順を表すフローチャートである。It is a flowchart showing the operation | movement procedure in the output part of a prior art. 従来技術の入力部における動作手順を表すフローチャートである。It is a flowchart showing the operation | movement procedure in the input part of a prior art.

符号の説明Explanation of symbols

101 コンテキスト出力部
102 スタック出力部
103 gmlist出力部
104 core.gmem確認部
105 gmem作成・出力部
106 データ出力部
201 コンテキスト入力部
202 スタック入力部
203 core.gmem.list入力部
204 core.gmem入力部
205 データ入力部
301 障害解析ファイル群
101 Context output unit 102 Stack output unit 103 gmlist output unit 104 core. gmem confirmation unit 105 gmem creation / output unit 106 data output unit 201 context input unit 202 stack input unit 203 core. gmem. list input unit 204 core. gmem input unit 205 data input unit 301 failure analysis file group

Claims (11)

分散並列プログラムの障害解析ファイルの軽量化を行うファイル軽量化装置であって、
共有メモリの情報を障害解析プログラムにリスト情報として書き込む共有メモリ情報リスト化手段と、
共有情報をファイルとして新たに生成する共有情報ファイル化手段と、
前記リスト情報に基づき前記共有情報ファイルを共有して利用する手段と、
を備えることを特徴とするファイル軽量化装置。
A file weight reduction device for reducing the weight of a failure analysis file of a distributed parallel program,
Shared memory information listing means for writing shared memory information to the failure analysis program as list information;
A shared information file generation means for newly generating shared information as a file;
Means for sharing and using the shared information file based on the list information;
A file lightening device comprising:
請求項1に記載のファイル軽量化装置であって、
すでに、同一内容の共有情報ファイルが存在する場合は、新たに共有情報ファイル化を行わないことを特徴とするファイル軽量化装置。
The file lightening device according to claim 1,
A file weight reduction apparatus characterized in that, when a shared information file having the same content already exists, no new shared information file is created.
請求項1又は2に記載のファイル軽量化装置であって、
前記共有メモリ情報リスト化手段において、前記障害解析プログラムに書き込む情報は、共有メモリの仮想アドレス、ファイル名及びサイズであることを特徴とするファイル軽量化装置。
The file lightening device according to claim 1 or 2,
In the shared memory information listing means, the information to be written into the failure analysis program is a virtual address, a file name and a size of the shared memory.
請求項1乃至3の何れか1項に記載のファイル軽量化装置であって、
前記共有して利用するとは、障害解析ファイルを記録媒体上に出力することを指すことを特徴とするファイル軽量化装置。
The file lightening device according to any one of claims 1 to 3,
The shared use refers to outputting a failure analysis file on a recording medium.
請求項1乃至3の何れか1項に記載のファイル軽量化装置であって、
前記共有して利用するとは、障害解析ファイルをメモリ上に展開することを指すことを特徴とするファイル軽量化装置。
The file lightening device according to any one of claims 1 to 3,
The shared use means that the failure analysis file is expanded on a memory.
分散並列プログラムの障害解析ファイルの軽量化を行うファイル軽量化方法であって、
共有メモリの情報を障害解析プログラムにリスト情報として書き込む共有メモリ情報リスト化ステップと、
共有情報をファイルとして新たに生成する共有情報ファイル化ステップと、
前記リスト情報に基づき前記共有情報ファイルを共有して利用するステップと、
を備えることを特徴とするファイル軽量化方法。
A file weight reduction method for reducing a failure analysis file of a distributed parallel program,
A shared memory information listing step for writing shared memory information to the failure analysis program as list information;
A shared information file generation step for newly generating shared information as a file;
Sharing and using the shared information file based on the list information;
A method for reducing the weight of a file.
請求項6に記載のファイル軽量化方法であって、
すでに、同一内容の共有情報ファイルが存在する場合は、新たに共有情報ファイル化を行わないことを特徴とするファイル軽量化方法。
The file lightening method according to claim 6,
A file weight reduction method characterized in that, when a shared information file having the same content already exists, a new shared information file is not created.
請求項6又は7に記載のファイル軽量化方法であって、
前記共有メモリ情報リスト化ステップにおいて、前記障害解析プログラムに書き込む情報は、共有メモリの仮想アドレス、ファイル名及びサイズであることを特徴とするファイル軽量化方法。
The file lightening method according to claim 6 or 7,
In the shared memory information listing step, the information to be written to the failure analysis program is a virtual address, a file name, and a size of a shared memory.
請求項6乃至8の何れか1項に記載のファイル軽量化方法であって、
前記共有して利用するとは、障害解析ファイルを記録媒体上に出力することを指すことを特徴とするファイル軽量化方法。
The file lightening method according to any one of claims 6 to 8,
The shared use refers to outputting a failure analysis file on a recording medium.
請求項6乃至8の何れか1項に記載のファイル軽量化方法であって、
前記共有して利用するとは、障害解析ファイルをメモリ上に展開することを指すことを特徴とするファイル軽量化方法。
The file lightening method according to any one of claims 6 to 8,
The shared use refers to developing a failure analysis file on a memory, and a method for reducing the weight of a file.
コンピュータに請求項6から10の何れか1項に記載のファイル軽量化方法を実行させることを特徴とするプログラム。   A program for causing a computer to execute the file lightening method according to any one of claims 6 to 10.
JP2007033456A 2007-02-14 2007-02-14 Device for reducing failure analysis file of distributed parallel program, method and program thereof Expired - Fee Related JP4858779B2 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
JP2007033456A JP4858779B2 (en) 2007-02-14 2007-02-14 Device for reducing failure analysis file of distributed parallel program, method and program thereof

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
JP2007033456A JP4858779B2 (en) 2007-02-14 2007-02-14 Device for reducing failure analysis file of distributed parallel program, method and program thereof

Publications (2)

Publication Number Publication Date
JP2008197980A true JP2008197980A (en) 2008-08-28
JP4858779B2 JP4858779B2 (en) 2012-01-18

Family

ID=39756854

Family Applications (1)

Application Number Title Priority Date Filing Date
JP2007033456A Expired - Fee Related JP4858779B2 (en) 2007-02-14 2007-02-14 Device for reducing failure analysis file of distributed parallel program, method and program thereof

Country Status (1)

Country Link
JP (1) JP4858779B2 (en)

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2013003934A (en) * 2011-06-20 2013-01-07 Hitachi Ltd Memory management method, computer, and memory management program

Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH05100919A (en) * 1991-10-07 1993-04-23 Nec Corp Dump data file managing system
JPH08212103A (en) * 1995-02-07 1996-08-20 Matsushita Electric Ind Co Ltd Test data preparing method for multithread processor
JPH09245009A (en) * 1996-03-08 1997-09-19 Nec Corp Fault log information management system for information processing system
JPH10240563A (en) * 1997-02-27 1998-09-11 Nec Corp Debugging support system

Patent Citations (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH05100919A (en) * 1991-10-07 1993-04-23 Nec Corp Dump data file managing system
JPH08212103A (en) * 1995-02-07 1996-08-20 Matsushita Electric Ind Co Ltd Test data preparing method for multithread processor
JPH09245009A (en) * 1996-03-08 1997-09-19 Nec Corp Fault log information management system for information processing system
JPH10240563A (en) * 1997-02-27 1998-09-11 Nec Corp Debugging support system

Cited By (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP2013003934A (en) * 2011-06-20 2013-01-07 Hitachi Ltd Memory management method, computer, and memory management program

Also Published As

Publication number Publication date
JP4858779B2 (en) 2012-01-18

Similar Documents

Publication Publication Date Title
US20110055500A1 (en) Data Storage Snapshot With Reduced Copy-On-Write
US8095510B2 (en) Data restoration in a storage system using multiple restore points
JP2004258944A (en) Storage device and method for managing it
CN110659256B (en) Multi-computer room synchronization method, computing device and computer storage medium
CN107562578B (en) Snapshot creating method, device, equipment and storage medium for stored data
JP2006294218A (en) Nonvoaltile memory device and its multipage copyback method
CN102999564B (en) Write the method for data, device and equipment
JP2009301194A (en) System for controlling semiconductor memory device
US6665773B1 (en) Simple and scalable RAID XOR assist logic with overlapped operations
JP2007207120A (en) System verifying apparatus and its verification method
US10740202B2 (en) System and method for efficient comparison of mirrored storage devices
JP4858779B2 (en) Device for reducing failure analysis file of distributed parallel program, method and program thereof
WO2014069007A1 (en) Storage device and data backup method
JP2010176512A (en) Storage device, storage device control method, and storage device control program
JP2012194930A (en) Device for collecting fault analysis information
JP2010152781A (en) Backup server device, backup/restore program, and backup/restore method
JP4877006B2 (en) Disk array device and data backup system
JP2008257410A (en) System design verification device
JP6648596B2 (en) File system control device, storage system, file system control method, and program
JP2014182460A (en) Storage control apparatus, and storage system
JP2011018187A (en) Test method, test program, test device and test system
JP5333639B2 (en) Storage device, storage device control method, and storage device control program
JP4494950B2 (en) Table switching program and computer system
JP5447841B2 (en) Information processing apparatus, debug information acquisition method, and debug information acquisition program
JP2006227888A (en) Backup system and method

Legal Events

Date Code Title Description
RD04 Notification of resignation of power of attorney

Free format text: JAPANESE INTERMEDIATE CODE: A7424

Effective date: 20080619

A977 Report on retrieval

Free format text: JAPANESE INTERMEDIATE CODE: A971007

Effective date: 20100401

RD03 Notification of appointment of power of attorney

Free format text: JAPANESE INTERMEDIATE CODE: A7423

Effective date: 20100908

RD04 Notification of resignation of power of attorney

Free format text: JAPANESE INTERMEDIATE CODE: A7424

Effective date: 20100908

A131 Notification of reasons for refusal

Free format text: JAPANESE INTERMEDIATE CODE: A131

Effective date: 20110107

TRDD Decision of grant or rejection written
A01 Written decision to grant a patent or to grant a registration (utility model)

Free format text: JAPANESE INTERMEDIATE CODE: A01

Effective date: 20111006

A01 Written decision to grant a patent or to grant a registration (utility model)

Free format text: JAPANESE INTERMEDIATE CODE: A01

A61 First payment of annual fees (during grant procedure)

Free format text: JAPANESE INTERMEDIATE CODE: A61

Effective date: 20111019

R150 Certificate of patent or registration of utility model

Free format text: JAPANESE INTERMEDIATE CODE: R150

FPAY Renewal fee payment (event date is renewal date of database)

Free format text: PAYMENT UNTIL: 20141111

Year of fee payment: 3

LAPS Cancellation because of no payment of annual fees