KR100800044B1 - Method for automatic checkpoint file management - Google Patents

Method for automatic checkpoint file management Download PDF

Info

Publication number
KR100800044B1
KR100800044B1 KR1020060073741A KR20060073741A KR100800044B1 KR 100800044 B1 KR100800044 B1 KR 100800044B1 KR 1020060073741 A KR1020060073741 A KR 1020060073741A KR 20060073741 A KR20060073741 A KR 20060073741A KR 100800044 B1 KR100800044 B1 KR 100800044B1
Authority
KR
South Korea
Prior art keywords
checkpoint file
checkpoint
job
file
extracted
Prior art date
Application number
KR1020060073741A
Other languages
Korean (ko)
Inventor
이영주
Original Assignee
한국과학기술정보연구원
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 한국과학기술정보연구원 filed Critical 한국과학기술정보연구원
Priority to KR1020060073741A priority Critical patent/KR100800044B1/en
Application granted granted Critical
Publication of KR100800044B1 publication Critical patent/KR100800044B1/en

Links

Images

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/10File systems; File servers
    • G06F16/16File or folder operations, e.g. details of user interfaces specifically adapted to file systems
    • G06F16/162Delete operations
    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F16/00Information retrieval; Database structures therefor; File system structures therefor
    • G06F16/10File systems; File servers
    • G06F16/17Details of further file system functions
    • G06F16/1727Details of free space management performed by the file system

Landscapes

  • Engineering & Computer Science (AREA)
  • Theoretical Computer Science (AREA)
  • Data Mining & Analysis (AREA)
  • Databases & Information Systems (AREA)
  • Physics & Mathematics (AREA)
  • General Engineering & Computer Science (AREA)
  • General Physics & Mathematics (AREA)
  • Human Computer Interaction (AREA)
  • Information Retrieval, Db Structures And Fs Structures Therefor (AREA)
  • Retry When Errors Occur (AREA)

Abstract

A method for automatically managing checkpoint files is provided to keep only the optimal checkpoint files in a restricted storage space by selecting and removing only the terminated tasks after checking a current executing state of the task in the used checkpoint file. It is checked whether the current checkpoint file uses the storage space over a predetermined setting value(S10). The current checkpoint file is searched if the storage space is over the setting value(S20). A task ID of the searched checkpoint file is extracted(S30). The checkpoint file of the terminated task is removed by determining whether the task corresponding to each extracted task ID is currently executed(S60). A checkpoint file management operation is terminated if the storage space of the checkpoint file is below the setting value.

Description

체크포인트 파일 자동 관리 방법{Method for automatic checkpoint file management}Method for automatic checkpoint file management}

도 1은 일반적인 체크포인트 파일 사용을 예로써 도시한 예시도,1 is an exemplary diagram illustrating the use of a general checkpoint file as an example;

도 2는 본 발명에 따른 체크포인트 파일 자동 관리 방법을 나타낸 흐름도이다.2 is a flowchart illustrating a checkpoint file automatic management method according to the present invention.

본 발명은 체크포인트 파일 자동 관리 방법 및 이를 실현하기 위한 프로그램을 기록한 컴퓨터 판독가능한 기록매체에 관한 것으로, 더욱 상세하게는 현재 사용되고 있는 체크포인트 파일에 있어서, 해당 체크포인트 파일에 대한 작업의 실행 여부를 확인하고 이를 기반으로 종료된 불필요한 작업을 판단하여 해당 체크포인트 파일을 삭제함으로써, 한정된 저장 공간 내 최적의 체크포인트 파일만을 유지할 수 있도록 관리하는 체크포인트 파일 자동 관리 방법 및 이를 실현하기 위한 프로그램을 기록한 컴퓨터 판독 가능한 기록 매체에 관한 것이다. The present invention relates to a method for automatically managing a checkpoint file and a computer-readable recording medium having recorded thereon a program for realizing the same. More particularly, the present invention relates to whether a checkpoint file is executed or not. Checkpoint file automatic management method that manages to maintain only the optimal checkpoint file in the limited storage space by checking and determining unnecessary work terminated based on this, and the computer for recording the program for realizing it A readable recording medium.

