Live data from Hacker News

Viewing profile — hubertzhang

hubertzhang

HN member
Joined
Sat, Jun 29, 2024, 3:28 PM UTC
HN karma
20
Public activity
34 items

About hubertzhang

hubertzhang@eloqdata.com

Recent public activity

  1. comment
  2. story
  3. comment
    Comment #46734595

    Snowflake also uses S3 as primary storage for OLAP workload, what's diff?

  4. comment
    Comment #46734460

    we leverage batch write optimization which uses Copy-on-write B-tree variant enables high-throughput batch writes without blocking concurrent reads. MVCC-based design eliminates lo…

  5. comment
    Comment #46734035

    Most Redis alternatives that use disk for persistence struggle with tail latency (P9999) due to background maintenance or OS filesystem overhead. We built EloqKV on a custom storag…

  6. story
  7. comment
    Comment #45643015

    My reflections on the AWS us-east-1 outage. Yesterday I posted a Show HN introducing our MongoDB-compatible database EloqDoc ( https://news.ycombinator.com/item?id=45634638 ). Toda…

  8. story
  9. comment
    Comment #45642355

    I cannot pull images from docker hub.

  10. comment
    Comment #45635081

    Like AWS, json is OK for me

  11. comment
    Comment #45396825

    A recent hacker-news argues: “Redis is fast — I’ll cache in Postgres.” The author benchmarks a simple API and concludes that although Redis is faster, Postgres is “fast enough,” an…

  12. story
  13. comment
    Comment #44957005

    That use case aligns perfectly with EloqKV’s capabilities. In pure cache mode, batching multi-key deletions within Lua scripts can significantly reduce latency by minimizing client…

  14. comment
    Comment #44956041

    Yes, Lua in EloqKV has no such limitations. You can freely read data, generate new keys, and even query those keys within Lua scripts. Underneath, EloqKV’s transaction layer is pow…

  15. comment
    Comment #44954849

    I’m Hubert, CTO of EloqData. That’s a great question. Redis Cluster is often thought of as a distributed database, but in reality it’s not truly distributed. It relies on a smart c…

  16. comment
    Comment #44954316

    Some Redis variants focus on persistence—KVrocks, for example, or MemoryDB, which emphasizes durability through redo logs to minimize data loss. However, they are not truly transac…

  17. comment
    Comment #44869316

    Does Neki still need sharding key in query, just like Citus?

  18. comment
    Comment #44751444

    I’m the co-founder of EloqData. I recently gave a talk on EloqDoc and Pulsar integration at Data Streaming Summit 2025. It was a great event, and Ursa was definitely one of the hot…

  19. comment
    Comment #42764586

    Is Meta/X/Google open source? Is Gamil/Outlook open source? All of them gather user's data. They are all "free" software

  20. comment
  21. comment
    Comment #41608372

    > It superficially sounds like a series of server processes fronting actual database servers, which sounds like another layer of partition vulnerability and points of failure I agr…

  22. comment
    Comment #41608192

    Good question! WAL and TxService(TxMap) are fully decoupled, allowing you to deploy them on the same node or across different machines. If your workload is write-intensive, you mig…

  23. comment
    Comment #41606910

    Good question! As explained in the linked article, our core technology, Data Substrate, is modular by design and requires a storage layer to handle the actual data (more precisely …

  24. comment
    Comment #41606686

    The current release is a prebuilt binary, giving users flexibility in how they use the software. The open-source model is still being decided, but a license file is included in the…

  25. comment
    Comment #41606673

    Yes, this is a top priority for us, and we aim to pass the Jepsen test before the official GA release.