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

Register with ra directory before initialising ra server. #524

Merged
merged 1 commit into from
Mar 17, 2025
Merged
Changes from all commits
Commits
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
9 changes: 4 additions & 5 deletions src/ra_server_proc.erl
Original file line number Diff line number Diff line change
Expand Up @@ -311,6 +311,7 @@ init(Config) ->
{ok, recover, State, [{next_event, cast, go}]}.

do_init(#{id := Id,
uid := UId,
cluster_name := ClusterName} = Config0) ->
Key = ra_lib:ra_server_id_to_local_name(Id),
true = ets:insert(ra_state, {Key, init, unknown}),
Expand All @@ -325,15 +326,12 @@ do_init(#{id := Id,
process_flag(message_queue_data, MsgQData),
process_flag(min_bin_vheap_size, MinBinVheapSize),
process_flag(min_heap_size, MinHeapSize),
%% wait for wal for a bit before initialising the server state and log
#{cluster := Cluster} = ServerState = ra_server:init(Config),
LogId = ra_server:log_id(ServerState),
UId = ra_server:uid(ServerState),
% ensure ra_directory has the new pid
#{names := Names} = SysConf,
%% register with ra_directory _before_ initialsing the ra server state
ok = ra_directory:register_name(Names, UId, self(),
maps:get(parent, Config, undefined), Key,
ClusterName),
#{cluster := Cluster} = ServerState = ra_server:init(Config),

% ensure each relevant erlang node is connected
PeerNodes = [PeerNode ||
Expand Down Expand Up @@ -362,6 +360,7 @@ do_init(#{id := Id,
ReceiveSnapshotTimeout = maps:get(receive_snapshot_timeout, SysConf,
?DEFAULT_RECEIVE_SNAPSHOT_TIMEOUT),
AtenPollInt = application:get_env(aten, poll_interval, 1000),
LogId = ra_server:log_id(ServerState),
State = #state{conf = #conf{log_id = LogId,
cluster_name = ClusterName,
name = Key,
Expand Down