컴퓨터 시스템 설계 시, 오류가 발생할 경우를 미리 고려하여 대처 방안을 마련하여 오류 발생 시에도 그에 따른 영향을 받지 않고 정상적인 수행을 계속할 수 있도록 하는 컴퓨터 시스템 내 신뢰화 기술이 보편화되어 있다.When designing a computer system, reliable technologies in computer systems are widely used to prepare countermeasures in advance in case of an error, so that normal operation can be continued without an effect even when an error occurs.

이러한 시스템 내 신뢰화 기술의 한 예로 체크포인트 파일을 들 수 있는데, 체크포인트 파일(checkpoint file)은 컴퓨터 프로그램의 실행 중에 메모리 상태를 검사하고 파일로 기록하여 실행 중에 정지되거나 중단된 프로그램을 해당 파일을 이용하여 저장된 부분부터 다시 시작할 수 있도록 하는 기술(또는 저장 장치)이다. 보다 상세하게는 어떤 기본 파일에 대한 작업 시간이 수시간 내지 수일 연속 진행되는 경우에 불의의 사고 또는 장애로 인한 파일의 파괴로 인하여 모든 작업이 원점으로 돌아가는 상황을 예방하기 위하여 작업 진행 중 일정한 주기를 정하여 진행 중인 작업의 중간 결과를 파일 형태, 즉 체크포인트 파일로 저장하여둠으로써, 장애 발생 시에 최후에 저장된 체크포인트 파일을 기반으로 진행 중인 작업 파일을 복원할 수 있도록 한다. An example of such an in-system trust technique is a checkpoint file. A checkpoint file checks the memory state and writes it to a file while the computer program is running. It is a technology (or storage device) that allows a user to start again from a stored part. More specifically, if the work time on a basic file is several hours to several days in a row, a certain period of work is performed in order to prevent a situation in which all the work is returned to the origin due to the destruction of the file due to an accident or failure. By saving the intermediate result of the work in progress as a file, that is, a checkpoint file, it is possible to restore the work file in progress based on the last saved checkpoint file when a failure occurs.

도 1은 일반적인 체크포인트 파일에 대한 사용 방법을 예로써 도시한 것으로, 도시된 바와 같이 작업 (가)는 실행 종료될 때까지 일정 주기의 체크포인트 A, B, C를 두고 각 체크포인트 시점까지의 작업 내용을 저장(a, b, c)하여 둔다. 작업 (가)의 수행 중에 장애가 발생하여 작업이 중단되는 경우, 최후에 저장된 체크포인트 파일을 기반으로 작업을 복구하는데, 예로써 설명하면 A 시점에서 해당 시점까지의 작업 결과물을 저장하고, 저장 직후 장애가 발생하게 되어 작업이 중단되면, 이후 해당 작업은 A 시점에서 저장된 체크포인트 파일(a)을 기반으로 작업 (가)를 복구시키게 된다. FIG. 1 shows an example of a method for using a general checkpoint file. As shown in FIG. 1, the task (a) has a period of checkpoints A, B, and C until the end of execution. Save your work (a, b, c). If a task is interrupted due to a failure during the execution of the task (a), the task is restored based on the last saved checkpoint file. For example, the task result is saved from the point A to the point in time. If the job is interrupted due to occurrence, then the job will recover the job (a) based on the checkpoint file (a) stored at the time A.

그러나 종래의 체크포인트 파일은 해당 작업이 종료되는 경우에 자동으로 함께 삭제될 수 있도록 구성되었다. 이는 곧 장애로 인하여 해당 작업이 비정상적으로 종료되는 경우, 작업의 종료와 동시에 해당 작업에 대한 체크포인트 파일이 삭제됨으로써 해당 작업을 복구할 수 없게 됨을 의미한다. However, the conventional checkpoint file is configured to be deleted together automatically when the task ends. This means that if the task is abnormally terminated due to a failure, the task cannot be recovered because the checkpoint file for the task is deleted at the same time as the task is terminated.

따라서, 작업 종료와 함께 자동 삭제되도록 구현되어 있는 종래의 체크포인트 파일의 문제점을 개선한 컴퓨터 시스템의 보다 향상된 신뢰성 기술 방안이 모색되어야할 것이다.Therefore, there should be a search for an improved reliability technique of a computer system that improves the problem of the conventional checkpoint file which is implemented to be automatically deleted at the end of the operation.

