2023-07-10 13:48:38 +00:00
|
|
|
# Database maintenance
|
2021-01-28 21:04:37 +00:00
|
|
|
|
2023-04-14 15:48:46 +00:00
|
|
|
!!! Note
|
|
|
|
|
|
|
|
You do not need to setup a cleanup cron anymore as there is now an automatic cleaning process in Invidious.
|
|
|
|
Since this pull request: [https://github.com/iv-org/invidious/pull/3294](https://github.com/iv-org/invidious/pull/3294).
|
|
|
|
But this page is left in case you need to manually cleanup the database.
|
|
|
|
|
2019-02-10 20:06:49 +00:00
|
|
|
Invidious needs one PostgreSQL database which has the following tables.
|
2019-01-24 17:49:21 +00:00
|
|
|
|
2022-03-29 14:49:09 +00:00
|
|
|
- `annotations` Caches annotation data if `cache_annotations` is enabled in [`config.yml`](./configuration.md)
|
2022-01-04 16:42:52 +00:00
|
|
|
- `channel_videos` Stores truncated video info, used to create user feeds
|
|
|
|
- `channels` Stores UCID and author name
|
|
|
|
- `nonces` Keeps track of tokens issued to prevent CSRF
|
|
|
|
- `users` Stores user info, such as preferences, username, subscriptions
|
|
|
|
- `session_ids` Keeps track of user sessions
|
|
|
|
- `videos` Stores video cache, used to create "top" page
|
2019-01-24 17:49:21 +00:00
|
|
|
|
|
|
|
The table `videos` grows a lot and needs the most storage. You can clean it up using following commands:
|
|
|
|
```bash
|
|
|
|
$ sudo -i -u postgres
|
2019-01-24 18:11:14 +00:00
|
|
|
$ psql invidious -c "DELETE FROM nonces * WHERE expire < current_timestamp"
|
2019-01-24 17:49:21 +00:00
|
|
|
$ psql invidious -c "TRUNCATE TABLE videos"
|
|
|
|
$ exit
|
2019-01-24 18:11:14 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
For regular maintenance you should add a cronjob for these commands
|
|
|
|
```bash
|
2019-01-25 18:38:56 +00:00
|
|
|
@weekly psql invidious -c "DELETE FROM nonces * WHERE expire < current_timestamp" > /dev/null
|
|
|
|
@weekly psql invidious -c "TRUNCATE TABLE videos" > /dev/null
|
2022-01-04 16:42:52 +00:00
|
|
|
```
|