From 89adf72098889d1296c4072065f00c7d906ace3f Mon Sep 17 00:00:00 2001 From: Sietse Snel Date: Tue, 22 Aug 2023 14:50:11 +0200 Subject: [PATCH] Development environments: enable replication delay Set a delay time for asynchronous replication on development environments that have replication enabled, in order to reduce the risk that concurrent access by the replication job affects test results. --- environments/development/allinone/group_vars/allinone.yml | 2 ++ environments/development/el8-database/group_vars/el8.yml | 2 ++ environments/development/full/group_vars/full.yml | 2 ++ environments/development/ubuntu/group_vars/ubuntu.yml | 2 ++ 4 files changed, 8 insertions(+) diff --git a/environments/development/allinone/group_vars/allinone.yml b/environments/development/allinone/group_vars/allinone.yml index ed66fa331..aca6a1bbd 100644 --- a/environments/development/allinone/group_vars/allinone.yml +++ b/environments/development/allinone/group_vars/allinone.yml @@ -165,6 +165,8 @@ irods_repl_resc: - irodsRescRepl - irodsRescReplS3 +async_replication_delay_time: 3600 # Delay after last modification to data object before replication job can process it (sec) + # S3 configuration enable_s3_resource: False s3_access_key: minioadmin diff --git a/environments/development/el8-database/group_vars/el8.yml b/environments/development/el8-database/group_vars/el8.yml index 47c825609..b129f3d60 100644 --- a/environments/development/el8-database/group_vars/el8.yml +++ b/environments/development/el8-database/group_vars/el8.yml @@ -159,6 +159,8 @@ irods_repl_resc: - irodsRescRepl - irodsRescReplS3 +async_replication_delay_time: 3600 # Delay after last modification to data object before replication job can process it (sec) + # S3 configuration enable_s3_resource: False s3_access_key: minioadmin diff --git a/environments/development/full/group_vars/full.yml b/environments/development/full/group_vars/full.yml index eb5a8cfe3..d67d95441 100644 --- a/environments/development/full/group_vars/full.yml +++ b/environments/development/full/group_vars/full.yml @@ -162,6 +162,8 @@ irods_repl_resc: - irodsRescRepl - irodsRescReplS3 +async_replication_delay_time: 3600 # Delay after last modification to data object before replication job can process it (sec) + # S3 configuration enable_s3_resource: False s3_access_key: minioadmin diff --git a/environments/development/ubuntu/group_vars/ubuntu.yml b/environments/development/ubuntu/group_vars/ubuntu.yml index 253bc187e..c278d8b56 100644 --- a/environments/development/ubuntu/group_vars/ubuntu.yml +++ b/environments/development/ubuntu/group_vars/ubuntu.yml @@ -158,6 +158,8 @@ irods_repl_resc: - irodsRescRepl - irodsRescReplS3 +async_replication_delay_time: 3600 # Delay after last modification to data object before replication job can process it (sec) + # S3 configuration enable_s3_resource: False s3_access_key: minioadmin