Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
core
picodata
Merge requests
!120
fix: represent node leader_id as Option
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
fix: represent node leader_id as Option
node-leader-id
into
master
Overview
0
Commits
1
Pipelines
5
Changes
4
Merged
Valentin Syrovatskiy
requested to merge
node-leader-id
into
master
2 years ago
Overview
0
Commits
1
Pipelines
5
Changes
4
Expand
0
0
Merge request reports
Compare
master
version 4
9edcae71
2 years ago
version 3
d40eb6a8
2 years ago
version 2
0522c0c0
2 years ago
version 1
4cfc9706
2 years ago
master (base)
and
latest version
latest version
d87dd4ca
1 commit,
2 years ago
version 4
9edcae71
1 commit,
2 years ago
version 3
d40eb6a8
1 commit,
2 years ago
version 2
0522c0c0
1 commit,
2 years ago
version 1
4cfc9706
1 commit,
2 years ago
4 files
+
47
−
28
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
src/traft/node.rs
+
11
−
4
Options
@@ -8,6 +8,7 @@
use
::
raft
::
prelude
as
raft
;
use
::
raft
::
Error
as
RaftError
;
use
::
raft
::
StateRole
as
RaftStateRole
;
use
::
raft
::
INVALID_ID
;
use
::
tarantool
::
error
::
TransactionError
;
use
::
tarantool
::
fiber
;
use
::
tarantool
::
proc
;
@@ -54,14 +55,17 @@ pub struct Status {
/// `raft_id` of the current instance
pub
id
:
u64
,
/// `raft_id` of the leader instance
pub
leader_id
:
u64
,
pub
leader_id
:
Option
<
u64
>
,
pub
raft_state
:
String
,
pub
is_ready
:
bool
,
}
impl
Status
{
pub
fn
am_leader
(
&
self
)
->
bool
{
self
.id
==
self
.leader_id
match
self
.leader_id
{
Some
(
id
)
=>
self
.id
==
id
,
None
=>
false
,
}
}
}
@@ -118,7 +122,7 @@ impl Node {
let
raw_node
=
RawNode
::
new
(
cfg
,
Storage
,
&
tlog
::
root
())
?
;
let
status
=
Rc
::
new
(
RefCell
::
new
(
Status
{
id
:
cfg
.id
,
leader_id
:
0
,
leader_id
:
None
,
raft_state
:
"Follower"
.into
(),
is_ready
:
false
,
}));
@@ -567,7 +571,10 @@ fn raft_main_loop(
if
let
Some
(
ss
)
=
ready
.ss
()
{
let
mut
status
=
status
.borrow_mut
();
status
.leader_id
=
ss
.leader_id
;
status
.leader_id
=
match
ss
.leader_id
{
INVALID_ID
=>
None
,
id
=>
Some
(
id
),
};
status
.raft_state
=
format!
(
"{:?}"
,
ss
.raft_state
);
status_cond
.broadcast
();
}
Loading