- Mar 17, 2021
-
- Jan 03, 2021
-
-
Travis Ralston authored
-
- Aug 17, 2020
-
-
Travis Ralston authored
Fixes https://github.com/turt2live/matrix-media-repo/issues/271 at the same time
-
- Jul 18, 2020
-
-
Travis Ralston authored
-
- Jun 23, 2020
-
-
Travis Ralston authored
This removes a select across the whole table by ensuring we generate a media ID which is highly unlikely to conflict with the database.
-
- Apr 24, 2020
-
-
Jason Robinson authored
The new parameter `filterUserDuplicates` is set to true everywhere else except in the import_synapse call. This ensures direct duplicates from the same user will get stored in an import from Synapse situation when migrating to the mediarepo. Closes #241
-
- Mar 26, 2020
-
-
Travis Ralston authored
-
Travis Ralston authored
This should help memory some more. See https://github.com/turt2live/matrix-media-repo/issues/237 Theory is that by dumping the streams we'll relieve any bytes held on by the S3 libraries.
-
- Mar 07, 2020
-
-
Travis Ralston authored
-
- Dec 28, 2019
-
-
Travis Ralston authored
Part of https://github.com/turt2live/matrix-media-repo/issues/209
-
Travis Ralston authored
Part of https://github.com/turt2live/matrix-media-repo/issues/209
-
- Sep 08, 2019
-
- Sep 03, 2019
-
-
Travis Ralston authored
-
Travis Ralston authored
Fixes https://github.com/turt2live/matrix-media-repo/issues/163 Luckily it would have flagged the upload as quarantined, but still not a good thing to have.
-
- Jun 25, 2019
-
- Jun 20, 2019
-
-
Andrew Morgan authored
-
- Feb 25, 2019
-
-
Travis Ralston authored
-
Travis Ralston authored
-
- Feb 24, 2019
-
-
Travis Ralston authored
-
Travis Ralston authored
-
Travis Ralston authored
There's some other functions which still need some work in order to fully complete the upload process
-
Travis Ralston authored
Another step forwards to having different storage backends. s3 uploads currently not implemented
-
- Feb 03, 2019
-
- Nov 13, 2018
-
- Nov 12, 2018
-
-
Travis Ralston authored
**Caution**: This is a major migration that changes how files are tracked within the database. Although tested to ensure things won't go wrong, there is the possibility of something going haywire. It is recommended to run the following database commands before upgrading: CREATE TABLE media_backup AS TABLE media; CREATE TABLE thumbnails_backup AS TABLE thumbnails; In the event you need to roll back, run the following: DROP TABLE media; DROP TABLE thumbnails; CREATE TABLE media AS TABLE media_backup; CREATE TABLE thumbnails AS TABLE thumbnails_backup; DELETE FROM gomigrate WHERE migration_id = 7; This will cause any files uploaded between upgrading and rolling back to be lost. NOTE: The migration will take a while and runs on the first access of a file. If you have a lot of files, this could take a while. ----- Fixes https://github.com/turt2live/matrix-media-repo/issues/106 Step towards https://github.com/turt2live/matrix-media-repo/issues/47
-
Travis Ralston authored
-
- Nov 11, 2018
-
-
Travis Ralston authored
Future support will include deleting media that hasn't been accessed in a while
-
- Sep 14, 2018
-
-
Pavel Kardash authored
-
Pavel Kardash authored
-
- Jun 16, 2018
-
-
Travis Ralston authored
Part of #58
-