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

Block-builder-scheduler: RPC interface #10022

Closed
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f457910
Merge from davidgrant/block-builder-scheduler-reconcile
seizethedave Nov 18, 2024
8f9d996
Don't need to get fancy with critical section: no contention is possi…
seizethedave Nov 18, 2024
6712985
Document s.committed.
seizethedave Nov 18, 2024
f97e4cb
Merge
seizethedave Nov 24, 2024
4cfeed9
Fix merge slop.
seizethedave Nov 24, 2024
eaed668
Add proto defs.
seizethedave Nov 4, 2024
d37b1f2
Initial RPC protos.
seizethedave Nov 4, 2024
35d1868
Log an error if flushing fails.
seizethedave Nov 24, 2024
81dee72
Include RPC forms of assignJob/updateJob.
seizethedave Nov 4, 2024
3772a12
Merge remote-tracking branch 'origin/main' into davidgrant/block-buil…
seizethedave Nov 25, 2024
7c3f2da
Fleshing out the client module.
seizethedave Nov 25, 2024
db44d45
Appease the linter.
seizethedave Nov 25, 2024
5cc39ce
workerID param not used.
seizethedave Nov 25, 2024
3c6a566
CompleteJob: no context needed.
seizethedave Nov 25, 2024
91b8e83
The linter.
seizethedave Nov 25, 2024
7355de9
More logs.
seizethedave Nov 25, 2024
c34617d
Fix circular reference. Initialize client.
seizethedave Nov 29, 2024
9f67caa
schedulerproto -> schedulerpb
seizethedave Nov 29, 2024
47b5662
merge
seizethedave Nov 29, 2024
188217f
Fix compile stuff.
seizethedave Nov 30, 2024
179018e
Getting builder/scheduler up in docker-compose.
seizethedave Nov 30, 2024
f789447
Clean unneeded flags.
seizethedave Nov 30, 2024
bad7dc2
Fixes for BB<>scheduler communications:
seizethedave Nov 30, 2024
762012f
Fix block-builder's scheduler_config so it can connect to a scheduler.
seizethedave Nov 30, 2024
671f4b3
Shorter update interval for testing.
seizethedave Nov 30, 2024
f760fa8
Fix unloggable key.
seizethedave Nov 30, 2024
df7e43e
Longer job working time.
seizethedave Nov 30, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
The linter.
  • Loading branch information
seizethedave committed Nov 25, 2024
commit 91b8e838ab766f03b33e6ee1ae6fef5cca429559
2 changes: 2 additions & 0 deletions pkg/blockbuilder/schedulerclient/client.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0-only

package schedulerclient

import (
Expand Down
Loading