HackerTrans
トップ新着トレンドコメント過去質問紹介求人

Sheldon_fun

no profile record

投稿

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

medium.com
169 ポイント·投稿者 Sheldon_fun·10 か月前·60 コメント

Powering Crypto Workloads with Sub-100ms Latency

risingwave.com
1 ポイント·投稿者 Sheldon_fun·10 か月前·0 コメント

Forget Vector Databases: RAG with Just SQL and LLM

risingwave.com
2 ポイント·投稿者 Sheldon_fun·11 か月前·0 コメント

Mitigating Backpressure from High Join Amplification with Unaligned Joins

risingwave.com
1 ポイント·投稿者 Sheldon_fun·11 か月前·0 コメント

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

old.reddit.com
2 ポイント·投稿者 Sheldon_fun·11 か月前·1 コメント

The Equality Delete Problem in Apache Iceberg

risingwave.com
1 ポイント·投稿者 Sheldon_fun·11 か月前·1 コメント

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

risingwave.com
2 ポイント·投稿者 Sheldon_fun·12 か月前·1 コメント

Creating a Streaming Iceberg Table in 3 Steps with RisingWave

risingwave.com
1 ポイント·投稿者 Sheldon_fun·12 か月前·0 コメント

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

github.com
66 ポイント·投稿者 Sheldon_fun·昨年·26 コメント

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

github.com
5 ポイント·投稿者 Sheldon_fun·昨年·0 コメント

RisingWave Adds Hosted Iceberg Catalog– No External Setup Needed

risingwave.com
1 ポイント·投稿者 Sheldon_fun·昨年·0 コメント

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

github.com
2 ポイント·投稿者 Sheldon_fun·昨年·0 コメント

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

github.com
44 ポイント·投稿者 Sheldon_fun·昨年·8 コメント

An On-Premise Observability and Management UI for RisingWave

github.com
1 ポイント·投稿者 Sheldon_fun·昨年·0 コメント

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

risingwave.com
1 ポイント·投稿者 Sheldon_fun·昨年·1 コメント

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

risingwave.com
2 ポイント·投稿者 Sheldon_fun·昨年·0 コメント

[untitled]

1 ポイント·投稿者 Sheldon_fun·昨年·0 コメント

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

medium.com
5 ポイント·投稿者 Sheldon_fun·昨年·2 コメント

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

github.com
28 ポイント·投稿者 Sheldon_fun·昨年·2 コメント

Ending Flaky Tests in Distributed Systems via Deterministic Simulation

risingwave.com
1 ポイント·投稿者 Sheldon_fun·昨年·0 コメント

コメント

Sheldon_fun
·11 か月前·議論
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 か月前·議論
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 か月前·議論
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
·昨年·議論
No fluff, no hand-waving—just every mistake, lesson, and trick we learned along the way.
Sheldon_fun
·昨年·議論
Understanding Twitter's Data Infrastructure Challenges and Open-Source Solutions
Sheldon_fun
·昨年·議論
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
·昨年·議論
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
·昨年·議論
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
·昨年·議論
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
·昨年·議論
An in-depth comparison between time-series databases (TSDBs) and streaming databases, and when to use each.
Sheldon_fun
·昨年·議論
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
·昨年·議論
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!