Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support /mode for Schema Registry #647

Merged
merged 55 commits into from
Jul 31, 2024
Merged

Conversation

kbatuigas
Copy link
Contributor

@kbatuigas kbatuigas commented Jul 30, 2024

Description

Resolves https://github.com/redpanda-data/documentation-private/issues/2619
Resolves https://github.com/redpanda-data/documentation-private/issues/2526
Review deadline: 30 July 2024

Related #646 (update API reference)

Page previews

Use the Schema Registry API > Use READONLY mode for disaster recovery

Checks

  • New feature
  • Content gap
  • Support Follow-up
  • Small fix (typos, links, copyedits, etc)

Deflaimun and others added 30 commits June 19, 2024 19:18
Co-authored-by: Paulo Borges <[email protected]>
Co-authored-by: Jake Cahill <[email protected]>
Co-authored-by: Michele Cyran <[email protected]>
Co-authored-by: Mike Boquard <[email protected]>
Co-authored-by: Michele Cyran <[email protected]>
Co-authored-by: tris0laris <[email protected]>
Co-authored-by: Paulo Borges <[email protected]>
Co-authored-by: Dave Voutila <[email protected]>
Co-authored-by: Angela Simms <[email protected]>
Co-authored-by: Andrew Hsu <[email protected]>
Co-authored-by: Oren Leiman <[email protected]>
Co-authored-by: Kat Batuigas <[email protected]>
Co-authored-by: Joyce Fee <[email protected]>
Co-authored-by: Paulo Borges <[email protected]>
Co-authored-by: Jake Cahill <[email protected]>
Co-authored-by: Michele Cyran <[email protected]>
Co-authored-by: Mike Boquard <[email protected]>
Co-authored-by: Michele Cyran <[email protected]>
Co-authored-by: tris0laris <[email protected]>
Co-authored-by: Paulo Borges <[email protected]>
Co-authored-by: Dave Voutila <[email protected]>
Co-authored-by: Angela Simms <[email protected]>
Co-authored-by: Andrew Hsu <[email protected]>
Co-authored-by: Oren Leiman <[email protected]>
Co-authored-by: Kat Batuigas <[email protected]>
Co-authored-by: Joyce Fee <[email protected]>
JakeSCahill and others added 14 commits July 24, 2024 14:56
Co-authored-by: Paulo Borges <[email protected]>
Co-authored-by: kbatuigas <[email protected]>
Co-authored-by: Michele Cyran <[email protected]>
Co-authored-by: Joyce Fee <[email protected]>
Co-authored-by: Mike Boquard <[email protected]>
Co-authored-by: tris0laris <[email protected]>
Co-authored-by: Dave Voutila <[email protected]>
Co-authored-by: Angela Simms <[email protected]>
Co-authored-by: Andrew Hsu <[email protected]>
Co-authored-by: Oren Leiman <[email protected]>
Co-authored-by: Paulo Borges <[email protected]>
Co-authored-by: kbatuigas <[email protected]>
Co-authored-by: Michele Cyran <[email protected]>
Co-authored-by: Joyce Fee <[email protected]>
Co-authored-by: Mike Boquard <[email protected]>
Co-authored-by: tris0laris <[email protected]>
Co-authored-by: Dave Voutila <[email protected]>
Co-authored-by: Angela Simms <[email protected]>
Co-authored-by: Andrew Hsu <[email protected]>
Co-authored-by: Oren Leiman <[email protected]>
Co-authored-by: Paulo Borges <[email protected]>
Co-authored-by: Jake Cahill <[email protected]>
Co-authored-by: Michele Cyran <[email protected]>
Co-authored-by: Joyce Fee <[email protected]>
Co-authored-by: Mike Boquard <[email protected]>
Co-authored-by: tris0laris <[email protected]>
Co-authored-by: Dave Voutila <[email protected]>
Co-authored-by: Angela Simms <[email protected]>
Co-authored-by: Andrew Hsu <[email protected]>
Co-authored-by: Oren Leiman <[email protected]>
Co-authored-by: Gellért Peresztegi-Nagy <[email protected]>
Co-authored-by: Rogger Vasquez <[email protected]>
Co-authored-by: Paulo Borges <[email protected]>
Co-authored-by: Jake Cahill <[email protected]>
Co-authored-by: Michele Cyran <[email protected]>
Co-authored-by: Joyce Fee <[email protected]>
Co-authored-by: Mike Boquard <[email protected]>
Co-authored-by: tris0laris <[email protected]>
Co-authored-by: Dave Voutila <[email protected]>
Co-authored-by: Angela Simms <[email protected]>
Co-authored-by: Andrew Hsu <[email protected]>
Co-authored-by: Oren Leiman <[email protected]>
@kbatuigas kbatuigas requested a review from a team as a code owner July 30, 2024 19:52
Copy link

netlify bot commented Jul 30, 2024

Deploy Preview for redpanda-docs-preview ready!

Name Link
🔨 Latest commit 7bc2078
🔍 Latest deploy log https://app.netlify.com/sites/redpanda-docs-preview/deploys/66aa4580dac7b200083b3866
😎 Deploy Preview https://deploy-preview-647--redpanda-docs-preview.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

Copy link
Contributor

@Feediver1 Feediver1 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the quick turnaround @kbatuigas

@@ -931,6 +931,53 @@ Curl::
--
====

== Use READONLY mode for disaster recovery

The `/mode` endpoint allows you to put the Schema Registry in read-only or read-write mode. A read-only Schema Registry does not accept direct writes. An active production cluster replicates schemas to the read-only Schema Registry to keep it in sync, for example using MirrorMaker2. In a failover due to a disaster or outage, you can set Schema Registry to read-write mode, taking over for the failed cluster and ensuring availability.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@kbatuigas we should say 'can replicate schemas'. THis is all DIY and not built into the product.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

"An active production cluster can replicate schemas to the read-only Schema Registry to keep it in sync, but users in the DR site will not be able to update schemas directly, ensuring the DR cluster has an exact replica of the schemas in production. In a failover ..."

@kbatuigas kbatuigas merged commit cb6becc into v-WIP/24.2 Jul 31, 2024
5 checks passed
Deflaimun added a commit that referenced this pull request Jul 31, 2024
Co-authored-by: Paulo Borges <[email protected]>
Co-authored-by: Jake Cahill <[email protected]>
Co-authored-by: Michele Cyran <[email protected]>
Co-authored-by: Joyce Fee <[email protected]>
Co-authored-by: Mike Boquard <[email protected]>
Co-authored-by: tris0laris <[email protected]>
Co-authored-by: Dave Voutila <[email protected]>
Co-authored-by: Angela Simms <[email protected]>
Co-authored-by: Andrew Hsu <[email protected]>
Co-authored-by: Oren Leiman <[email protected]>
Co-authored-by: Gellért Peresztegi-Nagy <[email protected]>
Co-authored-by: Rogger Vasquez <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

8 participants