Skip to content

Commit 90f8ef1

Browse files
committed
[mirror] Don't fail when running experiments are missing mirror status
The `mirrorNet` function checks the status of other running experiments to look for conflicts in the network being used for the mirror GRE tunnels. Not every experiment will be using the mirror app, so don't fail if the app status is missing.
1 parent 05163ea commit 90f8ef1

File tree

2 files changed

+18
-29
lines changed

2 files changed

+18
-29
lines changed

src/go/cmd/phenix-app-mirror/main.go

+15-27
Original file line numberDiff line numberDiff line change
@@ -199,17 +199,10 @@ func preStart(exp *types.Experiment) error {
199199

200200
cluster := cluster(exp)
201201

202-
for _, host := range app.Hosts() {
203-
cfg, ok := status.Mirrors[host.Hostname()]
204-
if !ok {
205-
continue
206-
}
207-
208-
name := cfg.MirrorName
209-
202+
for _, cfg := range status.Mirrors {
210203
// Ignoring errors here since in most cases all the mirrors would have
211204
// already been removed when the previous experiment was stopped.
212-
deleteMirror(name, amd.MirrorBridge, cluster)
205+
deleteMirror(cfg.MirrorName, cfg.MirrorBridge, cluster)
213206
}
214207

215208
// Ignoring errors here since in most cases all the taps would have already
@@ -252,7 +245,7 @@ func postStart(exp *types.Experiment) (ferr error) {
252245

253246
// clean up any mirrors already created for this mirror
254247
for _, mirror := range status.Mirrors {
255-
deleteMirror(mirror.MirrorName, amd.MirrorBridge, cluster)
248+
deleteMirror(mirror.MirrorName, mirror.MirrorBridge, cluster)
256249
}
257250
}()
258251

@@ -331,7 +324,7 @@ func postStart(exp *types.Experiment) (ferr error) {
331324
// name).
332325
name := util.RandomString(15)
333326

334-
cfg := MirrorConfig{MirrorName: name, IP: ip.String()}
327+
cfg := MirrorConfig{MirrorName: name, MirrorBridge: amd.MirrorBridge, IP: ip.String()}
335328

336329
status.Mirrors[host.Hostname()] = cfg
337330

@@ -440,17 +433,9 @@ func cleanup(exp *types.Experiment) error {
440433
return fmt.Errorf("decoding app status: %w", err)
441434
}
442435

443-
for _, host := range app.Hosts() {
444-
cfg, ok := status.Mirrors[host.Hostname()]
445-
if !ok {
446-
log.Error("missing mirror config for %s in experiment status", host.Hostname())
447-
continue
448-
}
449-
450-
name := cfg.MirrorName
451-
452-
if err := deleteMirror(name, amd.MirrorBridge, cluster); err != nil {
453-
log.Error("removing mirror %s from cluster: %v", name, err)
436+
for _, cfg := range status.Mirrors {
437+
if err := deleteMirror(cfg.MirrorName, cfg.MirrorBridge, cluster); err != nil {
438+
log.Error("removing mirror %s from cluster: %v", cfg.MirrorName, err)
454439
}
455440
}
456441

@@ -528,19 +513,22 @@ func mirrorNet(md *MirrorAppMetadataV1) (netaddr.IPPrefix, error) {
528513

529514
running, err := types.RunningExperiments()
530515
if err != nil {
531-
return netaddr.IPPrefix{}, fmt.Errorf("getting running experiments: %w", err)
516+
// Log the error, but don't escalate it. Instead, just assume there's no
517+
// other experiments running and let things (potentially) fail
518+
// spectacularly.
519+
log.Error("getting running experiments: %v", err)
520+
return subnet, nil
532521
}
533522

534523
var used []netaddr.IPPrefix
535524

536525
for _, exp := range running {
537526
var status MirrorAppStatus
538527

539-
if err := exp.Status.ParseAppStatus("mirror", &status); err != nil {
540-
return netaddr.IPPrefix{}, fmt.Errorf("parsing mirror app status for experiment %s: %w", exp.Metadata.Name, err)
528+
// Not every experiment uses the mirror app, so don't worry about errors.
529+
if err := exp.Status.ParseAppStatus("mirror", &status); err == nil {
530+
used = append(used, netaddr.MustParseIPPrefix(status.Subnet))
541531
}
542-
543-
used = append(used, netaddr.MustParseIPPrefix(status.Subnet))
544532
}
545533

546534
subnet, err = putil.UnusedSubnet(subnet, used)

src/go/cmd/phenix-app-mirror/types.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ type MirrorAppStatus struct {
7676
}
7777

7878
type MirrorConfig struct {
79-
MirrorName string `structs:"mirrorName" mapstructure:"mirrorName"`
80-
IP string `structs:"ip" mapstructure:"ip"`
79+
MirrorName string `structs:"mirrorName" mapstructure:"mirrorName"`
80+
MirrorBridge string `structs:"mirrorBridge" mapstructure:"mirrorBridge"`
81+
IP string `structs:"ip" mapstructure:"ip"`
8182
}

0 commit comments

Comments
 (0)