TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Does anybody store files in S3 for their SaaS?

5 pointsby Beefinover 3 years ago
Is anybody storing non-text files in S3 for their software? I&#x27;m referring to pdf, video, audio, images, etc.<p>If so, it would mean the world if I could talk to you and just ask about some of your experience with uploading&#x2F;retrieving these files within your software.<p>To give context: I have a free managed API that offers full-text-search for your S3 bucket to integrate into your software. The website is https:&#x2F;&#x2F;mixpeek.com<p>Let me know if this matches you and if you&#x27;re willing to answer some quick Qs in exchange to be involved in the free pilot :)

3 comments

rshnotsecureover 3 years ago
What you describe is part of the AWS &quot;Well Architected Framework&quot;. Static files should, as much as possible, be hosted on S3. This takes the pressure off the web&#x2F;app server, is cheaper, increases resiliency to DDOS attacks, and allows much faster loading, particularly of video files, when one integrates the S3 storage with a CDN (such as CloudFront).<p>What I would find interesting is anyone running a SaaS project and NOT using S3&#x2F;object storage for a significant amount of their files.
评论 #29206680 未加载
Jugurthaover 3 years ago
I think there&#x27;s a typo in the code example for the Python client that would result in a NameError if run<p><pre><code> from mixpeek import mixpeek </code></pre> Should be<p><pre><code> from mixpeek import Mixpeek </code></pre> Given that it is the class instantiated below.<p>One point in the Healthcare and Insurance use case reads as follows<p>&gt;<i>Ensure the are up to date Insurance Documents</i><p>Do you mean &quot;Keep Insurance Documents up to date&quot;?<p>We use S3 for <a href="https:&#x2F;&#x2F;iko.ai" rel="nofollow">https:&#x2F;&#x2F;iko.ai</a> and give a filesystem like experience for notebook users. They can &#x27;cd&#x27;, &#x27;ls&#x27;, etc on S3 buckets right from a Jupyter notebook.<p>We both integrate with external buckets, private or public, but also use an S3 compatible object storage (MinIO), for which I wrote this library: <a href="https:&#x2F;&#x2F;pypi.org&#x2F;project&#x2F;bmc&#x2F;" rel="nofollow">https:&#x2F;&#x2F;pypi.org&#x2F;project&#x2F;bmc&#x2F;</a><p>One thing I find will hinder your product&#x27;s adoption is the &quot;&#x2F;upload&quot; route. If I were to use your tool, I&#x27;d want to use it to <i>search</i> through already existing objects in my bucket, not to upload to the bucket.<p>That was one objection we faced, and then we added the ability to mount S3 buckets because people had datasets of 1TB or so in existing buckets.
评论 #29206666 未加载
motyarover 3 years ago
Yes, we store the generated PNG images for CDN links at Bruzu.com
评论 #29206674 未加载