make thread count configurable (#868)

* feat: add configuration for reindex and expunge thread counts

* fix formatting
This commit is contained in:
Patrick Werner
2025-10-09 14:15:17 +02:00
committed by GitHub
parent a499603883
commit a55c8f20a9
3 changed files with 38 additions and 0 deletions

View File

@@ -118,6 +118,8 @@ public class AppProperties {
private Map<String, RemoteSystem> remote_terminology_service = null;
private Boolean match_url_cache_enabled = false;
private Boolean index_storage_optimized = false;
private Integer reindex_thread_count = null;
private Integer expunge_thread_count = null;
public List<String> getCustomInterceptorClasses() {
return custom_interceptor_classes;
@@ -785,6 +787,22 @@ public class AppProperties {
index_storage_optimized = theIndex_storage_optimized;
}
public Integer getReindex_thread_count() {
return reindex_thread_count;
}
public void setReindex_thread_count(Integer reindex_thread_count) {
this.reindex_thread_count = reindex_thread_count;
}
public Integer getExpunge_thread_count() {
return expunge_thread_count;
}
public void setExpunge_thread_count(Integer expunge_thread_count) {
this.expunge_thread_count = expunge_thread_count;
}
public JpaStorageSettings.StoreMetaSourceInformationEnum getStore_meta_source_information() {
return store_meta_source_information;
}