devservices: Update relay_url to point at relay-cell#134
Merged
Conversation
This change supports `cell-routing` mode in sentry's devservices, which uses two relays in order to exercise the advertised upstream path, with Synapse in between. The upstream of Synapse is the `relay-cell` service.
lynnagara
added a commit
to getsentry/sentry
that referenced
this pull request
Jun 2, 2026
`cell-routing` mode in devservices now uses a two-relay chain that exercises Relay's advertised-upstream routing locally — entirely from sentry's devservices, leaving the relay repo and default `relay` config untouched: - relay-cell (:7900): processing terminus; registers with Sentry and advertises itself as the upstream for downstream relays. - relay-edge (:7901): connects to relay-cell via the synapse-ingest-router:3000. Project envelops are then forwarded directly to the advertised upstream it reads from relay-cell's project config, bypassing synapse. - also runs taskbroker + taskworker (build project configs) and ingest-events + post-process-forwarder-errors so events ingest end-to-end into a visible issue. - bin/send-cell-test-event.py: sends a test event through the edge. The relay credentials for the new `relay-edge` and `relay-cell` services were generated with the `relay credentials generate --stdout` method. The end to end path also depends on this change to Synapse's dev config getsentry/synapse#134
markstory
approved these changes
Jun 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This change supports
cell-routingmode in sentry's devservices, which uses two relays in order to exercise the advertised upstream path, with Synapse in between.The upstream of Synapse is the
relay-cellservice.