-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ds): shard server workflow in two (#1157)
<!-- Please make sure there is an issue that this PR is correlated to. --> Fixes RVTEE-610 ## Changes <!-- If there are frontend changes, please include screenshots. -->
- Loading branch information
1 parent
4ed45c4
commit 8329433
Showing
17 changed files
with
1,595 additions
and
1,429 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Empty file.
6 changes: 6 additions & 0 deletions
6
svc/pkg/ds/db/servers/migrations/20240918220629_game_config.up.sql
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
CREATE TABLE game_config ( | ||
game_id UUID PRIMARY KEY, | ||
host_networking_enabled BOOLEAN NOT NULL DEFAULT FALSE, | ||
root_user_enabled BOOLEAN NOT NULL DEFAULT FALSE, | ||
client INT NOT NULL, -- ds::types::GameClient | ||
); |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
syntax = "proto3"; | ||
|
||
package rivet.backend.pkg.ds.msg.undrain_all; | ||
|
||
import "proto/common.proto"; | ||
|
||
/// name = "msg-ds-undrain-all" | ||
/// parameters = [ | ||
/// { name = "client_id" }, | ||
/// ] | ||
message Message { | ||
optional string nomad_node_id = 1; | ||
optional string pegboard_client_id = 3; | ||
} |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.