flwr-nightly 1.13.0.dev20241106__py3-none-any.whl → 1.13.0.dev20241111__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of flwr-nightly might be problematic. Click here for more details.
- flwr/cli/run/run.py +16 -5
- flwr/client/app.py +10 -6
- flwr/client/clientapp/app.py +21 -16
- flwr/client/nodestate/__init__.py +25 -0
- flwr/client/nodestate/in_memory_nodestate.py +38 -0
- flwr/client/nodestate/nodestate.py +30 -0
- flwr/client/nodestate/nodestate_factory.py +37 -0
- flwr/common/args.py +83 -0
- flwr/common/config.py +10 -0
- flwr/common/constant.py +0 -1
- flwr/common/logger.py +6 -2
- flwr/common/object_ref.py +47 -16
- flwr/common/typing.py +1 -1
- flwr/proto/exec_pb2.py +14 -17
- flwr/proto/exec_pb2.pyi +6 -20
- flwr/proto/run_pb2.py +32 -27
- flwr/proto/run_pb2.pyi +26 -0
- flwr/proto/simulationio_pb2.py +2 -2
- flwr/proto/simulationio_pb2_grpc.py +34 -0
- flwr/proto/simulationio_pb2_grpc.pyi +13 -0
- flwr/server/app.py +45 -20
- flwr/server/driver/driver.py +1 -1
- flwr/server/driver/grpc_driver.py +2 -6
- flwr/server/driver/inmemory_driver.py +1 -3
- flwr/server/run_serverapp.py +2 -2
- flwr/server/serverapp/app.py +16 -72
- flwr/server/strategy/aggregate.py +4 -4
- flwr/server/superlink/linkstate/in_memory_linkstate.py +5 -16
- flwr/server/superlink/linkstate/linkstate.py +5 -4
- flwr/server/superlink/linkstate/sqlite_linkstate.py +6 -15
- flwr/server/superlink/linkstate/utils.py +2 -33
- flwr/server/superlink/simulation/simulationio_servicer.py +22 -1
- flwr/simulation/__init__.py +3 -1
- flwr/simulation/app.py +273 -345
- flwr/simulation/legacy_app.py +382 -0
- flwr/simulation/run_simulation.py +1 -1
- flwr/superexec/deployment.py +1 -1
- flwr/superexec/exec_servicer.py +2 -2
- flwr/superexec/executor.py +4 -3
- flwr/superexec/simulation.py +44 -102
- {flwr_nightly-1.13.0.dev20241106.dist-info → flwr_nightly-1.13.0.dev20241111.dist-info}/METADATA +5 -4
- {flwr_nightly-1.13.0.dev20241106.dist-info → flwr_nightly-1.13.0.dev20241111.dist-info}/RECORD +45 -39
- {flwr_nightly-1.13.0.dev20241106.dist-info → flwr_nightly-1.13.0.dev20241111.dist-info}/entry_points.txt +1 -0
- {flwr_nightly-1.13.0.dev20241106.dist-info → flwr_nightly-1.13.0.dev20241111.dist-info}/LICENSE +0 -0
- {flwr_nightly-1.13.0.dev20241106.dist-info → flwr_nightly-1.13.0.dev20241111.dist-info}/WHEEL +0 -0
flwr/simulation/app.py
CHANGED
|
@@ -12,371 +12,299 @@
|
|
|
12
12
|
# See the License for the specific language governing permissions and
|
|
13
13
|
# limitations under the License.
|
|
14
14
|
# ==============================================================================
|
|
15
|
-
"""Flower
|
|
15
|
+
"""Flower Simulation process."""
|
|
16
16
|
|
|
17
17
|
|
|
18
|
-
import
|
|
19
|
-
import logging
|
|
18
|
+
import argparse
|
|
20
19
|
import sys
|
|
21
|
-
import
|
|
22
|
-
import
|
|
23
|
-
import
|
|
24
|
-
from
|
|
25
|
-
from
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
from
|
|
29
|
-
|
|
30
|
-
from flwr.
|
|
31
|
-
from flwr.common import
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
from flwr.server.server_config import ServerConfig
|
|
38
|
-
from flwr.server.strategy import Strategy
|
|
39
|
-
from flwr.server.superlink.linkstate.utils import generate_rand_int_from_bytes
|
|
40
|
-
from flwr.simulation.ray_transport.ray_actor import (
|
|
41
|
-
ClientAppActor,
|
|
42
|
-
VirtualClientEngineActor,
|
|
43
|
-
VirtualClientEngineActorPool,
|
|
44
|
-
pool_size_from_resources,
|
|
20
|
+
from logging import DEBUG, ERROR, INFO, WARN
|
|
21
|
+
from os.path import isfile
|
|
22
|
+
from pathlib import Path
|
|
23
|
+
from queue import Queue
|
|
24
|
+
from time import sleep
|
|
25
|
+
from typing import Optional
|
|
26
|
+
|
|
27
|
+
from flwr.cli.config_utils import get_fab_metadata
|
|
28
|
+
from flwr.cli.install import install_from_fab
|
|
29
|
+
from flwr.common import EventType
|
|
30
|
+
from flwr.common.config import (
|
|
31
|
+
get_flwr_dir,
|
|
32
|
+
get_fused_config_from_dir,
|
|
33
|
+
get_project_config,
|
|
34
|
+
get_project_dir,
|
|
35
|
+
unflatten_dict,
|
|
45
36
|
)
|
|
46
|
-
from flwr.
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
NodeToPartitionMapping = dict[int, int]
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
def _create_node_id_to_partition_mapping(
|
|
79
|
-
num_clients: int,
|
|
80
|
-
) -> NodeToPartitionMapping:
|
|
81
|
-
"""Generate a node_id:partition_id mapping."""
|
|
82
|
-
nodes_mapping: NodeToPartitionMapping = {} # {node-id; partition-id}
|
|
83
|
-
for i in range(num_clients):
|
|
84
|
-
while True:
|
|
85
|
-
node_id = generate_rand_int_from_bytes(NODE_ID_NUM_BYTES)
|
|
86
|
-
if node_id not in nodes_mapping:
|
|
87
|
-
break
|
|
88
|
-
nodes_mapping[node_id] = i
|
|
89
|
-
return nodes_mapping
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
# pylint: disable=too-many-arguments,too-many-statements,too-many-branches
|
|
93
|
-
def start_simulation(
|
|
94
|
-
*,
|
|
95
|
-
client_fn: ClientFnExt,
|
|
96
|
-
num_clients: int,
|
|
97
|
-
clients_ids: Optional[list[str]] = None, # UNSUPPORTED, WILL BE REMOVED
|
|
98
|
-
client_resources: Optional[dict[str, float]] = None,
|
|
99
|
-
server: Optional[Server] = None,
|
|
100
|
-
config: Optional[ServerConfig] = None,
|
|
101
|
-
strategy: Optional[Strategy] = None,
|
|
102
|
-
client_manager: Optional[ClientManager] = None,
|
|
103
|
-
ray_init_args: Optional[dict[str, Any]] = None,
|
|
104
|
-
keep_initialised: Optional[bool] = False,
|
|
105
|
-
actor_type: type[VirtualClientEngineActor] = ClientAppActor,
|
|
106
|
-
actor_kwargs: Optional[dict[str, Any]] = None,
|
|
107
|
-
actor_scheduling: Union[str, NodeAffinitySchedulingStrategy] = "DEFAULT",
|
|
108
|
-
) -> History:
|
|
109
|
-
"""Start a Ray-based Flower simulation server.
|
|
110
|
-
|
|
111
|
-
Parameters
|
|
112
|
-
----------
|
|
113
|
-
client_fn : ClientFnExt
|
|
114
|
-
A function creating `Client` instances. The function must have the signature
|
|
115
|
-
`client_fn(context: Context). It should return
|
|
116
|
-
a single client instance of type `Client`. Note that the created client
|
|
117
|
-
instances are ephemeral and will often be destroyed after a single method
|
|
118
|
-
invocation. Since client instances are not long-lived, they should not attempt
|
|
119
|
-
to carry state over method invocations. Any state required by the instance
|
|
120
|
-
(model, dataset, hyperparameters, ...) should be (re-)created in either the
|
|
121
|
-
call to `client_fn` or the call to any of the client methods (e.g., load
|
|
122
|
-
evaluation data in the `evaluate` method itself).
|
|
123
|
-
num_clients : int
|
|
124
|
-
The total number of clients in this simulation.
|
|
125
|
-
clients_ids : Optional[List[str]]
|
|
126
|
-
UNSUPPORTED, WILL BE REMOVED. USE `num_clients` INSTEAD.
|
|
127
|
-
List `client_id`s for each client. This is only required if
|
|
128
|
-
`num_clients` is not set. Setting both `num_clients` and `clients_ids`
|
|
129
|
-
with `len(clients_ids)` not equal to `num_clients` generates an error.
|
|
130
|
-
Using this argument will raise an error.
|
|
131
|
-
client_resources : Optional[Dict[str, float]] (default: `{"num_cpus": 1, "num_gpus": 0.0}`)
|
|
132
|
-
CPU and GPU resources for a single client. Supported keys
|
|
133
|
-
are `num_cpus` and `num_gpus`. To understand the GPU utilization caused by
|
|
134
|
-
`num_gpus`, as well as using custom resources, please consult the Ray
|
|
135
|
-
documentation.
|
|
136
|
-
server : Optional[flwr.server.Server] (default: None).
|
|
137
|
-
An implementation of the abstract base class `flwr.server.Server`. If no
|
|
138
|
-
instance is provided, then `start_server` will create one.
|
|
139
|
-
config: ServerConfig (default: None).
|
|
140
|
-
Currently supported values are `num_rounds` (int, default: 1) and
|
|
141
|
-
`round_timeout` in seconds (float, default: None).
|
|
142
|
-
strategy : Optional[flwr.server.Strategy] (default: None)
|
|
143
|
-
An implementation of the abstract base class `flwr.server.Strategy`. If
|
|
144
|
-
no strategy is provided, then `start_server` will use
|
|
145
|
-
`flwr.server.strategy.FedAvg`.
|
|
146
|
-
client_manager : Optional[flwr.server.ClientManager] (default: None)
|
|
147
|
-
An implementation of the abstract base class `flwr.server.ClientManager`.
|
|
148
|
-
If no implementation is provided, then `start_simulation` will use
|
|
149
|
-
`flwr.server.client_manager.SimpleClientManager`.
|
|
150
|
-
ray_init_args : Optional[Dict[str, Any]] (default: None)
|
|
151
|
-
Optional dictionary containing arguments for the call to `ray.init`.
|
|
152
|
-
If ray_init_args is None (the default), Ray will be initialized with
|
|
153
|
-
the following default args:
|
|
154
|
-
|
|
155
|
-
{ "ignore_reinit_error": True, "include_dashboard": False }
|
|
156
|
-
|
|
157
|
-
An empty dictionary can be used (ray_init_args={}) to prevent any
|
|
158
|
-
arguments from being passed to ray.init.
|
|
159
|
-
keep_initialised: Optional[bool] (default: False)
|
|
160
|
-
Set to True to prevent `ray.shutdown()` in case `ray.is_initialized()=True`.
|
|
161
|
-
|
|
162
|
-
actor_type: VirtualClientEngineActor (default: ClientAppActor)
|
|
163
|
-
Optionally specify the type of actor to use. The actor object, which
|
|
164
|
-
persists throughout the simulation, will be the process in charge of
|
|
165
|
-
executing a ClientApp wrapping input argument `client_fn`.
|
|
166
|
-
|
|
167
|
-
actor_kwargs: Optional[Dict[str, Any]] (default: None)
|
|
168
|
-
If you want to create your own Actor classes, you might need to pass
|
|
169
|
-
some input argument. You can use this dictionary for such purpose.
|
|
170
|
-
|
|
171
|
-
actor_scheduling: Optional[Union[str, NodeAffinitySchedulingStrategy]]
|
|
172
|
-
(default: "DEFAULT")
|
|
173
|
-
Optional string ("DEFAULT" or "SPREAD") for the VCE to choose in which
|
|
174
|
-
node the actor is placed. If you are an advanced user needed more control
|
|
175
|
-
you can use lower-level scheduling strategies to pin actors to specific
|
|
176
|
-
compute nodes (e.g. via NodeAffinitySchedulingStrategy). Please note this
|
|
177
|
-
is an advanced feature. For all details, please refer to the Ray documentation:
|
|
178
|
-
https://docs.ray.io/en/latest/ray-core/scheduling/index.html
|
|
179
|
-
|
|
180
|
-
Returns
|
|
181
|
-
-------
|
|
182
|
-
hist : flwr.server.history.History
|
|
183
|
-
Object containing metrics from training.
|
|
184
|
-
""" # noqa: E501
|
|
185
|
-
# pylint: disable-msg=too-many-locals
|
|
186
|
-
event(
|
|
187
|
-
EventType.START_SIMULATION_ENTER,
|
|
188
|
-
{"num_clients": len(clients_ids) if clients_ids is not None else num_clients},
|
|
189
|
-
)
|
|
190
|
-
|
|
191
|
-
if clients_ids is not None:
|
|
192
|
-
warn_unsupported_feature(
|
|
193
|
-
"Passing `clients_ids` to `start_simulation` is deprecated and not longer "
|
|
194
|
-
"used by `start_simulation`. Use `num_clients` exclusively instead."
|
|
195
|
-
)
|
|
196
|
-
log(ERROR, "`clients_ids` argument used.")
|
|
197
|
-
sys.exit()
|
|
198
|
-
|
|
199
|
-
# Set logger propagation
|
|
200
|
-
loop: Optional[asyncio.AbstractEventLoop] = None
|
|
201
|
-
try:
|
|
202
|
-
loop = asyncio.get_running_loop()
|
|
203
|
-
except RuntimeError:
|
|
204
|
-
loop = None
|
|
205
|
-
finally:
|
|
206
|
-
if loop and loop.is_running():
|
|
207
|
-
# Set logger propagation to False to prevent duplicated log output in Colab.
|
|
208
|
-
logger = logging.getLogger("flwr")
|
|
209
|
-
_ = set_logger_propagation(logger, False)
|
|
210
|
-
|
|
211
|
-
# Initialize server and server config
|
|
212
|
-
initialized_server, initialized_config = init_defaults(
|
|
213
|
-
server=server,
|
|
214
|
-
config=config,
|
|
215
|
-
strategy=strategy,
|
|
216
|
-
client_manager=client_manager,
|
|
217
|
-
)
|
|
218
|
-
|
|
219
|
-
log(
|
|
220
|
-
INFO,
|
|
221
|
-
"Starting Flower simulation, config: %s",
|
|
222
|
-
initialized_config,
|
|
223
|
-
)
|
|
224
|
-
|
|
225
|
-
# Create node-id to partition-id mapping
|
|
226
|
-
nodes_mapping = _create_node_id_to_partition_mapping(num_clients)
|
|
37
|
+
from flwr.common.constant import Status, SubStatus
|
|
38
|
+
from flwr.common.logger import (
|
|
39
|
+
log,
|
|
40
|
+
mirror_output_to_queue,
|
|
41
|
+
restore_output,
|
|
42
|
+
start_log_uploader,
|
|
43
|
+
stop_log_uploader,
|
|
44
|
+
)
|
|
45
|
+
from flwr.common.serde import (
|
|
46
|
+
configs_record_from_proto,
|
|
47
|
+
context_from_proto,
|
|
48
|
+
fab_from_proto,
|
|
49
|
+
run_from_proto,
|
|
50
|
+
run_status_to_proto,
|
|
51
|
+
)
|
|
52
|
+
from flwr.common.typing import RunStatus
|
|
53
|
+
from flwr.proto.run_pb2 import ( # pylint: disable=E0611
|
|
54
|
+
GetFederationOptionsRequest,
|
|
55
|
+
GetFederationOptionsResponse,
|
|
56
|
+
UpdateRunStatusRequest,
|
|
57
|
+
)
|
|
58
|
+
from flwr.proto.simulationio_pb2 import ( # pylint: disable=E0611
|
|
59
|
+
PullSimulationInputsRequest,
|
|
60
|
+
PullSimulationInputsResponse,
|
|
61
|
+
PushSimulationOutputsRequest,
|
|
62
|
+
)
|
|
63
|
+
from flwr.server.superlink.fleet.vce.backend.backend import BackendConfig
|
|
64
|
+
from flwr.simulation.run_simulation import _run_simulation
|
|
65
|
+
from flwr.simulation.simulationio_connection import SimulationIoConnection
|
|
227
66
|
|
|
228
|
-
# Default arguments for Ray initialization
|
|
229
|
-
if not ray_init_args:
|
|
230
|
-
ray_init_args = {
|
|
231
|
-
"ignore_reinit_error": True,
|
|
232
|
-
"include_dashboard": False,
|
|
233
|
-
}
|
|
234
67
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
68
|
+
def flwr_simulation() -> None:
|
|
69
|
+
"""Run process-isolated Flower Simulation."""
|
|
70
|
+
# Capture stdout/stderr
|
|
71
|
+
log_queue: Queue[Optional[str]] = Queue()
|
|
72
|
+
mirror_output_to_queue(log_queue)
|
|
238
73
|
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
cluster_resources = ray.cluster_resources()
|
|
242
|
-
log(
|
|
243
|
-
INFO,
|
|
244
|
-
"Flower VCE: Ray initialized with resources: %s",
|
|
245
|
-
cluster_resources,
|
|
74
|
+
parser = argparse.ArgumentParser(
|
|
75
|
+
description="Run a Flower Simulation",
|
|
246
76
|
)
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
"
|
|
251
|
-
|
|
77
|
+
parser.add_argument(
|
|
78
|
+
"--superlink",
|
|
79
|
+
type=str,
|
|
80
|
+
help="Address of SuperLink's SimulationIO API",
|
|
81
|
+
)
|
|
82
|
+
parser.add_argument(
|
|
83
|
+
"--run-once",
|
|
84
|
+
action="store_true",
|
|
85
|
+
help="When set, this process will start a single simulation "
|
|
86
|
+
"for a pending Run. If no pending run the process will exit. ",
|
|
87
|
+
)
|
|
88
|
+
parser.add_argument(
|
|
89
|
+
"--flwr-dir",
|
|
90
|
+
default=None,
|
|
91
|
+
help="""The path containing installed Flower Apps.
|
|
92
|
+
By default, this value is equal to:
|
|
93
|
+
|
|
94
|
+
- `$FLWR_HOME/` if `$FLWR_HOME` is defined
|
|
95
|
+
- `$XDG_DATA_HOME/.flwr/` if `$XDG_DATA_HOME` is defined
|
|
96
|
+
- `$HOME/.flwr/` in all other cases
|
|
97
|
+
""",
|
|
252
98
|
)
|
|
99
|
+
parser.add_argument(
|
|
100
|
+
"--insecure",
|
|
101
|
+
action="store_true",
|
|
102
|
+
help="Run the server without HTTPS, regardless of whether certificate "
|
|
103
|
+
"paths are provided. By default, the server runs with HTTPS enabled. "
|
|
104
|
+
"Use this flag only if you understand the risks.",
|
|
105
|
+
)
|
|
106
|
+
parser.add_argument(
|
|
107
|
+
"--root-certificates",
|
|
108
|
+
metavar="ROOT_CERT",
|
|
109
|
+
type=str,
|
|
110
|
+
help="Specifies the path to the PEM-encoded root certificate file for "
|
|
111
|
+
"establishing secure HTTPS connections.",
|
|
112
|
+
)
|
|
113
|
+
args = parser.parse_args()
|
|
253
114
|
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
log(
|
|
257
|
-
INFO,
|
|
258
|
-
"No `client_resources` specified. Using minimal resources for clients.",
|
|
259
|
-
)
|
|
260
|
-
client_resources = {"num_cpus": 1, "num_gpus": 0.0}
|
|
261
|
-
|
|
262
|
-
# Each client needs at the very least one CPU
|
|
263
|
-
if "num_cpus" not in client_resources:
|
|
264
|
-
warnings.warn(
|
|
265
|
-
"No `num_cpus` specified in `client_resources`. "
|
|
266
|
-
"Using `num_cpus=1` for each client.",
|
|
267
|
-
stacklevel=2,
|
|
268
|
-
)
|
|
269
|
-
client_resources["num_cpus"] = 1
|
|
115
|
+
log(INFO, "Starting Flower Simulation")
|
|
116
|
+
certificates = _try_obtain_certificates(args)
|
|
270
117
|
|
|
271
118
|
log(
|
|
272
|
-
|
|
273
|
-
"
|
|
274
|
-
|
|
119
|
+
DEBUG,
|
|
120
|
+
"Staring isolated `Simulation` connected to SuperLink DriverAPI at %s",
|
|
121
|
+
args.superlink,
|
|
275
122
|
)
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
def create_actor_fn() -> type[VirtualClientEngineActor]:
|
|
283
|
-
return actor_type.options( # type: ignore
|
|
284
|
-
**client_resources,
|
|
285
|
-
scheduling_strategy=actor_scheduling,
|
|
286
|
-
).remote(**actor_args)
|
|
287
|
-
|
|
288
|
-
# Instantiate ActorPool
|
|
289
|
-
pool = VirtualClientEngineActorPool(
|
|
290
|
-
create_actor_fn=create_actor_fn,
|
|
291
|
-
client_resources=client_resources,
|
|
123
|
+
run_simulation_process(
|
|
124
|
+
superlink=args.superlink,
|
|
125
|
+
log_queue=log_queue,
|
|
126
|
+
run_once=args.run_once,
|
|
127
|
+
flwr_dir_=args.flwr_dir,
|
|
128
|
+
certificates=certificates,
|
|
292
129
|
)
|
|
293
130
|
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
# Periodically, check if the cluster has grown (i.e. a new
|
|
297
|
-
# node has been added). If this happens, we likely want to grow
|
|
298
|
-
# the actor pool by adding more Actors to it.
|
|
299
|
-
def update_resources(f_stop: threading.Event) -> None:
|
|
300
|
-
"""Periodically check if more actors can be added to the pool.
|
|
301
|
-
|
|
302
|
-
If so, extend the pool.
|
|
303
|
-
"""
|
|
304
|
-
if not f_stop.is_set():
|
|
305
|
-
num_max_actors = pool_size_from_resources(client_resources)
|
|
306
|
-
if num_max_actors > pool.num_actors:
|
|
307
|
-
num_new = num_max_actors - pool.num_actors
|
|
308
|
-
log(
|
|
309
|
-
INFO, "The cluster expanded. Adding %s actors to the pool.", num_new
|
|
310
|
-
)
|
|
311
|
-
pool.add_actors_to_pool(num_actors=num_new)
|
|
312
|
-
|
|
313
|
-
threading.Timer(10, update_resources, [f_stop]).start()
|
|
131
|
+
# Restore stdout/stderr
|
|
132
|
+
restore_output()
|
|
314
133
|
|
|
315
|
-
update_resources(f_stop)
|
|
316
134
|
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
pool.__class__.__name__,
|
|
321
|
-
pool.num_actors,
|
|
322
|
-
)
|
|
135
|
+
def _try_obtain_certificates(
|
|
136
|
+
args: argparse.Namespace,
|
|
137
|
+
) -> Optional[bytes]:
|
|
323
138
|
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
# pylint: disable=broad-except
|
|
337
|
-
try:
|
|
338
|
-
# Start training
|
|
339
|
-
hist = run_fl(
|
|
340
|
-
server=initialized_server,
|
|
341
|
-
config=initialized_config,
|
|
139
|
+
if args.insecure:
|
|
140
|
+
if args.root_certificates is not None:
|
|
141
|
+
sys.exit(
|
|
142
|
+
"Conflicting options: The '--insecure' flag disables HTTPS, "
|
|
143
|
+
"but '--root-certificates' was also specified. Please remove "
|
|
144
|
+
"the '--root-certificates' option when running in insecure mode, "
|
|
145
|
+
"or omit '--insecure' to use HTTPS."
|
|
146
|
+
)
|
|
147
|
+
log(
|
|
148
|
+
WARN,
|
|
149
|
+
"Option `--insecure` was set. Starting insecure HTTP channel to %s.",
|
|
150
|
+
args.superlink,
|
|
342
151
|
)
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
152
|
+
root_certificates = None
|
|
153
|
+
else:
|
|
154
|
+
# Load the certificates if provided, or load the system certificates
|
|
155
|
+
if not isfile(args.root_certificates):
|
|
156
|
+
sys.exit("Path argument `--root-certificates` does not point to a file.")
|
|
157
|
+
root_certificates = Path(args.root_certificates).read_bytes()
|
|
346
158
|
log(
|
|
347
|
-
|
|
348
|
-
"
|
|
349
|
-
"
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
"or inconsistencies that might be contributing to the problem. "
|
|
353
|
-
"For example: "
|
|
354
|
-
"\n\t\t - You might be using a class attribute in your clients that "
|
|
355
|
-
"hasn't been defined."
|
|
356
|
-
"\n\t\t - There could be an incorrect method call to a 3rd party library "
|
|
357
|
-
"(e.g., PyTorch)."
|
|
358
|
-
"\n\t\t - The return types of methods in your clients/strategies might be "
|
|
359
|
-
"incorrect."
|
|
360
|
-
"\n\t > Your system couldn't fit a single VirtualClient: try lowering "
|
|
361
|
-
"`client_resources`."
|
|
362
|
-
"\n\t > All the actors in your pool crashed. This could be because: "
|
|
363
|
-
"\n\t\t - You clients hit an out-of-memory (OOM) error and actors couldn't "
|
|
364
|
-
"recover from it. Try launching your simulation with more generous "
|
|
365
|
-
"`client_resources` setting (i.e. it seems %s is "
|
|
366
|
-
"not enough for your run). Use fewer concurrent actors. "
|
|
367
|
-
"\n\t\t - You were running a multi-node simulation and all worker nodes "
|
|
368
|
-
"disconnected. The head node might still be alive but cannot accommodate "
|
|
369
|
-
"any actor with resources: %s."
|
|
370
|
-
"\nTake a look at the Flower simulation examples for guidance "
|
|
371
|
-
"<https://flower.ai/docs/framework/how-to-run-simulations.html>.",
|
|
372
|
-
client_resources,
|
|
373
|
-
client_resources,
|
|
159
|
+
DEBUG,
|
|
160
|
+
"Starting secure HTTPS channel to %s "
|
|
161
|
+
"with the following certificates: %s.",
|
|
162
|
+
args.superlink,
|
|
163
|
+
args.root_certificates,
|
|
374
164
|
)
|
|
375
|
-
|
|
165
|
+
return root_certificates
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
def run_simulation_process( # pylint: disable=R0914, disable=W0212, disable=R0915
|
|
169
|
+
superlink: str,
|
|
170
|
+
log_queue: Queue[Optional[str]],
|
|
171
|
+
run_once: bool,
|
|
172
|
+
flwr_dir_: Optional[str] = None,
|
|
173
|
+
certificates: Optional[bytes] = None,
|
|
174
|
+
) -> None:
|
|
175
|
+
"""Run Flower Simulation process."""
|
|
176
|
+
conn = SimulationIoConnection(
|
|
177
|
+
simulationio_service_address=superlink,
|
|
178
|
+
root_certificates=certificates,
|
|
179
|
+
)
|
|
180
|
+
|
|
181
|
+
# Resolve directory where FABs are installed
|
|
182
|
+
flwr_dir = get_flwr_dir(flwr_dir_)
|
|
183
|
+
log_uploader = None
|
|
184
|
+
|
|
185
|
+
while True:
|
|
186
|
+
|
|
187
|
+
try:
|
|
188
|
+
# Pull SimulationInputs from LinkState
|
|
189
|
+
req = PullSimulationInputsRequest()
|
|
190
|
+
res: PullSimulationInputsResponse = conn._stub.PullSimulationInputs(req)
|
|
191
|
+
if not res.HasField("run"):
|
|
192
|
+
sleep(3)
|
|
193
|
+
run_status = None
|
|
194
|
+
continue
|
|
195
|
+
|
|
196
|
+
context = context_from_proto(res.context)
|
|
197
|
+
run = run_from_proto(res.run)
|
|
198
|
+
fab = fab_from_proto(res.fab)
|
|
199
|
+
|
|
200
|
+
# Start log uploader for this run
|
|
201
|
+
log_uploader = start_log_uploader(
|
|
202
|
+
log_queue=log_queue,
|
|
203
|
+
node_id=context.node_id,
|
|
204
|
+
run_id=run.run_id,
|
|
205
|
+
stub=conn._stub,
|
|
206
|
+
)
|
|
207
|
+
|
|
208
|
+
log(DEBUG, "Simulation process starts FAB installation.")
|
|
209
|
+
install_from_fab(fab.content, flwr_dir=flwr_dir, skip_prompt=True)
|
|
210
|
+
|
|
211
|
+
fab_id, fab_version = get_fab_metadata(fab.content)
|
|
212
|
+
|
|
213
|
+
app_path = get_project_dir(fab_id, fab_version, fab.hash_str, flwr_dir)
|
|
214
|
+
config = get_project_config(app_path)
|
|
215
|
+
|
|
216
|
+
# Get ClientApp and SeverApp components
|
|
217
|
+
app_components = config["tool"]["flwr"]["app"]["components"]
|
|
218
|
+
client_app_attr = app_components["clientapp"]
|
|
219
|
+
server_app_attr = app_components["serverapp"]
|
|
220
|
+
fused_config = get_fused_config_from_dir(app_path, run.override_config)
|
|
221
|
+
|
|
222
|
+
# Update run_config in context
|
|
223
|
+
context.run_config = fused_config
|
|
224
|
+
|
|
225
|
+
log(
|
|
226
|
+
DEBUG,
|
|
227
|
+
"Flower will load ServerApp `%s` in %s",
|
|
228
|
+
server_app_attr,
|
|
229
|
+
app_path,
|
|
230
|
+
)
|
|
231
|
+
log(
|
|
232
|
+
DEBUG,
|
|
233
|
+
"Flower will load ClientApp `%s` in %s",
|
|
234
|
+
client_app_attr,
|
|
235
|
+
app_path,
|
|
236
|
+
)
|
|
237
|
+
|
|
238
|
+
# Change status to Running
|
|
239
|
+
run_status_proto = run_status_to_proto(RunStatus(Status.RUNNING, "", ""))
|
|
240
|
+
conn._stub.UpdateRunStatus(
|
|
241
|
+
UpdateRunStatusRequest(run_id=run.run_id, run_status=run_status_proto)
|
|
242
|
+
)
|
|
243
|
+
|
|
244
|
+
# Pull Federation Options
|
|
245
|
+
fed_opt_res: GetFederationOptionsResponse = conn._stub.GetFederationOptions(
|
|
246
|
+
GetFederationOptionsRequest(run_id=run.run_id)
|
|
247
|
+
)
|
|
248
|
+
federation_options = configs_record_from_proto(
|
|
249
|
+
fed_opt_res.federation_options
|
|
250
|
+
)
|
|
251
|
+
|
|
252
|
+
# Unflatten underlying dict
|
|
253
|
+
fed_opt = unflatten_dict({**federation_options})
|
|
254
|
+
|
|
255
|
+
# Extract configs values of interest
|
|
256
|
+
num_supernodes = fed_opt.get("num-supernodes")
|
|
257
|
+
if num_supernodes is None:
|
|
258
|
+
raise ValueError(
|
|
259
|
+
"Federation options expects `num-supernodes` to be set."
|
|
260
|
+
)
|
|
261
|
+
backend_config: BackendConfig = fed_opt.get("backend", {})
|
|
262
|
+
verbose: bool = fed_opt.get("verbose", False)
|
|
263
|
+
enable_tf_gpu_growth: bool = fed_opt.get("enable_tf_gpu_growth", True)
|
|
264
|
+
|
|
265
|
+
# Launch the simulation
|
|
266
|
+
_run_simulation(
|
|
267
|
+
server_app_attr=server_app_attr,
|
|
268
|
+
client_app_attr=client_app_attr,
|
|
269
|
+
num_supernodes=num_supernodes,
|
|
270
|
+
backend_config=backend_config,
|
|
271
|
+
app_dir=str(app_path),
|
|
272
|
+
run=run,
|
|
273
|
+
enable_tf_gpu_growth=enable_tf_gpu_growth,
|
|
274
|
+
verbose_logging=verbose,
|
|
275
|
+
server_app_run_config=fused_config,
|
|
276
|
+
is_app=True,
|
|
277
|
+
exit_event=EventType.CLI_FLOWER_SIMULATION_LEAVE,
|
|
278
|
+
)
|
|
279
|
+
|
|
280
|
+
# Send resulting context
|
|
281
|
+
context_proto = None # context_to_proto(updated_context)
|
|
282
|
+
out_req = PushSimulationOutputsRequest(
|
|
283
|
+
run_id=run.run_id, context=context_proto
|
|
284
|
+
)
|
|
285
|
+
_ = conn._stub.PushSimulationOutputs(out_req)
|
|
286
|
+
|
|
287
|
+
run_status = RunStatus(Status.FINISHED, SubStatus.COMPLETED, "")
|
|
288
|
+
|
|
289
|
+
except Exception as ex: # pylint: disable=broad-exception-caught
|
|
290
|
+
exc_entity = "Simulation"
|
|
291
|
+
log(ERROR, "%s raised an exception", exc_entity, exc_info=ex)
|
|
292
|
+
run_status = RunStatus(Status.FINISHED, SubStatus.FAILED, str(ex))
|
|
293
|
+
|
|
294
|
+
finally:
|
|
295
|
+
if run_status:
|
|
296
|
+
run_status_proto = run_status_to_proto(run_status)
|
|
297
|
+
conn._stub.UpdateRunStatus(
|
|
298
|
+
UpdateRunStatusRequest(
|
|
299
|
+
run_id=run.run_id, run_status=run_status_proto
|
|
300
|
+
)
|
|
301
|
+
)
|
|
376
302
|
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
303
|
+
# Stop log uploader for this run
|
|
304
|
+
if log_uploader:
|
|
305
|
+
stop_log_uploader(log_queue, log_uploader)
|
|
306
|
+
log_uploader = None
|
|
381
307
|
|
|
382
|
-
|
|
308
|
+
# Stop the loop if `flwr-simulation` is expected to process a single run
|
|
309
|
+
if run_once:
|
|
310
|
+
break
|