따라서, 본 발명은 상기와 같은 종래의 문제점을 해결하기 위해 안출된 것으로서, 본 발명은 사용 중인 체크포인트 파일에서의 해당 작업에 대한 현재 실행 상태를 확인하여 종료된 작업만을 선별하고 이를 삭제함으로써 최적의 체크포인트 파일만을 유지하도록 관리하는 체크포인트 파일 자동 관리 방법을 제공하는 데 그 목적이 있다. Accordingly, the present invention has been made to solve the above-mentioned conventional problems, the present invention is to check the current execution status of the operation in the checkpoint file in use to select only the terminated task and delete the optimal Its purpose is to provide an automatic checkpoint file management method that maintains only checkpoint files.

상기한 바와 같은 목적을 달성하기 위한 본 발명에 따른 체크포인트 파일 자동 관리 방법은, 현재 사용되고 있는 체크포인트 파일이 특정 설정값 이상의 저장 공간을 사용하고 있는지 여부를 판단하는 확인 단계; 상기 판단 수행 결과, 체크포인트 파일 사용량이 상기 특정 설정값 이상인 경우, 현재 사용 중인 체크포인트 파 일을 검색하는 검색 단계; 상기 검색된 체크포인트 파일에 대한 작업 아이디를 추출하는 아이디 추출 단계; 및 상기 추출된 각 작업 아이디에 대응되는 작업이 현재 실행 중인지 여부를 판단하여, 실행이 종료된 작업에 대한 체크포인트 파일 삭제를 수행하는 삭제 단계;를 포함하는 것을 특징으로 한다. Checkpoint file automatic management method according to the present invention for achieving the above object comprises a check step of determining whether the currently used checkpoint file is using a storage space of a specific set value or more; A search step of searching for a checkpoint file currently in use when the checkpoint file usage is equal to or greater than the specific setting value as a result of the determination; ID extraction step of extracting a job ID for the searched checkpoint file; And a deletion step of determining whether a job corresponding to each of the extracted job IDs is currently being executed, and performing a checkpoint file deletion for the job whose execution has ended.

또한, 본 발명은 체크포인트 파일을 자동으로 관리함에 있어서, 현재 사용되고 있는 체크포인트 파일이 특정 설정값 이상의 저장 공간을 사용하고 있는지 여부를 판단하는 확인 단계; 상기 판단 수행 결과, 체크포인트 파일 사용량이 상기 특정 설정값 이상인 경우, 현재 사용 중인 체크포인트 파일을 검색하는 검색 단계; 상기 검색된 체크포인트 파일에 대한 작업 아이디를 추출하는 아이디 추출 단계; 및 상기 추출된 각 작업 아이디에 대응되는 작업이 현재 실행 중인지 여부를 판단하여, 실행이 종료된 작업에 대한 체크포인트 파일 삭제를 수행하는 삭제 단계;를 실현하기 위한 프로그램을 기록한 컴퓨터 판독 가능한 기록 매체를 개시하고 있다.The present invention also provides a method for automatically managing a checkpoint file, comprising: a checking step of determining whether a checkpoint file currently being used uses a storage space equal to or greater than a specific setting value; A search step of searching for a checkpoint file currently in use when the checkpoint file usage is equal to or greater than the specific setting value as a result of the determination; ID extraction step of extracting a job ID for the searched checkpoint file; And a deletion step of determining whether a job corresponding to each of the extracted job IDs is currently being executed, and performing a checkpoint file deletion for the job whose execution has ended; a computer-readable recording medium having recorded thereon a program for realizing It is starting.

이하, 본 발명의 일 실시예에 의한 체크포인트 파일 자동 관리 방법에 대하여 첨부된 도면을 참조하여 상세히 설명하기로 한다. Hereinafter, a method for automatically managing a checkpoint file according to an embodiment of the present invention will be described in detail with reference to the accompanying drawings.

도 1은 본 발명에 따른 체크포인트 파일 자동 관리 방법을 나타낸 것으로,이를 각 단계별로 살펴보면 다음과 같다. 1 is a diagram illustrating a checkpoint file automatic management method according to the present invention.

