@@ -429,11 +429,10 @@ func (s *Server) UpdateInstance(ctx context.Context, req *apiservice.Instance) *
429
429
platformID := utils .ParsePlatformID (ctx )
430
430
log .Info (fmt .Sprintf ("old instance: %+v" , instance ), utils .ZapRequestID (requestID ), utils .ZapPlatformID (platformID ))
431
431
432
- // 比对下更新前后的 isolate 状态
433
- eventTypes := diffInstanceEvent (req , instance )
434
-
432
+ var eventTypes map [model.InstanceEventType ]bool
433
+ var needUpdate bool
435
434
// 存储层操作
436
- if needUpdate : = s .updateInstanceAttribute (req , instance ); ! needUpdate {
435
+ if needUpdate , eventTypes = s .updateInstanceAttribute (req , instance ); ! needUpdate {
437
436
log .Info ("update instance no data change, no need update" ,
438
437
utils .ZapRequestID (requestID ), utils .ZapPlatformID (platformID ), zap .String ("instance" , req .String ()))
439
438
return api .NewInstanceResponse (apimodel .Code_NoNeedUpdate , req )
@@ -449,13 +448,13 @@ func (s *Server) UpdateInstance(ctx context.Context, req *apiservice.Instance) *
449
448
log .Info (msg , utils .ZapRequestID (requestID ), utils .ZapPlatformID (platformID ))
450
449
s .RecordHistory (ctx , instanceRecordEntry (ctx , req , service , instance , model .OUpdate ))
451
450
452
- for i := range eventTypes {
451
+ for eventType := range eventTypes {
453
452
event := & model.InstanceEvent {
454
453
Id : instance .ID (),
455
454
Namespace : service .Namespace ,
456
455
Service : service .Name ,
457
456
Instance : instance .Proto ,
458
- EType : eventTypes [ i ] ,
457
+ EType : eventType ,
459
458
CreateTime : time.Time {},
460
459
}
461
460
event .InjectMetadata (ctx )
@@ -604,71 +603,86 @@ func (s *Server) getInstancesMainByService(ctx context.Context, req *apiservice.
604
603
/**
605
604
* @brief 修改服务属性
606
605
*/
607
- func (s * Server ) updateInstanceAttribute (req * apiservice.Instance , instance * model.Instance ) bool {
606
+ func (s * Server ) updateInstanceAttribute (
607
+ req * apiservice.Instance , instance * model.Instance ) (bool , map [model .InstanceEventType ]bool ) {
608
608
// #lizard forgives
609
609
instance .MallocProto ()
610
610
needUpdate := false
611
611
insProto := instance .Proto
612
+ var updateEvents = make (map [model.InstanceEventType ]bool )
612
613
if ok := instanceMetaNeedUpdate (req .GetMetadata (), instance .Metadata ()); ok {
613
614
insProto .Metadata = req .GetMetadata ()
614
615
needUpdate = true
616
+ updateEvents [model .EventInstanceUpdate ] = true
615
617
}
616
618
617
619
if ok := instanceLocationNeedUpdate (req .GetLocation (), instance .Proto .GetLocation ()); ok {
618
620
insProto .Location = req .Location
619
621
needUpdate = true
622
+ updateEvents [model .EventInstanceUpdate ] = true
620
623
}
621
624
622
- // if !needUpdate {
623
- // // 不需要更新metadata,则置空
624
- // insProto.Metadata = nil
625
- // }
626
-
627
625
if req .GetProtocol () != nil && req .GetProtocol ().GetValue () != instance .Protocol () {
628
626
insProto .Protocol = req .GetProtocol ()
629
627
needUpdate = true
628
+ updateEvents [model .EventInstanceUpdate ] = true
630
629
}
631
630
632
631
if req .GetVersion () != nil && req .GetVersion ().GetValue () != instance .Version () {
633
632
insProto .Version = req .GetVersion ()
634
633
needUpdate = true
634
+ updateEvents [model .EventInstanceUpdate ] = true
635
635
}
636
636
637
637
if req .GetPriority () != nil && req .GetPriority ().GetValue () != instance .Priority () {
638
638
insProto .Priority = req .GetPriority ()
639
639
needUpdate = true
640
+ updateEvents [model .EventInstanceUpdate ] = true
640
641
}
641
642
642
643
if req .GetWeight () != nil && req .GetWeight ().GetValue () != instance .Weight () {
643
644
insProto .Weight = req .GetWeight ()
644
645
needUpdate = true
646
+ updateEvents [model .EventInstanceUpdate ] = true
645
647
}
646
648
647
649
if req .GetHealthy () != nil && req .GetHealthy ().GetValue () != instance .Healthy () {
648
650
insProto .Healthy = req .GetHealthy ()
649
651
needUpdate = true
652
+ if req .Healthy .GetValue () {
653
+ updateEvents [model .EventInstanceTurnHealth ] = true
654
+ } else {
655
+ updateEvents [model .EventInstanceTurnUnHealth ] = true
656
+ }
650
657
}
651
658
652
659
if req .GetIsolate () != nil && req .GetIsolate ().GetValue () != instance .Isolate () {
653
660
insProto .Isolate = req .GetIsolate ()
654
661
needUpdate = true
662
+ if req .Isolate .GetValue () {
663
+ updateEvents [model .EventInstanceOpenIsolate ] = true
664
+ } else {
665
+ updateEvents [model .EventInstanceCloseIsolate ] = true
666
+ }
655
667
}
656
668
657
669
if req .GetLogicSet () != nil && req .GetLogicSet ().GetValue () != instance .LogicSet () {
658
670
insProto .LogicSet = req .GetLogicSet ()
659
671
needUpdate = true
672
+ updateEvents [model .EventInstanceUpdate ] = true
660
673
}
661
674
662
675
if ok := updateHealthCheck (req , instance ); ok {
663
676
needUpdate = true
677
+ updateEvents [model .EventInstanceUpdate ] = true
664
678
}
665
679
666
680
// 每次更改,都要生成一个新的uuid
667
681
if needUpdate {
668
682
insProto .Revision = utils .NewStringValue (utils .NewUUID ())
669
683
}
670
684
671
- return needUpdate
685
+ return needUpdate , updateEvents
672
686
}
673
687
674
688
func instanceLocationNeedUpdate (req * apimodel.Location , old * apimodel.Location ) bool {
@@ -1369,24 +1383,3 @@ func CheckDbInstanceFieldLen(req *apiservice.Instance) (*apiservice.Response, bo
1369
1383
}
1370
1384
return nil , false
1371
1385
}
1372
-
1373
- func diffInstanceEvent (req * apiservice.Instance , save * model.Instance ) []model.InstanceEventType {
1374
- eventTypes := make ([]model.InstanceEventType , 0 )
1375
- if req .Isolate != nil && save .Isolate () != req .Isolate .GetValue () {
1376
- if req .Isolate .GetValue () {
1377
- eventTypes = append (eventTypes , model .EventInstanceOpenIsolate )
1378
- } else {
1379
- eventTypes = append (eventTypes , model .EventInstanceCloseIsolate )
1380
- }
1381
- }
1382
-
1383
- if req .Healthy != nil && save .Healthy () != req .Healthy .GetValue () {
1384
- if req .Healthy .GetValue () {
1385
- eventTypes = append (eventTypes , model .EventInstanceTurnHealth )
1386
- } else {
1387
- eventTypes = append (eventTypes , model .EventInstanceTurnUnHealth )
1388
- }
1389
- }
1390
-
1391
- return eventTypes
1392
- }
0 commit comments