Talks - A. Jesse Jiryu Davis: Consistency and isolation for Python programmers

Поделиться
HTML-код
  • Опубликовано: 13 сен 2024
  • When you use a SQL database like Postgres, you have to understand the subtleties of isolation levels from "read committed" to "serializable." And distributed databases like MongoDB offer a range of consistency levels, from "eventually consistent" to "linearizable" and many options in between. Plus, non-experts usually confuse "isolation" with "consistency!" If we don't understand these concepts we risk losing data, or money, or worse. So what's the bottom line?
    Isolation: in a simple world, your database runs on one machine and executes each request one-at-a-time. In reality, databases execute requests in parallel, leading to weird phenomena called "anomalies". To see why anomalies happen, we'll look at Python code that simulates how a database executes operations. The various isolation levels make different tradeoffs between the anomalies they allow, versus the parallelism they can achieve.
    Consistency: distributed databases keep copies of your data on several machines, but these copies go out of sync. This leads to new anomalies: weird phenomena that reveal the out-of-sync data, and make your application feel like it's in a time warp. The various consistency levels make tradeoffs between anomalies versus latency. It depends how long you're willing to wait for your data changes to be synced across all the machines. Again, we'll look at a Python simulation to understand these anomalies.
    You don't need to know all the names and details of every consistency and isolation level. You can refer to this handy chart. And you don't need to read all the academic papers, but I'll name four or five that are worth your time. Now, make informed decisions about consistency and isolation, and use your database with confidence!

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

  • @_elkd
    @_elkd 11 месяцев назад

    This talk saved me months of reading

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

    I'm finally a half way to fully understand ACID properties. Thanks Jesse, pls have another talk on atomicity and durability.

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

    🌷 Promo'SM