체크포인트 파일에 대한 자동 관리는 체크포인트 파일의 사용량이 기설정된 특정값 이상인 경우에만 전개될 수 있다. 따라서, 본 발명에 따른 체크포인트 파일 자동 관리 방법은 먼저, 체크포인트 파일 사용량이 정해진 특정값 이상인지 여부를 확인하는 과정으로부터 시작된다(S10). 컴퓨터 시스템에서의 작업을 수행하는 과정에서 해당 작업에 대한 일정 시간 단위의 체크포인트를 두어 실행 중인 해당 작업 과정을 디스크(disk)와 같은 저장 장치에 파일 형태로 저장해두게 되는데, 이를 체크포인트 파일이라 칭한다. 이러한 체크포인트 파일을 저장하기 위한 저장 공간은 한정되어 있으며, 만일 다수의 체크포인트 파일이 관리되지 않은 상태로 유지된다면, 현재 실행 상태가 아닌 체크포인트 파일 저장에 따른 저장 공간 낭비의 문제를 초래하게 된다. 뿐만 아니라 다른 새로운 체크포인트 파일을 만들 수 없게 된다. 이를 위해 본 발명에 따른 체크포인트 파일 자동 관리 방법은 체크포인트 파일 저장을 위해 할당된 저장 영역에서 체크포인트 파일 사용량이 해당 영역의 정해진 특정값 이상을 차지하게 되는 경우, 체크포인트 파일 관리를 위한 과정을 전개하게 된다. 이때, 과정 전개의 관건이 되는 체크포인트 파일 사용량에 대한 특정값은 체크포인트 파일 관리 방법을 실현하기 위한 프로그램 개발시 설정되는 값으로, 이후에도 사용자에 의해 변경 가능토록 하는 것이 바람직할 것이다.Automatic management of the checkpoint file can be deployed only when the usage of the checkpoint file is more than a predetermined value. Therefore, the automatic checkpoint file management method according to the present invention starts with a process of checking whether the checkpoint file usage is equal to or greater than a predetermined specific value (S10). During the work on the computer system, a checkpoint of a certain time is placed on the work, and the running work is stored in a file on a storage device such as a disk. This is called a checkpoint file. . The storage space for storing such checkpoint files is limited, and if a large number of checkpoint files remain unmanaged, it causes a problem of wasting storage space due to storing the checkpoint file instead of the current execution state. . In addition, you will not be able to create other new checkpoint files. To this end, the automatic checkpoint file management method according to the present invention provides a process for managing a checkpoint file when the checkpoint file usage occupies a predetermined value or more in a corresponding area in a storage area allocated for storing the checkpoint file. Will develop. In this case, the specific value for the checkpoint file usage, which is a key factor of the process development, is a value that is set at the time of program development for realizing the checkpoint file management method.

체크포인트 파일 사용량이 설정된 특정값에 미치지 못한 경우, 현재 저장 장치 내에 저장된 체크포인트 파일은 관리가 필요치 않은 것으로 판단하여 체크포인트 파일 관리를 위한 동작을 중단한다. 그러나, 체크포인트 파일 사용량이 설정된 특정값 이상인 것으로 확인된 경우에는 현재 저장 장치 내에 저장된 체크포인트 파일을 관리 대상으로서 판단하여, 본 발명에 따른 관리 절차를 수행하게 된다. If the checkpoint file usage does not reach a predetermined value, the checkpoint file stored in the current storage device is determined to be unnecessary and stops the operation for checkpoint file management. However, when it is determined that the checkpoint file usage is equal to or greater than a predetermined value, the checkpoint file currently stored in the storage device is determined as a management target, and the management procedure according to the present invention is performed.

체크포인트 파일에 대한 관리 절차는 다음과 같다. The management procedure for the checkpoint file is as follows.

먼저, 사용되고 있는 체크포인트 파일에 대한 검색을 수행한다(S20). 즉, 현재 저장 장치 내에 저장된 체크포인트 파일을 검색한다. 예로써, 사용자는 체크포인트 파일 관리 환경 하에서 체크포인트 파일 검색을 위한 특정 명령어를 입력하고, 그 결과로써 현재 사용되고 있는 체크포인트 파일에 대한 리스트를 제공받게 된다.First, a search for a checkpoint file being used is performed (S20). That is, the checkpoint file stored in the current storage device is searched. For example, a user may input a specific command for searching a checkpoint file under a checkpoint file management environment, and as a result, may be provided with a list of currently used checkpoint files.

상기 제20단계(S20)의 수행 결과로서 사용되고 있는 체크포인트 파일이 검색되면 이후 해당 체크포인트 파일에 대한 작업 아이디를 추출한다(S30). When a checkpoint file being used as a result of performing the twentieth step S20 is searched for, a job ID for the corresponding checkpoint file is extracted (S30).

