diff --git a/content/upgrade/1.7.0.md b/content/upgrade/1.7.0.md index 1575a1280cb10728837db4a7f22e7b8c213f0c6e..0abdedee77b0b3a4ab486b3f632351854bed74cf 100644 --- a/content/upgrade/1.7.0.md +++ b/content/upgrade/1.7.0.md @@ -21,3 +21,13 @@ The main changes impacting developers and system administrators are detailed bel A new [`s3.max_retries`](../deployment/configuration.md#s3max_retries) setting configures how many times a failing S3 request should be retried. This defaults to 5. Only requests made by the Arkindex backend and RQ workers are affected, not those made by the frontend or by any Ponos task. Arkindex now uses Boto3's [standard retry mode](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/retries.html#standard-retry-mode). Previous versions of Arkindex were retrying 4 times in the [legacy retry mode](https://boto3.amazonaws.com/v1/documentation/api/latest/guide/retries.html#legacy-retry-mode). + +## New system workers + +To support the new [document exports](../howto/export/document/index.md) feature, two new `pdf_export` and `pagexml_export` system workers have been added. To configure your instance properly for these system workers, make sure to run the `update_system_workers` command: + +``` +docker exec ark-backend arkindex update_system_workers +``` + +You can view or update these system workers manually through the [administration interface](../deployment/administration.md#system-worker-management).