purge_history_api.rst 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. Purge History API
  2. =================
  3. The purge history API allows server admins to purge historic events from their
  4. database, reclaiming disk space.
  5. Depending on the amount of history being purged a call to the API may take
  6. several minutes or longer. During this period users will not be able to
  7. paginate further back in the room from the point being purged from.
  8. Note that Synapse requires at least one message in each room, so it will never
  9. delete the last message in a room.
  10. The API is:
  11. ``POST /_synapse/admin/v1/purge_history/<room_id>[/<event_id>]``
  12. To use it, you will need to authenticate by providing an ``access_token`` for a
  13. server admin: see `README.rst <README.rst>`_.
  14. By default, events sent by local users are not deleted, as they may represent
  15. the only copies of this content in existence. (Events sent by remote users are
  16. deleted.)
  17. Room state data (such as joins, leaves, topic) is always preserved.
  18. To delete local message events as well, set ``delete_local_events`` in the body:
  19. .. code:: json
  20. {
  21. "delete_local_events": true
  22. }
  23. The caller must specify the point in the room to purge up to. This can be
  24. specified by including an event_id in the URI, or by setting a
  25. ``purge_up_to_event_id`` or ``purge_up_to_ts`` in the request body. If an event
  26. id is given, that event (and others at the same graph depth) will be retained.
  27. If ``purge_up_to_ts`` is given, it should be a timestamp since the unix epoch,
  28. in milliseconds.
  29. The API starts the purge running, and returns immediately with a JSON body with
  30. a purge id:
  31. .. code:: json
  32. {
  33. "purge_id": "<opaque id>"
  34. }
  35. Purge status query
  36. ------------------
  37. It is possible to poll for updates on recent purges with a second API;
  38. ``GET /_synapse/admin/v1/purge_history_status/<purge_id>``
  39. Again, you will need to authenticate by providing an ``access_token`` for a
  40. server admin.
  41. This API returns a JSON body like the following:
  42. .. code:: json
  43. {
  44. "status": "active"
  45. }
  46. The status will be one of ``active``, ``complete``, or ``failed``.
  47. Reclaim disk space (Postgres)
  48. -----------------------------
  49. To reclaim the disk space and return it to the operating system, you need to run
  50. `VACUUM FULL;` on the database.
  51. https://www.postgresql.org/docs/current/sql-vacuum.html