105 lines
3.2 KiB
YAML
105 lines
3.2 KiB
YAML
spring:
|
|
config:
|
|
activate:
|
|
on-profile: prod
|
|
|
|
jpa:
|
|
show-sql: true
|
|
hibernate:
|
|
ddl-auto: validate
|
|
properties:
|
|
hibernate:
|
|
default_batch_fetch_size: 100 # ✅ 성능 - N+1 쿼리 방지
|
|
order_updates: true # ✅ 성능 - 업데이트 순서 정렬로 데드락 방지
|
|
order_inserts: true
|
|
use_sql_comments: true # ⚠️ 선택 - SQL에 주석 추가 (디버깅용)
|
|
format_sql: true # ⚠️ 선택 - SQL 포맷팅 (가독성)
|
|
jdbc:
|
|
batch_size: 1000 # ✅ 추가 (JDBC batch)
|
|
open-in-view: false
|
|
mvc:
|
|
async:
|
|
request-timeout: 300s # 5분 (예: 30s, 120s, 10m 등도 가능)
|
|
|
|
datasource:
|
|
url: jdbc:postgresql://kamco-cd-postgis:5432/kamco_cds
|
|
#url: jdbc:postgresql://localhost:15432/kamco_cds
|
|
username: kamco_cds
|
|
password: kamco_cds_Q!W@E#R$
|
|
hikari:
|
|
minimum-idle: 10
|
|
maximum-pool-size: 20
|
|
connection-timeout: 60000 # 60초 연결 타임아웃
|
|
idle-timeout: 300000 # 5분 유휴 타임아웃
|
|
max-lifetime: 1800000 # 30분 최대 수명
|
|
leak-detection-threshold: 60000 # 연결 누수 감지
|
|
|
|
transaction:
|
|
default-timeout: 300 # 5분 트랜잭션 타임아웃
|
|
|
|
|
|
|
|
|
|
server:
|
|
tomcat:
|
|
max-swallow-size: 4GB
|
|
max-http-form-post-size: 4GB
|
|
|
|
|
|
logging:
|
|
level:
|
|
root: INFO
|
|
org.springframework.web: DEBUG
|
|
org.springframework.security: DEBUG
|
|
|
|
# 헬스체크 노이즈 핵심만 다운
|
|
org.springframework.security.web.FilterChainProxy: INFO
|
|
org.springframework.security.web.authentication.AnonymousAuthenticationFilter: INFO
|
|
org.springframework.security.web.authentication.Http403ForbiddenEntryPoint: INFO
|
|
org.springframework.web.servlet.DispatcherServlet: INFO
|
|
|
|
|
|
mapsheet:
|
|
upload:
|
|
skipGdalValidation: true
|
|
shp:
|
|
baseurl: /app/detect/result #현재사용안함
|
|
|
|
file:
|
|
sync-root-dir: /kamco-nfs/images/
|
|
sync-tmp-dir: /kamco-nfs/repo/tmp # image upload temp dir
|
|
sync-file-extention: tfw,tif
|
|
|
|
#dataset-dir: D:/kamco-nfs/model_output/ #변경 model_output
|
|
dataset-dir: /kamco-nfs/model_output/export/ # 마운트경로 AI 추론결과
|
|
dataset-tmp-dir: ${file.dataset-dir}tmp/
|
|
|
|
#model-dir: D:/kamco-nfs/ckpt/model/
|
|
model-dir: /kamco-nfs/ckpt/model/ # 학습서버에서 트레이닝한 모델업로드경로
|
|
model-tmp-dir: ${file.model-dir}tmp/
|
|
model-file-extention: pth,json,py
|
|
|
|
pt-path: /kamco-nfs/ckpt/v6-cls-checkpoints/
|
|
pt-FileName: yolov8_6th-6m.pt
|
|
dataset-response: /kamco-nfs/dataset/response/
|
|
|
|
inference:
|
|
url: http://127.0.0.1:8000/jobs
|
|
batch-url: http://127.0.0.1:8000/batches
|
|
geojson-dir: /kamco-nfs/requests/ # 학습서버에서 트레이닝한 모델업로드경로
|
|
jar-path: /kamco-nfs/repo/jar/shp-exporter.jar # 추론실행을 위한 파일생성경로
|
|
inference-server-name: server1,server2,server3,server4
|
|
|
|
gukyuin:
|
|
url: http://127.0.0.1:5301
|
|
cdi: ${gukyuin.url}/api/kcd/cdi
|
|
|
|
training-data:
|
|
geojson-dir: /kamco-nfs/dataset/request/
|
|
|
|
layer:
|
|
geoserver-url: https://kamco.geo-dev.gs.dabeeo.com
|
|
wms-path: geoserver/cd
|
|
wmts-path: geoserver/cd/gwc/service
|
|
workspace: cd
|