작업 아이디 추출 과정이 완료되면 추출된 작업 아이디 수를 확인하여, 확인 결과에 따른 관리 절차 진행 여부를 판단한다(S40). 상세하게는, 추출된 작업 아이디 수를 확인하고, 확인 결과 추출된 작업 아이디가 존재하지 않는 경우 체크포인트 파일 관리를 위한 동작을 중단한다. 추출된 작업 아이디 수가 존재하는 경우에는 체크포인트 파일 관리를 위한 다음의 동작을 진행한다.When the task ID extraction process is completed, the number of extracted task IDs is checked to determine whether to proceed with a management procedure according to the verification result (S40). In detail, the number of extracted job IDs is checked, and if the extracted job ID does not exist, the operation for checkpoint file management is stopped. If the number of extracted job IDs exists, the following operation is performed for checkpoint file management.

추출된 작업 아이디가 존재하는 것으로 판단되면 다음 동작으로서, 추출된 작업 아이디에 대한 해당 작업이 현재 실행 중인지 여부를 판단하고(S50), 판단 결과를 토대로 해당 작업에 할당된 체크포인트 파일 삭제를 수행한다(S60). 보다 상세하게는, 추출된 작업 아이디에 있어서, 작업 아이디에 대한 해당 작업의 현재 실행 여부를 확인하여 작업 아이디에 대한 해당 작업이 현재 실행 중인 경우 해당 작업에 대한 체크포인트 파일 삭제 절차를 생략하고, 다음의 작업 아이디에 대한 작업의 실행 여부 확인을 진행한다. 작업 아이디에 대한 해당 작업이 현재 종료되어 사용되지 않는 경우, 해당 작업을 위해 사용되고 있는 체크포인트 파일은 삭제 절차를 수행한다. 이때 체크포인트 파일을 삭제하거나 삭제 절차를 생략하는 단계는 추출된 작업 아이디 수만큼 그 과정을 반복하여 수행하도록 한다. If it is determined that the extracted job ID exists, as the next operation, it is determined whether the corresponding job for the extracted job ID is currently running (S50), and the checkpoint file allocated to the job is deleted based on the determination result. (S60). More specifically, in the extracted job ID, check whether the corresponding job for the job ID is currently executed, and if the corresponding job for the job ID is currently running, skip the procedure for deleting the checkpoint file for the job. Proceed with checking whether the task is executed for the task ID. If the corresponding job for the job ID is currently terminated and is not used, the checkpoint file used for the job is deleted. At this time, the step of deleting the checkpoint file or omitting the deletion procedure is to repeat the process by the number of extracted job IDs.

상기의 체크포인트 파일 관리를 위한 각 단계는 하나의 프로그램으로서 개발 생성되어 수행되도록 하며, 해당 프로그램의 자동 실행을 위해 특정 구동 환경 내 파일 내에 삽입될 수 있다. 예로써, 해당 프로그램은 crontab 파일 내에 삽입되어 자동 실행될 수 있도록 하는데, 여기서 crontab은 명령을 자동으로 수행 가능하도록 하는 것으로 사용자로부터 지정받은 날짜와 시간에 해당 명령을 수행하는 기능을 수행한다. 즉, 상기한 바와 같은 체크포인트 파일 관리 방법은, 하나의 프로그램으로서 개발되어 crontab 파일 내에 삽입하여 실행함으로써 현재 사용되고 있는 체크포인트에 대한 파일 관리를 주기적으로 수행할 수 있도록 한다.Each step for managing the checkpoint file may be developed and executed as a program, and may be inserted into a file in a specific driving environment for automatic execution of the corresponding program. For example, the program can be inserted into a crontab file so that it can be executed automatically. In this case, crontab executes a command automatically, and executes the command at the date and time specified by the user. That is, the checkpoint file management method as described above is developed as a program and inserted into the crontab file to be executed so that file management for the checkpoint currently being used can be periodically performed.

