...
- Nuxeo Default Fulltext Functionality Disabled: The default fulltext functionality in Nuxeo has been disabled due to excessive CPU and IO load and an increase in Nuxeo database entries. This change also disables the 'Filter' feature in the folder view of the Nuxeo Console, which was occasionally used by administrators. Instead, please use the Nuxeo Search page or provide the direct path in the URL.
Option to Disable Default Nuxeo Audit Log: The default Nuxeo audit log, which can produce excessive entries in the Nuxeo database's nxp_logs table, can now be disabled. This change disables the document history in the Nuxeo Console. To disable the audit log, add the following line to dms.conf:
Code Block DISABLE_NXP_LOGS=true
It is highly recommended to disable the audit log when updating to this and future versions, as it consumes significant disk space and generates excessive IO and CPU load
Only keep the audit log enabled if the client utilizes Nuxeo document history.
Audit logs are disabled by default for all new repositories.
To free up space used by audit logs, execute the following command:
Code Block docker exec postgres psql -d nuxeo -U postgres -c "TRUNCATE nxp_logs CASCADE;"
- User Access Logging Enabled by Default: The enable.user.access.logging entry in PAT_DMS_SETTINGS is now set to true by default, providing a replacement for the audit log.
- Parallel Execution of Sweepers: Sweepers can now be run in parallel. In previous versions up to 1.9.8.2.9, sweepers were executed sequentially.
...