• locuester@lemmy.zip
    link
    fedilink
    English
    arrow-up
    5
    ·
    14 hours ago

    Clickhouse has a unique performance gain when you have a system that isn’t operational data that is normalized and updated often. But rather tables of timeseries data being ingested for write only.

    An example, stock prices or order books in real-time. Tens of thousands per second. Clickhouse can write, merge, aggregate records really nicely.

    Then selects against ordered data with aggregates are lightning fast. It has lots of nuances to learn and has really powerful capability, but only for this type of use case.

    It doesn’t have atomic transactions. Updates and deletes are very poor performing.