상술한 바와 같은 본 발명에 따른 체크포인트 파일 자동 관리 방법은 프로그램으로 구현되어 컴퓨터로 판독 가능한 기록 매체, 즉 램(RAM, Random Access Memory), 롬(ROM, Read Only Memory), 하드 디스크, 광 디스크 등에 저장될 수 있다. The automatic checkpoint file management method according to the present invention as described above is implemented as a program, a computer-readable recording medium, that is, random access memory (RAM), read only memory (ROM), hard disk, optical disk And the like.

이상, 체크포인트 파일 자동 관리 방법에 대하여 그 바람직한 실시예를 참조하여 설명하였다. 본 발명은 본 발명이 속하는 기술 분야에서 통상의 지식을 가진 자가 본 발명의 본질적인 특성에서 벗어나지 않는 범위 내에서 변형된 형태로 구현될 수 있음을 이해할 수 있을 것이다. 그러므로 개시된 실시예는 한정적인 관점이 아니라 설명적인 관점에서 고려되어야 할 것이며, 본 발명의 범위는 전술한 설명이 아니라 특허청구범위에 나타나 있으며, 그와 동등한 범위 내에 있는 모든 차이점은 본 발명에 포함된 것으로 해석되어야 할 것이다. The automatic checkpoint file management method has been described with reference to the preferred embodiment. It will be appreciated that the present invention can be implemented in a modified form without departing from the essential characteristics of the present invention by those skilled in the art. Therefore, the disclosed embodiments should be considered in descriptive sense only and not for purposes of limitation, and the scope of the present invention is shown in the claims rather than the foregoing description, and all differences within the equivalent scope are included in the present invention. Should be interpreted as.

상술한 바와 같이, 본 발명에 따른 체크포인트 파일 자동 관리 방법에 의하면, 체크포인트 파일 내 존재하는 작업에 대한 현재 실행 상태를 확인하여 불필요한 작업에 대한 작업만을 선별하여 해당 체크포인트 파일을 삭제하도록 함으로써, 한정된 저장 공간 내 최적의 체크포인트 파일만을 유지할 수 있도록 하며, 나아가 저장 공간의 효율적인 사용을 도모할 수 있도록 한다.As described above, according to the automatic checkpoint file management method according to the present invention, by checking the current execution state of the existing task in the checkpoint file by selecting only the task for unnecessary tasks to delete the checkpoint file, It is possible to maintain only the optimal checkpoint file in the limited storage space and further promote efficient use of the storage space.

또한, 작업 종료 여부와는 상관없이 체크포인트 파일을 유지 및 관리함으로써, 비정상적인 작업 종료 시, 체크포인트 파일 자동 삭제로 인한 작업 복구의 문제점을 해소시킬 수 있다.In addition, by maintaining and managing the checkpoint file regardless of whether the job is terminated, it is possible to solve the problem of job recovery due to automatic deletion of the checkpoint file at the end of an abnormal job.

Claims (9)

