HackerTrans
TopNewTrendsCommentsPastAskShowJobs

Sheldon_fun

no profile record

Submissions

I built Foyer: a Rust hybrid cache that slashes S3 latency

medium.com
169 points·by Sheldon_fun·10 месяцев назад·60 comments

Powering Crypto Workloads with Sub-100ms Latency

risingwave.com
1 points·by Sheldon_fun·10 месяцев назад·0 comments

Forget Vector Databases: RAG with Just SQL and LLM

risingwave.com
2 points·by Sheldon_fun·11 месяцев назад·0 comments

Mitigating Backpressure from High Join Amplification with Unaligned Joins

risingwave.com
1 points·by Sheldon_fun·11 месяцев назад·0 comments

Data Engineering 2025: Unified Batch‑Streaming, Iceberg Rise and Data Contracts

old.reddit.com
2 points·by Sheldon_fun·11 месяцев назад·1 comments

The Equality Delete Problem in Apache Iceberg

risingwave.com
1 points·by Sheldon_fun·11 месяцев назад·1 comments

Why Postgres CDC to Iceberg isn't a solved problem: lessons from production

risingwave.com
2 points·by Sheldon_fun·12 месяцев назад·1 comments

Creating a Streaming Iceberg Table in 3 Steps with RisingWave

risingwave.com
1 points·by Sheldon_fun·12 месяцев назад·0 comments

RisingWave: An Open‑Source Stream‑Processing and Management Platform

github.com
66 points·by Sheldon_fun·в прошлом году·26 comments

Rust hybrid memory and disk cache to cut S3 latency and costs

github.com
5 points·by Sheldon_fun·в прошлом году·0 comments

RisingWave Adds Hosted Iceberg Catalog– No External Setup Needed

risingwave.com
1 points·by Sheldon_fun·в прошлом году·0 comments

Foyer aims to be an efficient and user-friendly hybrid cache lib in Rust

github.com
2 points·by Sheldon_fun·в прошлом году·0 comments

Nimtable: Open-source web UI to browse and manage Apache Iceberg tables

github.com
44 points·by Sheldon_fun·в прошлом году·8 comments

An On-Premise Observability and Management UI for RisingWave

github.com
1 points·by Sheldon_fun·в прошлом году·0 comments

We Built an In-Memory-Class Architecture on Top of S3 – and Made It Work

risingwave.com
1 points·by Sheldon_fun·в прошлом году·1 comments

Detect Spoofing in Real Time Using Just SQL and Open-Source Tools

risingwave.com
2 points·by Sheldon_fun·в прошлом году·0 comments

[untitled]

1 points·by Sheldon_fun·в прошлом году·0 comments

The Rust Closure Pitfall That Silently Corrupted Our Metrics: A Debugging Saga

medium.com
5 points·by Sheldon_fun·в прошлом году·2 comments

Show HN: Await-Tree – Visualize Async Rust Task Execution in Real-Time

github.com
28 points·by Sheldon_fun·в прошлом году·2 comments

Ending Flaky Tests in Distributed Systems via Deterministic Simulation

risingwave.com
1 points·by Sheldon_fun·в прошлом году·0 comments

comments

Sheldon_fun
·11 месяцев назад·discuss
I’m curious: Have you started using data contracts in your pipelines? Is the unified batch/stream model worth the added complexity?
Sheldon_fun
·11 месяцев назад·discuss
From my private conversations with several Iceberg PMC members, it’s clear that full equality delete support across major query engines will be slow — not due to lack of will, but due to complexity.
Sheldon_fun
·12 месяцев назад·discuss
Although the last time I touched Debezium in 2020, it was too immature to adopt, I thought surely its problems had been solved by now. Apparently not. I really appreciate this in-depth list of real-world problems encountered by clients trying to pipe CDC-captured changes.
Sheldon_fun
·в прошлом году·discuss
No fluff, no hand-waving—just every mistake, lesson, and trick we learned along the way.
Sheldon_fun
·в прошлом году·discuss
Understanding Twitter's Data Infrastructure Challenges and Open-Source Solutions
Sheldon_fun
·в прошлом году·discuss
Key takeaways: Rust 2021's closure minimal capture breaks RAII patterns when only Copy-type fields are used in structs with Drop impl. Even with impl Drop, closures may capture Copy fields instead of the whole struct — a surprising edge case. Fix requires explicit ownership transfer via let stats = self.stats to override closure's partial capture.
Sheldon_fun
·в прошлом году·discuss
etcd is primarily designed for bare-metal deployments, and its performance often suffered in cloud environments due to the relatively slower disk performance compared to on-premise setups.
Sheldon_fun
·в прошлом году·discuss
Kafka has dominated data streaming for years, but cloud-native platforms (Snowflake, Redshift) now ingest data directly, batch-streaming convergence (Iceberg, lakehouses) is reshaping architectures, and cost-efficient alternatives (WarpStream, Redpanda) are cutting costs by 10x. This article explores whether Kafka can adapt—or if the streaming ecosystem is moving beyond it.
Sheldon_fun
·в прошлом году·discuss
The core idea: an LLM subscribes to event-driven triggers defined in Streaming SQL (e.g., stock price surges, security alerts, IoT signals). When a trigger fires, the database pushes relevant context to the LLM, enabling instant decision-making without constant polling.
Sheldon_fun
·в прошлом году·discuss
An in-depth comparison between time-series databases (TSDBs) and streaming databases, and when to use each.
Sheldon_fun
·в прошлом году·discuss
Founder of a data streaming startup (a PhD in database systems, ex-AWS Redshift/IBM researcher) explains why AI will fundamentally reshape data engineering within 24 months. Key insights: How text-to-SQL is becoming a commodity (with Snowflake hitting 90% accuracy) Why vector databases are a dead-end business model When AI replaces feature engineering (and what that means for Spark/RisingWave) The surprising way AI acts as "lossy compression" for storage Why database vendors must now answer: "Do we even need databases anymore?"
Sheldon_fun
·в прошлом году·discuss
roaring-rs is a Rust implementation of the Roaring bitmap data structure, originally introduced as a Java library for efficiently representing large sets of integers. This crate offers memory-efficient, high-performance compressed bitsets for Rust, and is compatible with the Roaring format used in other languages. Benchmarks and real-world datasets are included, and contributions are welcome!