-
Notifications
You must be signed in to change notification settings - Fork 3.8k
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
rfc: add built-in "protobuf" data type support #127586
base: master
Are you sure you want to change the base?
Conversation
Thank you for contributing to CockroachDB. Please ensure you have followed the guidelines for creating a PR. My owl senses detect your PR is good for review. Please keep an eye out for any test failures in CI. I was unable to automatically find a reviewer. You can try CCing one of the following members:
🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf. |
With the built-in "protobuf" type, the protobuf data which is stored in the database can be rendered as a human-readable format directly. It can also be queried and indexed directly. The original issue is cockroachdb#47534. Fixes: None Release note: None
ee643d0
to
8d49b4b
Compare
Thank you for updating your pull request. My owl senses detect your PR is good for review. Please keep an eye out for any test failures in CI. I was unable to automatically find a reviewer. You can try CCing one of the following members:
🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf. |
@dt I'm working on a "protobuf" type proposal, this may simplifier queries with protobuf data. |
Have you considered proposing a schema registry for managing Protobuf descriptor data requirements within CDB? Our product offers a reflection API for hosted Protobuf modules that would be a very convenient way of delivering and managing the raw descriptor layouts for this RFC: https://buf.build/docs/bsr/introduction If you're interested, I'd be happy to chat about it in Slack (I'm in the CDB community Slack). |
Thanks for your information, I'll do some research in the next week and come back to you. |
With the built-in "protobuf" type, the protobuf data which is stored in the database can be rendered as a human-readable format directly. It can also be queried and indexed directly.
The original issue is #47534.
Fixes: None
Release note: None