🔥 application.yml 설정 변경
This commit is contained in:
부모
a93942d4d6
커밋
07368f18cb
@ -111,9 +111,9 @@ app:
|
|||||||
# Core20 캐시 테이블 설정 (환경별로 테이블/컬럼명이 다를 수 있음)
|
# Core20 캐시 테이블 설정 (환경별로 테이블/컬럼명이 다를 수 있음)
|
||||||
core20:
|
core20:
|
||||||
schema: t_std_snp_data # 스키마명
|
schema: t_std_snp_data # 스키마명
|
||||||
table: ship_detail_data # 테이블명
|
table: tb_ship_info_mst # 테이블명
|
||||||
imo-column: ihslrorimoshipno # IMO/LRNO 컬럼명 (PK, NOT NULL)
|
imo-column: imo_no # IMO/LRNO 컬럼명 (PK, NOT NULL)
|
||||||
mmsi-column: maritimemobileserviceidentitymmsinumber # MMSI 컬럼명 (NULLABLE)
|
mmsi-column: mmsi_no # MMSI 컬럼명 (NULLABLE)
|
||||||
|
|
||||||
# 파티션 관리 설정
|
# 파티션 관리 설정
|
||||||
partition:
|
partition:
|
||||||
|
|||||||
@ -22,12 +22,12 @@ spring:
|
|||||||
hibernate:
|
hibernate:
|
||||||
dialect: org.hibernate.dialect.PostgreSQLDialect
|
dialect: org.hibernate.dialect.PostgreSQLDialect
|
||||||
format_sql: true
|
format_sql: true
|
||||||
default_schema: t_snp_data
|
default_schema: t_std_snp_data
|
||||||
|
|
||||||
# Batch Configuration
|
# Batch Configuration
|
||||||
batch:
|
batch:
|
||||||
jdbc:
|
jdbc:
|
||||||
table-prefix: "t_snp_data.batch_"
|
table-prefix: "t_std_snp_data.batch_"
|
||||||
initialize-schema: never # Changed to 'never' as tables already exist
|
initialize-schema: never # Changed to 'never' as tables already exist
|
||||||
job:
|
job:
|
||||||
enabled: false # Prevent auto-run on startup
|
enabled: false # Prevent auto-run on startup
|
||||||
@ -49,7 +49,7 @@ spring:
|
|||||||
org.quartz.threadPool.threadCount: 10
|
org.quartz.threadPool.threadCount: 10
|
||||||
org.quartz.jobStore.class: org.quartz.impl.jdbcjobstore.JobStoreTX
|
org.quartz.jobStore.class: org.quartz.impl.jdbcjobstore.JobStoreTX
|
||||||
org.quartz.jobStore.driverDelegateClass: org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
|
org.quartz.jobStore.driverDelegateClass: org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
|
||||||
org.quartz.jobStore.tablePrefix: t_snp_data.QRTZ_
|
org.quartz.jobStore.tablePrefix: t_std_snp_data.QRTZ_
|
||||||
org.quartz.jobStore.isClustered: false
|
org.quartz.jobStore.isClustered: false
|
||||||
org.quartz.jobStore.misfireThreshold: 60000
|
org.quartz.jobStore.misfireThreshold: 60000
|
||||||
|
|
||||||
@ -112,16 +112,16 @@ app:
|
|||||||
|
|
||||||
# Core20 캐시 테이블 설정 (환경별로 테이블/컬럼명이 다를 수 있음)
|
# Core20 캐시 테이블 설정 (환경별로 테이블/컬럼명이 다를 수 있음)
|
||||||
core20:
|
core20:
|
||||||
schema: t_snp_data # 스키마명
|
schema: t_std_snp_data # 스키마명
|
||||||
table: ship_detail_data # 테이블명
|
table: tb_ship_info_mst # 테이블명
|
||||||
imo-column: ihslrorimoshipno # IMO/LRNO 컬럼명 (PK, NOT NULL)
|
imo-column: imo_no # IMO/LRNO 컬럼명 (PK, NOT NULL)
|
||||||
mmsi-column: maritimemobileserviceidentitymmsinumber # MMSI 컬럼명 (NULLABLE)
|
mmsi-column: mmsi_no # MMSI 컬럼명 (NULLABLE)
|
||||||
|
|
||||||
# 파티션 관리 설정
|
# 파티션 관리 설정
|
||||||
partition:
|
partition:
|
||||||
# 일별 파티션 테이블 목록 (네이밍: {table}_YYMMDD)
|
# 일별 파티션 테이블 목록 (네이밍: {table}_YYMMDD)
|
||||||
daily-tables:
|
daily-tables:
|
||||||
- schema: t_snp_data
|
- schema: t_std_snp_data
|
||||||
table-name: ais_target
|
table-name: ais_target
|
||||||
partition-column: message_timestamp
|
partition-column: message_timestamp
|
||||||
periods-ahead: 3 # 미리 생성할 일수
|
periods-ahead: 3 # 미리 생성할 일수
|
||||||
|
|||||||
@ -22,12 +22,12 @@ spring:
|
|||||||
hibernate:
|
hibernate:
|
||||||
dialect: org.hibernate.dialect.PostgreSQLDialect
|
dialect: org.hibernate.dialect.PostgreSQLDialect
|
||||||
format_sql: true
|
format_sql: true
|
||||||
default_schema: t_snp_data
|
default_schema: t_std_snp_data
|
||||||
|
|
||||||
# Batch Configuration
|
# Batch Configuration
|
||||||
batch:
|
batch:
|
||||||
jdbc:
|
jdbc:
|
||||||
table-prefix: "t_snp_data.batch_"
|
table-prefix: "t_std_snp_data.batch_"
|
||||||
initialize-schema: never # Changed to 'never' as tables already exist
|
initialize-schema: never # Changed to 'never' as tables already exist
|
||||||
job:
|
job:
|
||||||
enabled: false # Prevent auto-run on startup
|
enabled: false # Prevent auto-run on startup
|
||||||
@ -49,7 +49,7 @@ spring:
|
|||||||
org.quartz.threadPool.threadCount: 10
|
org.quartz.threadPool.threadCount: 10
|
||||||
org.quartz.jobStore.class: org.quartz.impl.jdbcjobstore.JobStoreTX
|
org.quartz.jobStore.class: org.quartz.impl.jdbcjobstore.JobStoreTX
|
||||||
org.quartz.jobStore.driverDelegateClass: org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
|
org.quartz.jobStore.driverDelegateClass: org.quartz.impl.jdbcjobstore.PostgreSQLDelegate
|
||||||
org.quartz.jobStore.tablePrefix: t_snp_data.QRTZ_
|
org.quartz.jobStore.tablePrefix: t_std_snp_data.QRTZ_
|
||||||
org.quartz.jobStore.isClustered: false
|
org.quartz.jobStore.isClustered: false
|
||||||
org.quartz.jobStore.misfireThreshold: 60000
|
org.quartz.jobStore.misfireThreshold: 60000
|
||||||
|
|
||||||
@ -169,7 +169,7 @@ app:
|
|||||||
|
|
||||||
# Core20 캐시 테이블 설정 (환경별로 테이블/컬럼명이 다를 수 있음)
|
# Core20 캐시 테이블 설정 (환경별로 테이블/컬럼명이 다를 수 있음)
|
||||||
core20:
|
core20:
|
||||||
schema: t_snp_data # 스키마명
|
schema: t_std_snp_data # 스키마명
|
||||||
table: tb_ship_info_mst # 테이블명
|
table: tb_ship_info_mst # 테이블명
|
||||||
imo-column: imo_no # IMO/LRNO 컬럼명 (PK, NOT NULL)
|
imo-column: imo_no # IMO/LRNO 컬럼명 (PK, NOT NULL)
|
||||||
mmsi-column: mmsi_no # MMSI 컬럼명 (NULLABLE)
|
mmsi-column: mmsi_no # MMSI 컬럼명 (NULLABLE)
|
||||||
@ -178,7 +178,7 @@ app:
|
|||||||
partition:
|
partition:
|
||||||
# 일별 파티션 테이블 목록 (네이밍: {table}_YYMMDD)
|
# 일별 파티션 테이블 목록 (네이밍: {table}_YYMMDD)
|
||||||
daily-tables:
|
daily-tables:
|
||||||
- schema: t_snp_data
|
- schema: t_std_snp_data
|
||||||
table-name: ais_target
|
table-name: ais_target
|
||||||
partition-column: message_timestamp
|
partition-column: message_timestamp
|
||||||
periods-ahead: 3 # 미리 생성할 일수
|
periods-ahead: 3 # 미리 생성할 일수
|
||||||
|
|||||||
불러오는 중...
Reference in New Issue
Block a user