Office Hours: How we built the new UI for AuthZed Dedicated

Feature Highlight: Transaction Metadata

/assets/team/jimmy-zelinskie.jpg
November 7, 2024|4 min read

The release of SpiceDB v1.38 debuts new foundational API functionality for SpiceDB: Transaction Metadata. When writing relationships, you can now include arbitrary metadata that will be stored alongside the transaction and published to consumers of the Watch API.

We designed Transaction Metadata as a powerful building block for solving an array of challenges brought to our attention by users and customers.

Simply associating more information with a particular change to the underlying data powering authorization decisions unblocks countless potential use cases. For example, you can now include an identifier for a user whose action triggered SpiceDB to delete a relationship, making it possible to easily attribute permissions changes to a particular end user.

Additionally, you could use transaction metadata to store a distributed tracing identifier in a transaction threaded through SpiceDB and eventually published to an event streaming technology like Kafka or Red Panda and asynchronously processed by other systems.

Please bear in mind: SpiceDB limits the size of metadata to 65k of total storage, regardless of datastore. This limit is in place to preserve consistency across all datastores and to eventually maximize compatibility when migrating relationship data across datastores. We based this limitation on MySQL's maximum size for text fields.

Origin Story

We first encountered friction while working with a customer that has a mature architecture built around Kafka streams. Together, we were struggling to measure the end-to-end performance for requests flowing through their event streams where SpiceDB was only one of many systems doing the processing. In retrospect, the problem was obvious: async workflows need observability just as much as synchronous ones.

SpiceDB had the typical support you'd expect for OpenTelemetry tracing: synchronous operations (like requests and responses) included the standard trace ID headers. However, changes emitted from the Watch API did not retain the trace ID that was included in the request that wrote the transaction. Thus consumers had no way to associate a change with a trace ID and it was impossible to observe timing data as it flowed through the message bus and into other systems.

We could've tackled this problem by explicitly supporting trace IDs in the Watch API, but we decided instead to wait and see if other users would share related challenges that could perhaps require a more holistic solution.

Building Transaction Metadata

While adding support for the metadata itself was relatively straightforward, all datastore implementations had to be modified to the extent that they require executing migrations when upgrading SpiceDB to v1.38. Datastore implementations based on relational databases have a new column in their transactions table for metadata. CockroachDB is implemented slightly differently: metadata is stored in its own table because SpiceDB uses CockroachDB's native transactions and emits events to the Watch API via CockroachDB's changefeed. We often pay extra attention when designing SpiceDB code that relies on CockroachDB's changefeed functionality, such as the Watch API, for two reasons:

  1. Its behavior has surprised us multiple times in the past
  2. There are two different versions of changefeeds (enterprise and core)

We originally laid the foundation for this feature in Q2, but we wanted more time to experiment with designs for the CockroachDB implementation. As a team, we decided to prioritize the Tech Preview of Relationship Integrity and General Availability of LookupResources v2 before returning back to work on Transaction Metadata now in Q4.

Conclusion

We've covered two use cases in this post that drove our development of the Transaction Metadata, but I'm positive there are plenty more we haven't thought of yet. That's what makes me the most excited about shipping foundational features: they allow for the creativity of our community to shine light on new ways to keep their authorization data correct, fast, and secure.

Get started for free

Join 1000s of companies doing authorization the right way.