Show HN: SlateDB – An embedded storage engine built on object storage SlateDB is an embedded storage engine built as a log-structured merge-tree. Unlike traditional LSM-tree storage engines, SlateDB writes data to object storage (S3, GCS, ABS, MinIO, Tigris, and so on). Leveraging object storage allows SlateDB to provide bottomless storage capacity, high durability, and easy replication. The trade-off is that object storage has a higher latency and higher API cost than local disk. To mitigate high write API costs (PUTs), SlateDB batches writes. Rather than writing every put() call to object storage, MemTables are flushed periodically to object storage as a string-sorted table (SST). The flush interval is configurable. To mitigate write latency, SlateDB provides an async put method. Clients that prefer strong durability can await on put until the MemTable is flushed to object storage (trading latency for durability). Clients that prefer lower latency can simply ignore the future returned by put. To mitigate read latency and read API costs (GETs), SlateDB will use standard LSM-tree caching techniques: in-memory block caches, compression, bloom filters, and local SST disk caches. https://ift.tt/jEYONsb August 15, 2024 at 12:47AM
Show HN: SlateDB – An embedded storage engine built on object storage https://ift.tt/Vrx5KDC
Related Articles
Show HN: Bubble Cam – Walking simulator from panoramic photography https://ift.tt/3GoAiyDShow HN: Bubble Cam – Walking simulator from panoramic photography htt… Read More
Show HN: Running a simple local HTTP server in a web page https://ift.tt/3bqdHmZShow HN: Running a simple local HTTP server in a web page https://ift.… Read More
Show HN: Made a e-4917 emulator with a short tutorial https://ift.tt/3vHJOYJShow HN: Made a e-4917 emulator with a short tutorial https://ift.tt/2… Read More
Show HN: GitHub for Docker Images https://ift.tt/3jHXbmLShow HN: GitHub for Docker Images https://contains.dev/ October 28, 20… Read More
Show HN: Tool to avoid some websites force you to register to read contents https://ift.tt/3CCh2veShow HN: Tool to avoid some websites force you to register to read con… Read More
Show HN: my book, The Minimalist Entrepreneur https://ift.tt/3jzExO7Show HN: my book, The Minimalist Entrepreneur https://ift.tt/3ntTbYq O… Read More
Show HN: Bitswarm – A Market Place for Torrent Seeds Built on Bitcoin https://ift.tt/3Ez4rK2Show HN: Bitswarm – A Market Place for Torrent Seeds Built on Bitcoin … Read More
Show HN: FlakyBot – identify and suppress flaky tests https://ift.tt/3BojbJBShow HN: FlakyBot – identify and suppress flaky tests https://ift.tt/3… Read More
0 Comments: