Most active commenters

    ←back to thread

    570 points davidgu | 12 comments | | HN request time: 0.74s | source | bottom
    1. callamdelaney ◴[] No.44526788[source]
    My kneejerk reaction to the headline is ‘why would it?’.

    It’s unsurprising to me that an AI company appears to have chosen exactly the wrong tool for the job.

    replies(3): >>44526797 #>>44527255 #>>44528010 #
    2. bravesoul2 ◴[] No.44526797[source]
    Yeah I have no idea whether it would. But I'd load test it if it needed to scale.

    SQS may have been a good "boring" choice for this?

    3. kristianc ◴[] No.44527255[source]
    Sounds like a deliberate attempt to avoid spinning up Redis, Kafka, or an outbox system early on.. and then underestimated how quickly their scale would make it blow up. Story as old as time.
    replies(4): >>44527509 #>>44527547 #>>44529439 #>>44529665 #
    4. j16sdiz ◴[] No.44527509[source]
    Kafka head of line blocking sucks.
    replies(2): >>44527936 #>>44534841 #
    5. const_cast ◴[] No.44527547[source]
    I find the opposite story more true: additional complexity in the form of caching early, for a scale that never comes. I've worked on one too many sprawling, distributed systems with too little users to justify it.
    replies(1): >>44528682 #
    6. chrnola ◴[] No.44527936{3}[source]
    Guaranteeing order has its tradeoffs.

    There is work happening currently to make Kafka behave more like a queue: https://cwiki.apache.org/confluence/display/KAFKA/KIP-932%3A...

    7. TheTaytay ◴[] No.44528010[source]
    Because documentation doesn’t warn about this well-loved feature effectively ruins the ability to perform parallel writes, and because everything else in Postgres scales well.

    I think it’s a reasonable assumption. Based on the second half of your comment, you clearly don’t think highly of “AI companies,” but I think that’s a separate issue.

    8. physix ◴[] No.44528682{3}[source]
    "Sprawling distributed systems".

    I like that. Sounds like a synonym for "Platform Engineering". :-)

    I remember being amazed that lambda architecture was considered a kind of reference, when it looked to me more like a workaround.

    We like to build IT cathedrals, until we have to run them.

    replies(1): >>44529620 #
    9. oulipo ◴[] No.44529439[source]
    Not sure I get it... how would you replicate this functionality with Kafka? You'd still need to have the database LISTEN to changes and push it to Kafka no?
    10. const_cast ◴[] No.44529620{4}[source]
    If there's one thing I took away from school, it's that distributed systems are hard. More failure points and much more communication hops. Serialization into deserialization into serialization again over network hops.
    11. v5v3 ◴[] No.44529665[source]
    Better to be successful with simple tech and have a minor 'blow up', then over engineer and go bust.
    12. LgWoodenBadger ◴[] No.44534841{3}[source]
    Isn't this one of the things partitioning is meant to ameliorate? Either through partitions themselves, or through an appropriate partitioning strategy?