Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

I've been hoping for an Imgur replacement for simple, hosted image sharing.

I'm happy to pay $1/mo, but when I tried to upload https://camo.githubusercontent.com/9ec8d13de2878c899fda0bd43... I got this, which doesn't look like what I uploaded: https://cln.sh/4coS9T / https://imgz.org/i5qphFzd.gif



Well that's extremely odd, I will look into that right now.

EDIT: This is very odd, I'm not really doing any processing on the uploaded files, so it should definitely return the originals. I will have this fixed soon though.

EDIT2: Unfortunately, the saved image in the DB itself is corrupt, so you will need to reupload after I solve this.

EDIT3: Alright this should be fixed! Now I can start submitting animated GIFs there.

EDIT4: Ironically, now ONLY animated GIFs work, because 2am is when I do some of my best work. Stand by...


You said, no support. Why do you even care? F*k this guy. Delete his account. /s


Hey, I use this thing, it has to work.


It only has to work for you! Did/do you need/use animated gifs?


Don't tell me what to do! I want to fix animated gifs and I'll fix animated gifs!


Per the edits on your previous posts, I read this more as "and I'll pivot to only supporting animated gifs!"


I can't say I didn't consider it...


Any picture can be an animated gif with one frame and a duration of 50 years which should do for this civilization.


yea fk tht guy


Fast support.


> saved image in the DB

Whoa now... you're putting images in the database?


Yes, it's a database. That's where you're meant to put DATA.


>Yes, it's a database. That's where you're meant to put DATA.

Most (all?) large-scale high-volume image storage architectures I'm aware of do not store billions of images as blobs in a database. Instead, they typically store the images as files. The database only holding metadata info and a pointer to the image filename location (or url if using AWS S3 or CDN).

E.g. Facebook is one of the largest MySQL sites (if not the largest) and they don't store photos directly in MySQL.


I'm joking, but the volume for IMGZ is way too low (and always will be) for data storage to matter.


Still low even after HN surge?


Let me check...

TWO more images were added today! At this rate, I'm going to need to buy a whole datacenter by next week.

https://imgz.org/blog/2020/12/23/haha-suckers/


I like you (and I like storing images in the database).

EDIT: I uploaded an image into your database https://imgz.org/i3joC5jC/


That is an excellent image, worthy of gracing my database.


Majestic Taco.


Don't knock exponential growth!


BTW, https://imgz.org/i9xyk2H2.png is broken and included prominently in https://imgz.org/blog/2020/12/23/haha-suckers/

Not sure is it some intentional irony or an actual bug.



Ill take the job.


I understand that postgres is pretty decent at storing large binary data though?

I've been meaning to investigate trying storing images in postgres on a hobby web project where it could be convenient; I'd still want to make sure I was streaming bytes from postgres to the client, not loading the whole image into memory and only once fully loaded sending it to the client. Looking at the pg API's for my language/platform of choice, it looked at least plausible to do this with a BLOB.


> I understand that postgres is pretty decent at storing large binary data though?

Storing large files in PostgreSQL is possible, but I would advise against it.

PostgreSQL uses a technique called TOAST to store large objects. If you store something in a bytea column, it'll first be compressed (either deflate or a new algorithm that I forgot the name). Then it will be split into 8KB chunks (page size) and stored together with all the other data.

Since most image formats are already compressed, this just wastes a lot of CPU cycles.

Also, the way storage is allocated in PostgreSQL may bite you in the ass. By default, storage is not returned to the OS. If you delete all images, the data will stay on disk and marked as reusable. Only if you do a full rewrite of the table will the free space be made available again.

Also, backups will become a pain. The easiest way to backup PostgreSQL servers is to just do a pg_dump. It works great up to a few gigabytes of data. If you have images or other large objects in the database, then pg_dump will quickly become unfeasible and you will have to find another way to do backups. Not a deal breaker, but something you should be aware.

Also, for best performance, the database should be on fast storage (eg. NVME SSD), whereas the image data typically doesn't need fast storage.

## A Practical Example:

One project I work on is an image database with 50k images. The high resolution previews are around 20GB. The PostgreSQL database with all the metadata is around 20MB.

It takes 10 seconds to do a full backup of the database. Everytime I change something in the application, I first create a dump of the database (which is just a few MB compressed). Then I do my changes, and if I make a mistake I always have a backup that I could restore in 10 seconds.

If the images were stored in the PostgreSQL database, a full backup would take much longer and would require a fast internet connection. And it would be much harder to work with.

My recommendation: Use the filesystem for storing files.


Thanks for info! What about binary large objects instead of bytea?

Size/speed of backups is a good point to consider.


I've never used PostgreSQLs large objects. You have to use this awkward API to use them, they aren't stored efficiently either, and as far as I can tell it's just a legacy feature that nobody has bothered to deprecate yet.

In my opinion the only neat thing about large objects is that you can edit files with a posix-like API in a database transaction, but I can't think of a scenario where that would actually be useful.


Postgres is indeed good at that. I know from experience.

If you want to commit ten things every second all week, don't transfer so much data in a single transaction that you hold any important locks for half a minute. And if you use replication, test while replicating.

If the blobs you store are small enough to not disturb your commit rate, then pg's drawbacks are IMO smaller than those of the alternatives, particularly if you want some sort of commit that returns when both image data and something else have been committed.


Thanks for info!

So you've stored images in the db in production and had it work out fine?

I don't want to commit ten things a second. It would be a pretty read-heavy write-light load. Sounds like that would avoid one path of riskiness at least.


