You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/02-admin/FAQ.md
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -146,6 +146,12 @@ If you want to delete only the messages that are no longer being worked (`dead`)
146
146
DELETE FROM messenger_messages WHERE queue_name = 'dead';
147
147
```
148
148
149
+
To free up the disk space used by the now deleted messages, execute the following query:
150
+
151
+
```sql
152
+
VACUUM messenger_messages;
153
+
```
154
+
149
155
## Where can I find my logging?
150
156
151
157
You can find the Mbin logging in the `var/log/` directory from the root folder of the Mbin installation. When running production the file is called `prod-{YYYY-MM-DD}.log`, when running development the log file is called `dev-{YYYY-MM-DD}.log`.
0 commit comments