enable mass ingestion mode

This commit is contained in:
Carl Anderson
2024-06-12 12:02:05 -05:00
committed by GitHub
parent cc51fa6082
commit 2239fe5b45

View File

@@ -100,6 +100,8 @@ public class FhirServerConfigCommon {
: StorageSettings.IndexEnabledEnum.DISABLED); : StorageSettings.IndexEnabledEnum.DISABLED);
jpaStorageSettings.setAutoCreatePlaceholderReferenceTargets( jpaStorageSettings.setAutoCreatePlaceholderReferenceTargets(
appProperties.getAuto_create_placeholder_reference_targets()); appProperties.getAuto_create_placeholder_reference_targets());
jpaStorageSettings.setEnableMassIngestionMode(
appProperties.getEnable_mass_ingestion_mode());
jpaStorageSettings.setAutoVersionReferenceAtPaths(appProperties.getAuto_version_reference_at_paths()); jpaStorageSettings.setAutoVersionReferenceAtPaths(appProperties.getAuto_version_reference_at_paths());
jpaStorageSettings.setEnforceReferentialIntegrityOnWrite( jpaStorageSettings.setEnforceReferentialIntegrityOnWrite(
appProperties.getEnforce_referential_integrity_on_write()); appProperties.getEnforce_referential_integrity_on_write());