Merge pull request #877 from hapifhir/pw/searchparam-reindex-configuration

Pw/searchparam reindex configuration
This commit is contained in:
Patrick Werner
2025-10-31 12:00:43 +01:00
committed by GitHub
2 changed files with 3 additions and 2 deletions

View File

@@ -812,8 +812,8 @@ public class AppProperties {
index_storage_optimized = theIndex_storage_optimized; index_storage_optimized = theIndex_storage_optimized;
} }
public Boolean getMark_resources_for_reindexing_upon_search_parameter_change() { public boolean getMark_resources_for_reindexing_upon_search_parameter_change() {
return mark_resources_for_reindexing_upon_search_parameter_change; return defaultIfNull(mark_resources_for_reindexing_upon_search_parameter_change, true);
} }
public void setMark_resources_for_reindexing_upon_search_parameter_change( public void setMark_resources_for_reindexing_upon_search_parameter_change(

View File

@@ -283,6 +283,7 @@ hapi:
# Defaults to Runtime.getRuntime().availableProcessors() if not specified # Defaults to Runtime.getRuntime().availableProcessors() if not specified
# reindex_thread_count: 4 # Number of threads to use for reindex operations # reindex_thread_count: 4 # Number of threads to use for reindex operations
# expunge_thread_count: 4 # Number of threads to use for expunge operations # expunge_thread_count: 4 # Number of threads to use for expunge operations
# mark_resources_for_reindexing_upon_search_parameter_change: false
# ------------------------------------------------------------------------------- # -------------------------------------------------------------------------------
# G. Narrative & Validation # G. Narrative & Validation