Hi there, I’m currently looking into migrating the blobs stored in the database to s3 based on these docs since my db currently uses ~18GB which is quite a lot IMHO. Is there a way to keep the blobs stored already in the db when moving blob storage to s3? Or would I loose these in the process?
yes, this is how the system is designed. when you enable s3 it attempts to fetch logs from s3 and if they do not exist, it checks the database. This allows for a seamless upgrade without having to worry about losing data.
2 Likes
That makes sense. Thanks!