Where's the event payload stored?

Hi Troy,

welcome in the world of Postgres. It stores binary data in a separate location, referencing it by ID. It’s a type of “optimization” that doesn’t really optimize anything for the use case of an event store. You can tell Postgres to store data in-line, using TOAST. Not entirely sure how that needs to be configured. It’s a Postgres-specific thing.

Cheers,

Allard