체크포인트 파일을 자동으로 관리하는 방법으로서,As a way to automatically manage checkpoint files, 현재 사용되고 있는 체크포인트 파일이 특정 설정값 이상의 저장 공간을 사용하고 있는지 여부를 판단하는 확인 단계;A checking step of determining whether a checkpoint file currently being used uses a storage space equal to or greater than a specific setting value; 상기 판단 수행 결과, 체크포인트 파일 사용량이 상기 특정 설정값 이상인 경우, 현재 사용 중인 체크포인트 파일을 검색하는 검색 단계;A search step of searching for a checkpoint file currently in use when the checkpoint file usage is equal to or greater than the specific setting value as a result of the determination; 상기 검색된 체크포인트 파일에 대한 작업 아이디를 추출하는 아이디 추출 단계; 및ID extraction step of extracting a job ID for the searched checkpoint file; And 상기 추출된 각 작업 아이디에 대응되는 작업이 현재 실행 중인지 여부를 판단하여, 실행이 종료된 작업에 대한 체크포인트 파일 삭제를 수행하는 삭제 단계;A deletion step of determining whether a job corresponding to each of the extracted job IDs is currently being executed and deleting a checkpoint file for the job whose execution has ended; 를 포함하는 것을 특징으로 하는 체크포인트 파일 자동 관리 방법.Checkpoint file automatic management method comprising a. 제1항에 있어서,The method of claim 1, 상기 확인 단계는 수행 결과, 체크포인트 파일 사용량이 설정된 특정값에 미치지 못하는 경우, 체크포인트 파일 관리 동작을 종료하는 단계를 더 포함하는 것을 특징으로 하는 체크포인트 파일 자동 관리 방법.The checking step further comprises the step of ending the checkpoint file management operation, if the checkpoint file usage does not reach a predetermined value as a result of the execution. 제1항 또는 제2항에 있어서,The method according to claim 1 or 2, 상기 아이디 추출 단계는 작업 아이디 추출 결과, 추출된 작업 아이디가 존재하지 않는 경우 해당 체크포인트 자동 관리 동작을 종료하는 단계를 더 포함하는 것을 특징으로 하는 체크포인트 파일 자동 관리 방법.The ID extraction step further comprises the step of terminating the checkpoint automatic management operation if the extracted job ID does not exist, the task ID extraction method further comprises. 제1항에 있어서,The method of claim 1, 상기 삭제 단계는 상기 아이디 추출 단계에서 추출된 작업 아이디의 수만큼 반복하여 실행되는 것을 특징으로 하는 체크포인트 파일 자동 관리 방법.And the deleting step is repeated as many times as the number of job IDs extracted in the ID extracting step. 제1항에 있어서, The method of claim 1, 상기 체크포인트 파일 자동 관리 방법은 자동 실행 파일 내에 구현 삽입되어 지정된 시간에 자동 실행되는 것을 특징으로 하는 체크포인트 파일 관리 방법.The automatic checkpoint file management method is embedded in an automatic execution file and automatically executed at a designated time. 체크포인트 파일 관리를 수행함에 있어서,In performing checkpoint file management, 현재 사용되고 있는 체크포인트 파일이 특정 설정값 이상의 저장 공간을 사용하고 있는지 여부를 판단하는 확인 단계;A checking step of determining whether a checkpoint file currently being used uses a storage space equal to or greater than a specific setting value; 상기 판단 수행 결과, 체크포인트 파일 사용량이 상기 특정 설정값 이상인 경우, 현재 사용 중인 체크포인트 파일을 검색하는 검색 단계;A search step of searching for a checkpoint file currently in use when the checkpoint file usage is equal to or greater than the specific setting value as a result of the determination; 상기 검색된 체크포인트 파일에 대한 작업 아이디를 추출하는 아이디 추출 단계; 및ID extraction step of extracting a job ID for the searched checkpoint file; And 상기 추출된 각 작업 아이디에 대응되는 작업이 현재 실행 중인지 여부를 판단하여, 실행이 종료된 작업에 대한 체크포인트 파일 삭제를 수행하는 삭제 단계;A deletion step of determining whether a job corresponding to each of the extracted job IDs is currently being executed and deleting a checkpoint file for the job whose execution has ended; 를 실현하기 위한 프로그램을 기록한 컴퓨터 판독 가능한 기록 매체.A computer-readable recording medium having recorded thereon a program for realizing the same. 제6항에 있어서,The method of claim 6, 상기 확인 단계는 수행 결과, 체크포인트 파일 사용량이 설정된 특정값에 미치지 못하는 경우, 체크포인트 파일 관리 동작을 종료하는 단계를 더 포함하여 실현하기 위한 프로그램을 기록한 컴퓨터 판독 가능한 기록 매체.And the checking step further comprises the step of terminating the checkpoint file management operation when the checkpoint file usage does not reach a predetermined value as a result of the execution. 제6항 또는 제7항에 있어서,The method according to claim 6 or 7, 상기 아이디 추출 단계는 작업 아이디 추출 결과, 추출된 작업 아이디가 존재하지 않는 경우 해당 체크포인트 자동 관리 동작을 종료하는 단계를 더 포함하여 실현하기 위한 프로그램을 기록한 컴퓨터 판독 가능한 기록 매체.The step of extracting the ID further comprises the step of terminating the checkpoint automatic management operation when the extracted job ID does not exist, as a result of the job ID extraction. 제6항에 있어서,The method of claim 6, 상기 삭제 단계는 상기 아이디 추출 단계에서 추출된 작업 아이디의 수만큼 반복하여 실행되는 것을 특징으로 하여 실현하기 위한 프로그램을 기록한 컴퓨터 판독 가능한 기록 매체.And the deleting step is repeated as many times as the number of job IDs extracted in the ID extracting step.
KR1020060073741A 2006-08-04 2006-08-04 Method for automatic checkpoint file management KR100800044B1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
KR1020060073741A KR100800044B1 (en) 2006-08-04 2006-08-04 Method for automatic checkpoint file management

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
KR1020060073741A KR100800044B1 (en) 2006-08-04 2006-08-04 Method for automatic checkpoint file management

Publications (1)

Publication Number Publication Date
KR100800044B1 true KR100800044B1 (en) 2008-01-31

Family

ID=39219888

Family Applications (1)

Application Number Title Priority Date Filing Date
KR1020060073741A KR100800044B1 (en) 2006-08-04 2006-08-04 Method for automatic checkpoint file management

Country Status (1)

Country Link
KR (1) KR100800044B1 (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR20170073659A (en) * 2014-10-20 2017-06-28 아브 이니티오 테크놀로지 엘엘시 Recovery and fault-tolerance under computational indeterminism
KR20180027993A (en) * 2016-09-07 2018-03-15 울산과학기술원 Electronic device and controlling method thereof

Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JPH10133927A (en) 1996-09-03 1998-05-22 Toshiba Corp Computer system and file managing method
KR19980087210A (en) * 1997-05-27 1998-12-05 니시무로 타이조 File system and file management methods
JP3194579B2 (en) 1990-05-09 2001-07-30 ユニシス コーポレイシヨン Fault-tolerant computer system

Patent Citations (3)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
JP3194579B2 (en) 1990-05-09 2001-07-30 ユニシス コーポレイシヨン Fault-tolerant computer system
JPH10133927A (en) 1996-09-03 1998-05-22 Toshiba Corp Computer system and file managing method
KR19980087210A (en) * 1997-05-27 1998-12-05 니시무로 타이조 File system and file management methods

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
KR20170073659A (en) * 2014-10-20 2017-06-28 아브 이니티오 테크놀로지 엘엘시 Recovery and fault-tolerance under computational indeterminism
KR102021677B1 (en) 2014-10-20 2019-09-16 아브 이니티오 테크놀로지 엘엘시 Recovery and fault-tolerance under computational indeterminism
KR20180027993A (en) * 2016-09-07 2018-03-15 울산과학기술원 Electronic device and controlling method thereof
KR101969799B1 (en) 2016-09-07 2019-04-17 울산과학기술원 Electronic device and controlling method thereof

Similar Documents

Publication Publication Date Title
RU2461053C2 (en) Self-controlled processing device
US7401249B2 (en) Method for backing up and recovering data in a hard disk
JP3386823B2 (en) File management method and device
CN105468544B (en) Method and device for realizing power-down prevention file system and power-down prevention file system
CN108255576B (en) Virtual machine live migration exception handling method and device and storage medium
CN110471909B (en) Database management method, device, server and storage medium
JP4641443B2 (en) Log information management apparatus, log information management method, and log information management program
JP2007188497A (en) System and method for managing log information for transaction
US6754842B2 (en) Facilitating a restart operation within a data processing system
CN115793985B (en) Secure storage method, apparatus, device and storage medium
CN102110032A (en) Method and device for improving reliability of configuration file
KR100800044B1 (en) Method for automatic checkpoint file management
WO2015173857A1 (en) Information processing method and information processing device
KR101258589B1 (en) Information storage medium recording data according to journaling file system, method and apparatus of writing/recovering data using journaling file system
CN110879764B (en) Bitmap setting method, device and equipment and readable storage medium
US7016091B2 (en) Image pickup apparatus, storing method of image data and storage medium thereof
US6711588B1 (en) File management method for file system
US20160004607A1 (en) Information processing apparatus and information processing method
JP2003280963A (en) Document management system, restoration method, program for performing restoration, and recording medium with program recorded thereon
JP2004318763A (en) Job network management system and program
WO2020107403A1 (en) Disk access control method, apparatus and system
JP5397076B2 (en) Job execution apparatus, job execution method, and job execution program
CN110968446B (en) Metadata repairing method, device and system and computer readable storage medium
KR101209943B1 (en) The selective retrieval system and method using the windows hive file
JP7180319B2 (en) Information processing device and dump management method for information processing device

Legal Events

Date Code Title Description
A201 Request for examination
E902 Notification of reason for refusal
E701 Decision to grant or registration of patent right
GRNT Written decision to grant
FPAY Annual fee payment

Payment date: 20110126

Year of fee payment: 4

LAPS Lapse due to unpaid annual fee