-
Notifications
You must be signed in to change notification settings - Fork 4k
wip queuefeed skel #157081
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
base: master
Are you sure you want to change the base?
wip queuefeed skel #157081
Conversation
|
It looks like your PR touches production code but doesn't add or edit any test code. Did you consider adding tests to your PR? 🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf. |
Potential Bug(s) DetectedThe three-stage Claude Code analysis has identified potential bug(s) in this PR that may warrant investigation. Next Steps: Note: When viewing the workflow output, scroll to the bottom to find the Final Analysis Summary. After you review the findings, please tag the issue as follows:
|
Potential Bug(s) DetectedThe three-stage Claude Code analysis has identified potential bug(s) in this PR that may warrant investigation. Next Steps: Note: When viewing the workflow output, scroll to the bottom to find the Final Analysis Summary. After you review the findings, please tag the issue as follows:
|
Potential Bug(s) DetectedThe three-stage Claude Code analysis has identified potential bug(s) in this PR that may warrant investigation. Next Steps: Note: When viewing the workflow output, scroll to the bottom to find the Final Analysis Summary. After you review the findings, please tag the issue as follows:
|
Instead of returning a single array as json for the events stored
in our queue, now return a row for each row so that we get
root@127.0.0.1:26257/demoapp/movr> SELECT crdb_internal.select_from_queue_feed('foo', 3);
crdb_internal.select_from_queue_feed
----------------------------------------
{"f1": "1", "f2": "2", "f3": "3"}
{"f1": "4", "f2": "5", "f3": "6"}
{"f1": "7", "f2": "8", "f3": "9"}
instead of
root@127.0.0.1:26257/demoapp/movr> SELECT crdb_internal.select_from_queue_feed('foo', 3);
crdb_internal.select_from_queue_feed
--------------------------------------------------------------------------------------------------------------------------------------------------------------
{"{\"f1\": \"1\", \"f2\": \"2\", \"f3\": \"3\"}","{\"f1\": \"11\", \"f2\": \"22\", \"f3\": \"33\"}","{\"f1\": \"111\", \"f2\": \"222\", \"f3\": \"333\"}"}
(1 row)
Qf table based
Potential Bug(s) DetectedThe three-stage Claude Code analysis has identified potential bug(s) in this PR that may warrant investigation. Next Steps: Note: When viewing the workflow output, scroll to the bottom to find the Final Analysis Summary. After you review the findings, please tag the issue as follows:
|
Potential Bug(s) DetectedThe three-stage Claude Code analysis has identified potential bug(s) in this PR that may warrant investigation. Next Steps: Note: When viewing the workflow output, scroll to the bottom to find the Final Analysis Summary. After you review the findings, please tag the issue as follows:
|
add a table to track existing queues and add test
Potential Bug(s) DetectedThe three-stage Claude Code analysis has identified potential bug(s) in this PR that may warrant investigation. Next Steps: Note: When viewing the workflow output, scroll to the bottom to find the Final Analysis Summary. After you review the findings, please tag the issue as follows:
|
|
Your pull request contains more than 1000 changes. It is strongly encouraged to split big PRs into smaller chunks. 🦉 Hoot! I am a Blathers, a bot for CockroachDB. My owner is dev-inf. |
Potential Bug(s) DetectedThe three-stage Claude Code analysis has identified potential bug(s) in this PR that may warrant investigation. Next Steps: Note: When viewing the workflow output, scroll to the bottom to find the Final Analysis Summary. After you review the findings, please tag the issue as follows:
|
rudimentary refresh assignment
Potential Bug(s) DetectedThe three-stage Claude Code analysis has identified potential bug(s) in this PR that may warrant investigation. Next Steps: Note: When viewing the workflow output, scroll to the bottom to find the Final Analysis Summary. After you review the findings, please tag the issue as follows:
|
Epic: none
queuefeed checkpointing
Move reader mgmt to conn executor
watch all my partitions
Add a test for multiple ranges. Rewrite the span splitting logic so that it follows the pattern established by backup.
unassign dead sessions
Potential Bug(s) DetectedThe three-stage Claude Code analysis has identified potential bug(s) in this PR that may warrant investigation. Next Steps: Note: When viewing the workflow output, scroll to the bottom to find the Final Analysis Summary. After you review the findings, please tag the issue as follows:
|
Potential Bug(s) DetectedThe three-stage Claude Code analysis has identified potential bug(s) in this PR that may warrant investigation. Next Steps: Note: When viewing the workflow output, scroll to the bottom to find the Final Analysis Summary. After you review the findings, please tag the issue as follows:
|
queuefeed: support checkpoints per partition
add builtin for starting a changefeed from a cursor
create queuefeed from name
No description provided.