Merge pull request 'feat/training_260324' (#173) from feat/training_260324 into develop

Reviewed-on: #173
This commit was merged in pull request #173.
This commit is contained in:
2026-03-27 10:05:24 +09:00
16 changed files with 1062 additions and 157 deletions

View File

@@ -20,4 +20,18 @@ public class AsyncConfig {
executor.initialize();
return executor;
}
@Bean("datasetExecutor")
public Executor datasetExecutor() {
ThreadPoolTaskExecutor executor = new ThreadPoolTaskExecutor();
executor.setCorePoolSize(5);
executor.setMaxPoolSize(10);
executor.setQueueCapacity(100);
executor.setThreadNamePrefix("dataset-");
executor.initialize();
return executor;
}
}