Queues in PostgreSQL | Citus Con: An Event for Postgres 2022

Поделиться
HTML-код
  • Опубликовано: 2 ноя 2024

Комментарии • 7

  • @elephant_888
    @elephant_888 2 года назад +5

    “pg-boss” on npm is a great package for enabling Postgres job-queue functionality in Node.

  • @RafaelPonte
    @RafaelPonte 2 года назад +1

    Fantastic talk, thanks for it, Thomas! 👏🏻👏🏻
    I'm a big fan of simple and pragmatic solutions, especially using relational databases, and SKIP LOCKED is one of the best features we can find in Postgres and many RDBMS! I love it!

  • @elephant_888
    @elephant_888 2 года назад

    Fantastic talk!! I think the idea of creating a Postgres plugin with native abstractions for high perf queues is a neat one.

  • @berndeckenfels
    @berndeckenfels 2 года назад

    I think the circular scan option works in Oracle with a ROWID predicate.
    Did you also look at prefetching (LIMIT 5 with multi stage states)
    What about updating a fixed number of records aka slots?

  • @onnorouast899
    @onnorouast899 Год назад

    great talk!

  • @tylerhudson6195
    @tylerhudson6195 6 месяцев назад

    ruclips.net/video/WIRy1Ws47ic/видео.html "The key thing would be to find a way to integrate with transactions. That's where all the benefit of using a database for your queue comes."

  • @tylerhudson6195
    @tylerhudson6195 6 месяцев назад

    very insightful, thank you Thomas (@MengTangmu) .