15781: Adds test proving that 'contains' does case-sensitive matching.
[arvados.git] / doc / admin / logs-table-management.html.textile.liquid
1 ---
2 layout: default
3 navsection: admin
4 title: "Logs table management"
5 ...
6
7 {% comment %}
8 Copyright (C) The Arvados Authors. All rights reserved.
9
10 SPDX-License-Identifier: CC-BY-SA-3.0
11 {% endcomment %}
12
13 This page aims to provide insight about managing the ever growing API Server's logs table.
14
15 h3. Logs table purpose & behavior
16
17 This database table currently serves three purposes:
18 * It's an audit log, permitting admins and users to look up the time and details of past changes to Arvados objects via @arvados.v1.logs.*@ endpoints.
19 * It's a mechanism for passing cache-invalidation events, used by websocket servers, the Python SDK "events" library, and @arvados-cwl-runner@ to detect when an object has changed.
20 * It's a staging area for stdout/stderr text coming from users' containers, permitting users to see what their containers are doing while they are still running (i.e., before those text files are written to Keep).
21
22 As a result, this table grows indefinitely, even on sites where policy does not require an audit log; making backups, migrations, and upgrades unnecessarily slow and painful.
23
24 h3. API Server configuration
25
26 To solve the problem mentioned above, the API server offers the possibility to limit the amount of log information stored on the table:
27
28 <pre>
29 # Attributes to suppress in events and audit logs.  Notably,
30 # specifying ["manifest_text"] here typically makes the database
31 # smaller and faster.
32 #
33 # Warning: Using any non-empty value here can have undesirable side
34 # effects for any client or component that relies on event logs.
35 # Use at your own risk.
36 unlogged_attributes: []
37 </pre>
38
39 The above setting affects all events being logged, independently of how much time they will be kept on the database.
40
41 <pre>
42 # Time to keep audit logs (a row in the log table added each time an
43 # Arvados object is created, modified, or deleted) in the PostgreSQL
44 # database. Currently, websocket event notifications rely on audit
45 # logs, so this should not be set lower than 300 (5 minutes).
46 max_audit_log_age: 1209600
47 </pre>
48
49 ...and to prevent surprises and avoid bad database behavior (especially the first time the cleanup job runs on an existing cluster with a huge backlog) a maximum number of rows to delete in a single transaction.
50
51 <pre>
52 # Maximum number of log rows to delete in a single SQL transaction.
53 #
54 # If max_audit_log_delete_batch is 0, log entries will never be
55 # deleted by Arvados. Cleanup can be done by an external process
56 # without affecting any Arvados system processes, as long as very
57 # recent (<5 minutes old) logs are not deleted.
58 #
59 # 100000 is a reasonable batch size for most sites.
60 max_audit_log_delete_batch: 0
61 </pre>
62
63 This feature works when both settings are non-zero, periodically dispatching a background task that deletes all log rows older than @max_audit_log_age@.
64 The events being cleaned up by this process don't include job/container stderr logs (they're handled by the existing @delete job/container logs@ rake tasks)
65
66 h3. Additional consideration
67
68 Depending on the local installation's audit requirements, the cluster admins should plan for an external backup procedure before enabling this feature, as this information is not replicated anywhere else.