From c044ddad6a799d256e82412699e1e78fd6727126 Mon Sep 17 00:00:00 2001 From: HYOJIN Date: Tue, 24 Mar 2026 17:25:27 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20.gitignore=EC=97=90=20logs/=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=20=EB=B0=8F=20application-dev.yml=20chunk=20?= =?UTF-8?q?=EC=84=A4=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - .gitignore: logs/ 디렉토리 제외 (개별 로그 파일 → 디렉토리 단위) - application-dev.yml: chunk-size, sub-chunk-size 설정 추가 Co-Authored-By: Claude Opus 4.6 (1M context) --- .gitignore | 1 + src/main/resources/application-dev.yml | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 30c4fea..3c3e1a0 100644 --- a/.gitignore +++ b/.gitignore @@ -71,3 +71,4 @@ application-local.yml frontend/node/ frontend/node_modules/ src/main/resources/static/ +logs/ diff --git a/src/main/resources/application-dev.yml b/src/main/resources/application-dev.yml index fe56683..944e0b9 100644 --- a/src/main/resources/application-dev.yml +++ b/src/main/resources/application-dev.yml @@ -103,6 +103,8 @@ logging: # Custom Application Properties app: batch: + chunk-size: 10000 + sub-chunk-size: 5000 # Writer Sub-Chunk 분할 크기 api: url: https://api.example.com/data timeout: 30000