X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/8734a7391a5672eebcdf572d93bae1b3ed1179c9..38fcd08dda022d0167840fbb65222fe99b75fcf5:/services/api/config/application.default.yml diff --git a/services/api/config/application.default.yml b/services/api/config/application.default.yml index 077c23762a..5241cb4378 100644 --- a/services/api/config/application.default.yml +++ b/services/api/config/application.default.yml @@ -232,6 +232,24 @@ common: # crunchstat logs from the logs table. clean_container_log_rows_after: <%= 30.days %> + # Time to keep audit logs, in seconds. (An audit log is a row added + # to the "logs" table in the PostgreSQL database each time an + # Arvados object is created, modified, or deleted.) + # + # Currently, websocket event notifications rely on audit logs, so + # this should not be set lower than 600 (5 minutes). + max_audit_log_age: 1209600 + + # Maximum number of log rows to delete in a single SQL transaction. + # + # If max_audit_log_delete_batch is 0, log entries will never be + # deleted by Arvados. Cleanup can be done by an external process + # without affecting any Arvados system processes, as long as very + # recent (<5 minutes old) logs are not deleted. + # + # 100000 is a reasonable batch size for most sites. + max_audit_log_delete_batch: 0 + # The maximum number of compute nodes that can be in use simultaneously # If this limit is reduced, any existing nodes with slot number >= new limit # will not be counted against the new limit. In other words, the new limit @@ -463,3 +481,4 @@ test: git_internal_dir: <%= Rails.root.join 'tmp', 'internal.git' %> websocket_address: <% if ENV['ARVADOS_TEST_EXPERIMENTAL_WS'] %>"wss://0.0.0.0:<%= ENV['ARVADOS_TEST_WSS_PORT'] %>/websocket"<% else %>false<% end %> trash_sweep_interval: -1 + docker_image_formats: ["v1"]