Yes, exactly.

Many people answer a question like this: "How good is postgres at storing big blobs, relative to small things?" Postgres is indeed worse at storing large things. However, I think the most interesting question is something along these lines: "What's best, storing everything in Postgres and accepting that inefficiency for the big blobs, or implementing transactions, replication and/or backup with a part of the data in Postgres and the big blobs elsewhere?"

I'm awfully fond of having working backups, and postgres' performance problems with the blobs haven't been big enough that I've really noticed.


Does it still require a backup/restore cycle for upgrades? That could be an issue.


Yeah, that hasn't changed. You can also use the pg_upgrade script instead of a full backup/restore, or use logical replication if you want to upgrade the db server with zero downtime, but upgrading PostgreSQL is still somewhat annoying.


I too do that, in a different context, and it's fine. Databases have problems with big items, but images aren't big in that sense nowadays.

The problems relate mostly to backups/copies/reloads, that kind of thing, and copying an image doesn't cause anything to hiccup. A transaction that transferred 1MB over a modem line was a problem, that could block other commits for a long time, on today's networks 1MB doesn't take long.


... depending on the type of data.

Binary data in databases is usually not a great idea, but tolerable in low amounts.

I can't imagine storing images in a database, you're probably better off with a document store.

Relational Databases (well, the ones that I know the internals of) tend to have soft limits on row sizes, in PostgreSQL this is 8kb (which is very small for an image); to overcome this limitation Postgres uses what they call a TOAST table, which forces compression by default, which absolutely crumbles on binary data.

https://www.postgresql.org/docs/13/storage-toast.html

But, if it works, I'm not complaining- and I'm very certain that other such sites have worse architectural flaws in the beginning- this one is pretty easy to overcome if it becomes an issue and can be alleviated with aggressive caching of CDNs/varnish to buy you time if there's immediate issues. :)


If you were to go with PostgreSQL, wouldn't you store this in a large object, which is effectively stored outside of the actual table row? So, if you can store enough rows of meta data AND you provision enough storage, why wouldn't the database be able to do this. I don't imagine you want to put a primary key on the actual image data column (not possible with large objects, since the column just contains an "oid"). I'm not arguing for storing images in the database, I've seen it done either way, and done it myself either way, but I believe that it's an ongoing source of heated debate between proponents and opponents. I.e. not settled out of hand.


Large objects are _mostly_ an access method, the underlying implementation is staggeringly similar to TOAST.

> The large object implementation breaks large objects up into “chunks” and stores the chunks in rows in the database. A B-tree index guarantees fast searches for the correct chunk number when doing random access reads and writes.

You might try Foreign Data Wrapping.

In which case I still wouldn't because the database is going to be spending more time in doing round trips, better my application server does that, there's usually more of them.


This entire comment is accurate. I chose the DB for ease of backups more than anything.


How about filesystem or object storage? That where you meant to put a FILE which is what the user uploaded.


If IMGZ was a file sharing service it would be called FILZ or something. Obviously this is not that.


And if it were a hotel it could just be called ZZZ.


Advice these days is to rely on the database to do the right thing with your uploaded files. I think they all handle this rather well.


That sounds right. But even if it works great, it's gonna be the most expensive place to put your data. Those image blobs would be fine on spinning rust.

But yes, there's probably time for that optimization later, if the service takes off.


Doesn't iCloud use FoundationDB for storage of files?


say hello to my friend BLOB


Same for me. I tried uploading this test image - https://bhi61nm2cr3mkdgk1dtaov18-wpengine.netdna-ssl.com/wp-... (dont ask, lol)

and the uploaded image was a negative of it.


That one worked for me: https://imgz.org/i4mdbiQL.jpg


Sorry I may have been dishonest there. I downloaded it from the google search results directly, perhaps this link- https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTFsEM5...

it resulted in https://imgz.org/i5Q2gzwB.png


Hm, very odd that the type wasn't detected properly. The animated GIF issue is because of EXIF stripping ruining the image, though. I'm fixing that now.


It seems like you're still dealing with some pretty rudimentary issues here.


He threw it together in 2 days according to what's written on the website.

It literally has no semblance of trying to be a long term long running replacement to imgur. Just a dead simple image upload service that works from the CLI.


I did throw it together in two days, two years ago! I don't know why this image failed, when I tried it it worked. Animated GIFs were failing because I don't use them so I'd never tested on them. It's fixed now, though.


>I've been hoping for an Imgur replacement for simple, hosted image sharing.

If you are willing to pay for things, then any good old web host + FTP are your friends.


That sounds like a lot of work. Why not just push my screenshots to good ol' NNTP?


Because downloading a tiny GIF in 20 parts, is always fun. /s


And it’s only accessible for paying users for about a year, slightly more or less according to how much they pay and how much is uploaded by the rest of the internet…


That sounds really out-dated. Why not put the screenshots on a blockchain?


Or ipfs if your machine is often online


Again, straight up running an FTP server on your machine is still the easiest way to transfer large files.

Also faster than uploading to the cloud, and then having the other party download it.


There is ImgBB. You need to create an account, but it is free.

https://imgbb.com/


Nightmare fuel


This is hereby declared a feature.


Bug? Or feature?


Mint that NFT RIGHT NOW


IMGZ created this, IMGZ owns the copyright. IMGZ has a will of its own.




Consider applying for YC's Fall 2026 batch! Applications are open till July 27.

Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: