Version 4.0.8¶
Released: June 23, 2021
Status: Stable
Changes¶
Background tasks¶
The queue distribution was tuned again to continue improving throughput and
efficiency of the workers. Message consumption rate was increased for the
indexing
, search
, uploads
, duplicates
, file metadata
and
metadata
queues.
The readability Celery worker options was improved by using the long version of the options.
Docker¶
The Docker base image was updated from Debian:10.8-slim to Debian:10.10-slim.
The example RabbitMQ container entry in the Docker Compose file was updated to include the entries necessary to enable the image with the management plugin.
A new chapter was added explaining document files. The document version chapter was updated to include the changes since version 4.0.
Document parsing¶
The document parsing submit actions were updated to keep track of the user and apply it to the events when committed.
Documents¶
The document file and version page image API were optimized by reusing the page object per request.
The date and time of document version timestamps are now carried over during the upgrade from version 3.5.x to 4.0.x.
Fixed the situation where the document type button was not appearing. The cascade condition of the document type setup link was updated to correctly display when there are not document types created.
Digital signatures¶
The preparation of the GPG temporary home folder was improved. A temporary directory context manager is now used which also guarantees that the temporary folder will be removed even on failures.
The document signature logic was updated to not assume that all signatures
provide a date_time
field.
Dependencies¶
PIP was updated to version 21.1.2 and Django was updated from version 2.2.23 to 2.2.24.
Documentation¶
The Docker Compose installation and upgrade instructions we improved. PostgreSQL migration instructions were also added.
Emailing¶
The document email attachment was updated to send the active version instead of the last file uploaded. The email action will now export the active version and email that as an attachments. This mimics more closely the existing behavior of this feature before the document version were separated into versions and files.
File metadata¶
The file metadata submit actions were updated to keep track of the user and apply it to the events committed.
Metadata¶
Fixed an issue with the document metadata add and edit actions which caused the user value to be ignored at the event commit.
Platform¶
The direct deployment and Docker supervisord templates were unified. The direct deployment and the Docker image now use the same supervisord template.
The GitLab CI configuration files and the Dockerfile were converted into templates. This allows these to use the same settings and Docker image tags as the rest of the project without requiring manual updates.
Testing¶
Event testing was improved for several apps. Events testing is now performed
in an unified manner using the provided ._clear_events()
and
.get_test_events()
. This supercedes the imporing the Action
model
directly.
Other¶
Make optional the user_id argument of task_document_file_page_image_generate.
Don’t cache the missing items template to allow it to be removed when the missing items are fixed.
Apply small optimization to
MultipleObjectViewMixin
.get_object_list()
method. The method now reuses the existingpk_list
variable.Add serializer explicit read only fields.
Optimize documents app saves with update_fields.
Removals¶
None
Upgrade process¶
Docker Compose¶
Check the Docker upgrading chapter for the complete upgrade process.
Direct deployment¶
Upgrading from Mayan EDMS 3.5.x¶
Important
Supervisord must be upgraded to version 4.2.2. See troubleshooting section: After upgrade to version 4.1
Stop supervisord:
sudo systemctl stop supervisor
Make a backup of your supervisord file:
sudo cp /etc/supervisor/conf.d/mayan-edms.conf /etc/supervisor/conf.d/mayan-edms.conf.bck
Make a backup of your database:
Use the respective backup command for the database:
Upgrade to the latest pip version:
sudo --user=mayan /opt/mayan-edms/bin/pip install --upgrade pip
Remove deprecated requirements:
sudo --user=mayan curl https://gitlab.com/mayan-edms/mayan-edms/raw/master/removals.txt --output /tmp/removals.txt \ && sudo --user=mayan /opt/mayan-edms/bin/pip uninstall --requirement /tmp/removals.txt --yes
Update the Mayan EDMS Python package:
sudo --user=mayan /opt/mayan-edms/bin/pip install mayan-edms==4.4.7
the requirements will also be updated automatically.
Update the Redis configuration to serve at least 3 databases:
Replace:
databases ...
with:
databases 3
Restart Redis for the changes to take effect:
sudo systemctl restart redis
Edit the config file at
/opt/mayan-edms/media/config.yml
:Replace:
LOCK_MANAGER_BACKEND: ... LOCK_MANAGER_BACKEND_ARGUMENTS: ...
with:
LOCK_MANAGER_BACKEND: mayan.apps.lock_manager.backends.redis_lock.RedisLock LOCK_MANAGER_BACKEND_ARGUMENTS: {'redis_url':'redis://:mayanredispassword@<IP address of Redis server>:6379/2'}
Update the supervisord configuration file. Replace the environment variables values shown here with your respective settings. This step will refresh the supervisord configuration file with the new queues and the latest recommended layout:
sudo --user=mayan MAYAN_MEDIA_ROOT=/opt/mayan-edms/media/ \ /opt/mayan-edms/bin/mayan-edms.py platformtemplate supervisord | sudo sh -c "cat > /etc/supervisor/conf.d/mayan-edms.conf"
Edit the supervisord configuration file and update any setting specific to your installation:
sudo vi /etc/supervisor/conf.d/mayan-edms.conf
Migrate existing database schema and static media files with:
sudo --user=mayan MAYAN_MEDIA_ROOT=/opt/mayan-edms/media/ \ /opt/mayan-edms/bin/mayan-edms.py performupgrade
Start supervisord:
sudo systemctl start supervisor
Clear the browser cache to avoid loading old web assets.
The upgrade procedure is now complete.
Troubleshooting¶
If you observe the errors:
mayan.apps.file_caching.models.CachePartitionFile.DoesNotExist: CachePartitionFile matching query does not exist.
or:
FileNotFoundError: [Errno 2] No such file or directory: '/var/lib/mayan/document_file_storage/...
follow the solution outlined in the troubleshooting section: After upgrade to version 4.0
Backward incompatible changes¶
None
Issues closed¶
GitLab issue #1001 Possibly worng path in supervisor config
GitLab issue #1006 CELERY_RESULT_BACKEND setting in RabbitMQ unclear in Documentation
GitLab issue #1007 Typo in Advanced Deployment section