database for huge files like audio and video

前端 未结 2 355
眼角桃花
眼角桃花 2021-01-07 02:13

My application creates a large number of files, each up to 100MB. Currently we store these files in the file system which works pretty well. But I am wondering if there is a

2条回答
  •  醉梦人生
    2021-01-07 02:43

    Relational databases are no good at files this big. You could go to something like HDFS, but it may not be worth the trouble if what you have is doing the job. I believe it does break large files down into chunks though.

提交回复
热议问题