Show HN: mbtiles-s3-server – serve vector map tiles directly from mbtiles on S3
1–10 of 20 posts
Re: Show HN: mbtiles-s3-server – serve vector map tiles directly from mbtiles on S3
#2Re: Show HN: mbtiles-s3-server – serve vector map tiles directly from mbtiles on S3
#3This is pretty cool! Didn't know you can query SQLite databases from s3. I recently tried out PMTiles[1] to do something similar but it requires an extra processing step. Would anybody know the pros and cons of this vs PMTtiles? [1] https://github.com/protomaps/PMTiles
Re: Show HN: mbtiles-s3-server – serve vector map tiles directly from mbtiles on S3
#4This is pretty cool! Didn't know you can query SQLite databases from s3. I recently tried out PMTiles[1] to do something similar but it requires an extra processing step. Would anybody know the pros and cons of this vs PMTtiles? [1] https://github.com/protomaps/PMTiles
Re: Show HN: mbtiles-s3-server – serve vector map tiles directly from mbtiles on S3
#5(For those running on bare metal, I knocked this up a few months ago - https://github.com/systemed/mod_mbtiles - which is an Apache module that does pretty much the same thing.)
Re: Show HN: mbtiles-s3-server – serve vector map tiles directly from mbtiles on S3
#6https://github.com/michalc/sqlite-s3-query/blob/main/sqlite_...
Here's the inspiration for that: https://github.com/phiresky/sql.js-httpvfs
Re: Show HN: mbtiles-s3-server – serve vector map tiles directly from mbtiles on S3
#7This is great. Servers have been the weak link in the open vector tiles stack for a good while and an out-of-the-box recipe like this will make a real difference. (For those running on bare metal, I knocked this up a few months ago - https://github.com/systemed/mod_mbtiles - which is an Apache module that does pretty much the same thing.)
Re: Show HN: mbtiles-s3-server – serve vector map tiles directly from mbtiles on S3
#8This is pretty cool! Didn't know you can query SQLite databases from s3. I recently tried out PMTiles[1] to do something similar but it requires an extra processing step. Would anybody know the pros and cons of this vs PMTtiles? [1] https://github.com/protomaps/PMTiles
I wouldn't recommend using any sqlite database direct on s3... You'll end up with a pretty high bill from all the operations.
Re: Show HN: mbtiles-s3-server – serve vector map tiles directly from mbtiles on S3
#9This is pretty cool! Didn't know you can query SQLite databases from s3. I recently tried out PMTiles[1] to do something similar but it requires an extra processing step. Would anybody know the pros and cons of this vs PMTtiles? [1] https://github.com/protomaps/PMTiles
The extra conversion step is something I'm hoping to get rid of by building PMTiles writers into tiling tools directly.
Re: Show HN: mbtiles-s3-server – serve vector map tiles directly from mbtiles on S3
#10Earlier quoted context omitted.
I wouldn't recommend using any sqlite database direct on s3... You'll end up with a pretty high bill from all the operations.
Do range requests against s3 work if you’re fronting with Cloudflare and aggressively caching? Could be more economical.
Makes experimenting with things like this much cheaper.
(I work for CF)