You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
547 B
SQL
11 lines
547 B
SQL
create table qrtz_scheduler_state
|
|
(
|
|
SCHED_NAME varchar(120) not null comment '스케줄러 이름',
|
|
INSTANCE_NAME varchar(200) not null comment '스케줄러 인스턴스 고유 이름',
|
|
LAST_CHECKIN_TIME bigint(13) not null comment '마지막 체크인 시간 (Unix timestamp)',
|
|
CHECKIN_INTERVAL bigint(13) not null comment '체크인 간격 (밀리초 단위)',
|
|
primary key (SCHED_NAME, INSTANCE_NAME)
|
|
)
|
|
comment 'Quartz 스케줄러 상태 정보 - 클러스터 환경에서 인스턴스 상태 관리';
|
|
|