Skip to content

Commit 0b35ce8

Browse files
committed
finish broker selector
1 parent 3266cfa commit 0b35ce8

File tree

3 files changed

+36
-22
lines changed

3 files changed

+36
-22
lines changed

src/NetworkInterfaceControllers.jl

+34-19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
module NetworkInterfaceControllers
22

3+
using Sockets
4+
35
include("interfaces.jl")
46
using .Interfaces
57
export Interface, get_interface_data
@@ -42,20 +44,19 @@ function broker_ip_port(ipv)
4244
x->NameSelector.best_interfaces(
4345
x,
4446
NICPreferences.BROKER_INTERFACE.name,
45-
NICPreferences.BROKER_INTERFACE.match_strategy) |>
46-
only
47+
NICPreferences.BROKER_INTERFACE.match_strategy
48+
) |> only
4749
return iface.ip, NICPreferences.BROKER_INTERFACE.port
4850
end
4951

5052
function start_broker(ipv)
51-
ip, port = broker_port(ipv)
53+
ip, port = broker_ip_port(ipv)
54+
55+
t::Task = @task Broker.start_server(ip, UInt32(port))
5256

53-
t::Task = @task Broker.start_server(
54-
iface.ip, UInt32(NICPreferences.BROKER_INTERFACE.port)
55-
)
5657
# Run the server right away
5758
schedule(t)
58-
return iface.ip, NICPreferences.BROKER_INTERFACE.port, t
59+
return ip, port, t
5960
end
6061

6162
function broker_ip_string(ipv::Int)::String
@@ -90,25 +91,26 @@ end
9091

9192
broker_startup_string() = broker_startup_string(4)
9293

93-
function broker_query_string(ip::String, port::Int)::String
94-
runtime_str = julia_runtime_str()
95-
import_str = "using NetworkInterfaceControllers.Broker, Sockets"
96-
query_str = "Broker.query(ip\"$(ip)\", UInt32($(port)), ifaces)"
97-
98-
return "$(runtime_str) -e '$(import_str); $(query_str)'"
99-
end
94+
# function broker_query_string(ip::String, port::Int)::String
95+
# runtime_str = julia_runtime_str()
96+
# import_str = "using NetworkInterfaceControllers.Broker, Sockets"
97+
# query_str = "Broker.query(ip\"$(ip)\", UInt32($(port)), ifaces)"
98+
#
99+
# return "$(runtime_str) -e '$(import_str); $(query_str)'"
100+
# end
100101

101102
export start_broker, broker_ip_port, broker_ip_string, broker_port_string
102-
export broker_startup_string, broker_query_string
103+
export broker_startup_string#, broker_query_string
103104

104105
function best_interface_hwloc_closest(
105106
data::Interface; pid::Union{T, Nothing}=nothing
106107
) where T <: Integer
107108
end
108109

109110
function best_interface_broker(
110-
data::Interface; broker_port::Union{T, Nothing}=nothing
111-
) where T <: Integer
111+
data::Vector{Interface}, ipv::Type{V};
112+
broker_port::Union{T, Nothing}=nothing
113+
) where {T <: Integer, V <: IPAddr}
112114

113115
if isnothing(broker_port)
114116
@debug "Getting broker port from NICPreferences.BROKER_INTERFACE"
@@ -118,9 +120,22 @@ function best_interface_broker(
118120

119121
# Default to `localhost` if a suitable environment variable containing the
120122
# broker address is not set
121-
broker_addr = "localhost"
122-
for env_add in NICPreferences.BROKER_HOST_ENV
123+
broker_addr = "localhost"
124+
broker_addr_source = "default"
125+
for broker_addr_source in NICPreferences.BROKER_HOST_ENV
126+
if broker_addr_source in keys(ENV)
127+
@debug "`$(broker_addr_source)` find in environment => using as broker address"
128+
broker_addr = ENV[broker_addr_source]
129+
break # break on first occurrence
130+
end
123131
end
132+
133+
# Interpret broker_addr as a hostlist
134+
broker_addr = Hostlists.Hostlist(broker_addr) |> first
135+
@debug "Using broker server address = `$(broker_addr)` (from `ENV[$(broker_addr_source)]`)"
136+
137+
ip, port = broker_ip_port(ipv)
138+
return Broker.query_broker(ip, UInt32(port), data)
124139
end
125140

126141
function best_interfaces(data::Vector{Interface})

src/broker.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ function query_broker(
154154
try
155155
conn_txn = connect(ip, txn_port.port)
156156
catch e
157-
if (e isa Base.IOError) && (e.code == -61)
157+
if (e isa Base.IOError) && (e.code in (-61, -111))
158158
@debug "Server not ready, retyring"
159159
sleep(timeout)
160160
else

src/nic_preferences.jl

+1-2
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ const _broker_mode_default = setting(:mode, USE_DISABLED)
169169
const _broker_interface_default = setting(:interface, ".*", MATCH_REGEX, 3000)
170170
const _broker_mode = @load_preference("broker_mode")
171171
const _broker_interface = @load_preference("broker_interface")
172-
const BORKER_HOST_ENV = @load_preference("broker_host_env", [])
172+
const BROKER_HOST_ENV = @load_preference("broker_host_env", [])
173173

174174
const NAME_SELECTOR = ModeSettings(@val_or_default(:_name_selector_mode))
175175
const HWLOC_SELECTOR = ModeSettings(@val_or_default(:_hwloc_selector_mode))
@@ -209,7 +209,6 @@ function configure!(;
209209
@assert check_interface(preferred_interface)
210210
@assert check_interface(broker_interface)
211211

212-
println(broker_host_env)
213212
@set_preferences!(
214213
"name_selector_mode" => name_selector_mode,
215214
"preferred_interface" => preferred_interface,

0 commit comments

Comments
 (0)