arrudafernando
HOBBYOP
2 years ago
How do I check the files that are in my postgres database, and delete files that are not needed?
ID Project: 166d3751-42cb-4032-8849-ca8f64aac2f7
4 Replies
2 years ago
what is your use case for doing this? You should not be messing with the files used in your database unless you know what you’re doing
I need to get 2000 PDF files from Google Drive and send them to OpenAi, but my Postgres was full when I started downloading the binary file, I needed to increase my limit. It would be interesting to store them in a temporary file.
2 years ago
Postgres should not be used for object storage. Use a cloud bucket like Amazon S3 https://aws.amazon.com/s3/
so theoretically it's not the binary files that are in postgres. I'll do more tests