-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaudition.drawio
5470 lines (5470 loc) · 528 KB
/
audition.drawio
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<mxfile host="app.diagrams.net" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36" version="24.8.0" pages="3">
<diagram name="知识体系" id="CdU_I9wvN4Hp2rFMaPJO">
<mxGraphModel grid="1" page="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="nCrCXY3zVFdDt1ujvN8f-2" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="3KQtnwgmgE3NFFhSBi0l-1" target="nCrCXY3zVFdDt1ujvN8f-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-4" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="3KQtnwgmgE3NFFhSBi0l-1" target="nCrCXY3zVFdDt1ujvN8f-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-6" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="3KQtnwgmgE3NFFhSBi0l-1" target="nCrCXY3zVFdDt1ujvN8f-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-25" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="3KQtnwgmgE3NFFhSBi0l-1" target="IheyrWSOqVSxkom78KFg-24" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="3KQtnwgmgE3NFFhSBi0l-1" value="audition" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="80" y="1600" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-48" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-1" target="nCrCXY3zVFdDt1ujvN8f-47" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-50" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-1" target="nCrCXY3zVFdDt1ujvN8f-49" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-53" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-1" target="nCrCXY3zVFdDt1ujvN8f-52" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-1" value="算法" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1ba1e2;fontColor=#ffffff;strokeColor=#006EAF;" parent="1" vertex="1">
<mxGeometry x="440" y="1600" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-8" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-3" target="nCrCXY3zVFdDt1ujvN8f-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-10" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-3" target="nCrCXY3zVFdDt1ujvN8f-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-12" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-3" target="nCrCXY3zVFdDt1ujvN8f-11" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-3" value="项目" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1ba1e2;fontColor=#ffffff;strokeColor=#006EAF;" parent="1" vertex="1">
<mxGeometry x="480" y="540" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-55" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-5" target="nCrCXY3zVFdDt1ujvN8f-54" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-57" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-5" target="nCrCXY3zVFdDt1ujvN8f-56" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-59" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-5" target="nCrCXY3zVFdDt1ujvN8f-58" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-16" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-5" target="IheyrWSOqVSxkom78KFg-15" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-5" value="技术" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1ba1e2;fontColor=#ffffff;strokeColor=#006EAF;" parent="1" vertex="1">
<mxGeometry x="460" y="1980" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-14" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-7" target="nCrCXY3zVFdDt1ujvN8f-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-7" value="快手" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="910" y="-350" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-38" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-9" target="nCrCXY3zVFdDt1ujvN8f-37" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-9" value="VIVO" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="880" y="150" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-32" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-11" target="nCrCXY3zVFdDt1ujvN8f-31" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-11" value="百度" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="870" y="440" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-16" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-13" target="nCrCXY3zVFdDt1ujvN8f-15" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-18" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-13" target="nCrCXY3zVFdDt1ujvN8f-17" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-20" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-13" target="nCrCXY3zVFdDt1ujvN8f-19" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-24" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-13" target="nCrCXY3zVFdDt1ujvN8f-23" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-13" value="埋点平台" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1180" y="-350" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-15" value="埋点模型" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1600" y="-390" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DFRJkrIVGb9Hy_mhMAis-2" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;fontFamily=Helvetica;fontSize=12;fontColor=default;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-17" target="DFRJkrIVGb9Hy_mhMAis-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-17" value="埋点生产工具" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="-200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-19" value="埋点监控" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1600" y="-290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-23" value="埋点上报链路" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1600" y="-480" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-34" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-31" target="nCrCXY3zVFdDt1ujvN8f-33" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-36" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-31" target="nCrCXY3zVFdDt1ujvN8f-35" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-46" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-31" target="nCrCXY3zVFdDt1ujvN8f-45" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-31" value="质子大数据平台" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1150" y="440" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-33" value="BI" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1590" y="320" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-35" value="联邦SQL引擎" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1590" y="530" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-40" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-37" target="nCrCXY3zVFdDt1ujvN8f-39" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-42" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-37" target="nCrCXY3zVFdDt1ujvN8f-41" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-44" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-37" target="nCrCXY3zVFdDt1ujvN8f-43" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-37" value="算法数据平台" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1150" y="150" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-39" value="特征平台" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1590" y="-60" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-41" value="样本平台" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1590" y="240" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-43" value="特征中台" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1590" y="90" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-45" value="隐私数据脱敏" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1590" y="420" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-47" value="牛客HOT100" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="680" y="1440" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-49" value="LeetcodeTop200" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="680" y="1760" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-52" value="LeetcodeHot100" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f8cecc;gradientColor=#ea6b66;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="680" y="1600" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-10" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-54" target="IheyrWSOqVSxkom78KFg-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-12" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-54" target="IheyrWSOqVSxkom78KFg-11" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-14" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-54" target="IheyrWSOqVSxkom78KFg-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-2" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-54" target="7G7Ba6VFTLDL6SVrWHIJ-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-54" value="服务器" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="880" y="4800" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-61" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-56" target="nCrCXY3zVFdDt1ujvN8f-60" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-63" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-56" target="nCrCXY3zVFdDt1ujvN8f-62" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-65" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-56" target="nCrCXY3zVFdDt1ujvN8f-64" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-85" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-56" target="nCrCXY3zVFdDt1ujvN8f-84" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-89" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-56" target="nCrCXY3zVFdDt1ujvN8f-88" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-10" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-56" target="7G7Ba6VFTLDL6SVrWHIJ-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-24" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-56" target="7G7Ba6VFTLDL6SVrWHIJ-23" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-56" value="大数据" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#60a917;fontColor=#ffffff;strokeColor=#2D7600;" parent="1" vertex="1">
<mxGeometry x="880" y="2800" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-73" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-58" target="nCrCXY3zVFdDt1ujvN8f-72" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-77" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-58" target="nCrCXY3zVFdDt1ujvN8f-76" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-79" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-58" target="nCrCXY3zVFdDt1ujvN8f-78" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-83" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-58" target="nCrCXY3zVFdDt1ujvN8f-82" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-58" value="数据库" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="880" y="4000" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-69" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-60" target="nCrCXY3zVFdDt1ujvN8f-68" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-71" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-60" target="nCrCXY3zVFdDt1ujvN8f-70" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-4" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-60" target="IheyrWSOqVSxkom78KFg-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-60" value="分布式计算引擎" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1155" y="2490" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-2" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-62" target="IheyrWSOqVSxkom78KFg-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-8" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-62" target="7G7Ba6VFTLDL6SVrWHIJ-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-14" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-62" target="7G7Ba6VFTLDL6SVrWHIJ-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-16" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-62" target="7G7Ba6VFTLDL6SVrWHIJ-15" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-62" value="OLAP" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1160" y="3160" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-81" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-64" target="nCrCXY3zVFdDt1ujvN8f-80" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-64" value="分布式消息队列" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1160" y="3500" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-20" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-68" target="7G7Ba6VFTLDL6SVrWHIJ-19" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-22" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-68" target="7G7Ba6VFTLDL6SVrWHIJ-21" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-68" value="Spark" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1600" y="2250" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-22" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-70" target="OCg2FE8fCQZtAfVpKx0e-21" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-70" value="MapReduce" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="2640" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-38" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-72" target="OCg2FE8fCQZtAfVpKx0e-37" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-2" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-72" target="YtRcOlnNrjE-oC8czNcs-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-13" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-72" target="YtRcOlnNrjE-oC8czNcs-12" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-72" value="Mysql" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1160" y="3910" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-40" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-76" target="OCg2FE8fCQZtAfVpKx0e-39" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-42" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-76" target="OCg2FE8fCQZtAfVpKx0e-41" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-76" value="Redis" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1155" y="4000" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-78" value="Calcite" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1160" y="4200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-24" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-80" target="OCg2FE8fCQZtAfVpKx0e-23" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-56" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-80" target="OCg2FE8fCQZtAfVpKx0e-55" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-80" value="Kafka" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1600" y="3500" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-11" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-82" target="YtRcOlnNrjE-oC8czNcs-10" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-82" value="RocksDB" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1160" y="4360" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-87" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-84" target="nCrCXY3zVFdDt1ujvN8f-86" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-84" value="分布式调度" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1160" y="3610" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-18" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-86" target="OCg2FE8fCQZtAfVpKx0e-17" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-86" value="Yarn" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="3610" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-8" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-88" target="IheyrWSOqVSxkom78KFg-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="nCrCXY3zVFdDt1ujvN8f-88" value="分布式存储" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1160" y="3720" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-28" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-1" target="OCg2FE8fCQZtAfVpKx0e-27" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-30" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-1" target="OCg2FE8fCQZtAfVpKx0e-29" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-32" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-1" target="OCg2FE8fCQZtAfVpKx0e-31" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-1" value="Hive" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1600" y="3040" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-28" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-3" target="7G7Ba6VFTLDL6SVrWHIJ-27" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-3" value="Flink" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1600" y="2490" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-20" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-7" target="OCg2FE8fCQZtAfVpKx0e-19" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="YKlzk2BiO1z3wrX4ef4Q-3" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-7" target="YKlzk2BiO1z3wrX4ef4Q-2" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-7" value="HDFS" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="3720" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-9" value="Netty" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1160" y="4720" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-11" value="Tomcat" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1160" y="4900" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-13" value="Spring" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1160" y="4560" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-19" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-15" target="IheyrWSOqVSxkom78KFg-18" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-21" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-15" target="IheyrWSOqVSxkom78KFg-20" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-23" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-15" target="IheyrWSOqVSxkom78KFg-22" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-4" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-15" target="7G7Ba6VFTLDL6SVrWHIJ-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-6" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-15" target="7G7Ba6VFTLDL6SVrWHIJ-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-4" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-15" target="YtRcOlnNrjE-oC8czNcs-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-15" value="基础" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="880" y="1840" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-17" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="1" source="nCrCXY3zVFdDt1ujvN8f-58" target="nCrCXY3zVFdDt1ujvN8f-58" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-2" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-18" target="OCg2FE8fCQZtAfVpKx0e-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-4" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-18" target="OCg2FE8fCQZtAfVpKx0e-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-6" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-18" target="OCg2FE8fCQZtAfVpKx0e-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-8" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-18" target="OCg2FE8fCQZtAfVpKx0e-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-10" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-18" target="OCg2FE8fCQZtAfVpKx0e-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="83NNz5EZ_EooqbcPk9Lf-2" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-18" target="83NNz5EZ_EooqbcPk9Lf-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Q1FYO778s4XGKPbG4oil-9" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-18" target="Q1FYO778s4XGKPbG4oil-8" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-18" value="并发编程" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1170" y="1270" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-44" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-20" target="OCg2FE8fCQZtAfVpKx0e-43" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Q1FYO778s4XGKPbG4oil-2" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-20" target="Q1FYO778s4XGKPbG4oil-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Q1FYO778s4XGKPbG4oil-5" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-20" target="Q1FYO778s4XGKPbG4oil-4" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-20" value="JVM" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1160" y="1840" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-12" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-22" target="OCg2FE8fCQZtAfVpKx0e-11" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-14" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="IheyrWSOqVSxkom78KFg-22" target="OCg2FE8fCQZtAfVpKx0e-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-22" value="数据结构" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1160" y="1670" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="IheyrWSOqVSxkom78KFg-24" value="系统设计" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#1ba1e2;fontColor=#ffffff;strokeColor=#006EAF;" parent="1" vertex="1">
<mxGeometry x="440" y="1280" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-1" value="Dubbo" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1160" y="5050" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-3" value="分布式技术" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1155" y="2000" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-5" value="编译原理" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1160" y="2160" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-7" value="CK" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#a0522d;fontColor=#ffffff;strokeColor=#6D1F00;" parent="1" vertex="1">
<mxGeometry x="1600" y="3280" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-12" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-9" target="7G7Ba6VFTLDL6SVrWHIJ-11" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-9" value="数据湖" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1160" y="2800" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-11" value="Hudi" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="2800" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-13" value="Presto" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="3120" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-15" value="doris" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="3200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-19" value="<font style="font-size: 12px;">SparkSql</font>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="2290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-36" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-21" target="OCg2FE8fCQZtAfVpKx0e-35" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="YKlzk2BiO1z3wrX4ef4Q-5" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-21" target="YKlzk2BiO1z3wrX4ef4Q-4" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-21" value="SparkCore" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="2100" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-26" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-23" target="7G7Ba6VFTLDL6SVrWHIJ-25" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-23" value="分布式数据库" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1160" y="3400" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-26" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-25" target="OCg2FE8fCQZtAfVpKx0e-25" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-59" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-25" target="OCg2FE8fCQZtAfVpKx0e-58" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-25" value="Hbase" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d80073;fontColor=#ffffff;strokeColor=#A50040;" parent="1" vertex="1">
<mxGeometry x="1600" y="3400" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-34" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="OCg2FE8fCQZtAfVpKx0e-33" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-2" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-1" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-4" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-3" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-6" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-8" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-10" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-12" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-11" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-14" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-16" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-15" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-18" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-17" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-20" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-19" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-22" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-21" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-25" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-24" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-27" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-26" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-29" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="7G7Ba6VFTLDL6SVrWHIJ-27" target="r-Lo67DXenKKBYMhgteF-28" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="7G7Ba6VFTLDL6SVrWHIJ-27" value="Flink-Core" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="2490" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-6" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-1" target="JBS6l0_I_ZHOrc6hTLdR-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-8" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-1" target="JBS6l0_I_ZHOrc6hTLdR-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-10" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-1" target="JBS6l0_I_ZHOrc6hTLdR-9" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-12" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-1" target="JBS6l0_I_ZHOrc6hTLdR-11" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-14" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-1" target="JBS6l0_I_ZHOrc6hTLdR-13" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-16" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-1" target="JBS6l0_I_ZHOrc6hTLdR-15" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-54" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-1" target="OCg2FE8fCQZtAfVpKx0e-53" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-1" value="做事思路" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;" parent="1" vertex="1">
<mxGeometry x="-1570" y="550" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-5" value="北极星指标" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1230" y="200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-7" value="用户调研" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1230" y="440" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-9" value="行业调研" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1230" y="320" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-11" value="痛难点" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1230" y="560" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-13" value="解决方案" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1230" y="680" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-15" value="收益" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1230" y="800" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-21" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-17" target="JBS6l0_I_ZHOrc6hTLdR-20" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-23" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-17" target="JBS6l0_I_ZHOrc6hTLdR-22" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-25" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-17" target="JBS6l0_I_ZHOrc6hTLdR-24" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-27" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-17" target="JBS6l0_I_ZHOrc6hTLdR-26" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-17" value="能力模型" style="ellipse;whiteSpace=wrap;html=1;aspect=fixed;fillColor=#ffcccc;strokeColor=#36393d;" parent="1" vertex="1">
<mxGeometry x="-1310" y="1300" width="80" height="80" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-33" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-20" target="JBS6l0_I_ZHOrc6hTLdR-32" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-35" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-20" target="JBS6l0_I_ZHOrc6hTLdR-34" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-20" value="专业力" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1110" y="1310" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-22" value="产品力" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1330" y="1490" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-29" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-24" target="JBS6l0_I_ZHOrc6hTLdR-28" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-31" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-24" target="JBS6l0_I_ZHOrc6hTLdR-30" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-37" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="JBS6l0_I_ZHOrc6hTLdR-24" target="JBS6l0_I_ZHOrc6hTLdR-36" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-24" value="通用力" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1540" y="1310" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-26" value="领导力" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1330" y="1140" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-28" value="沟通力" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="-1800" y="1160" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-30" value="人际影响能力" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1800" y="1440" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-32" value="工程能力" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="-880" y="1240" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-34" value="架构能力" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-880" y="1390" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="JBS6l0_I_ZHOrc6hTLdR-36" value="项目管理能力" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1800" y="1310" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-1" value="线程池" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="1050" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-3" value="<div style="line-height: 1.75; font-size: 14px; text-align: left;">Synchronized&nbsp;</div><div style="line-height: 1.75; font-size: 14px; text-align: left;">锁升级</div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="1140" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-5" value="<div style="line-height: 1.75; font-size: 14px; text-align: left;">ThreadLocal</div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="1220" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-7" value="<div style="line-height: 1.75; font-size: 14px; text-align: left;">volatile</div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="1300" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-9" value="<div style="line-height: 1.75; font-size: 14px; text-align: left;"><span style="white-space: pre;"> </span>CAS&nbsp;</div><div style="line-height: 1.75; font-size: 14px; text-align: left;">乐观锁和悲观锁&nbsp;</div><div style="line-height: 1.75; font-size: 14px; text-align: left;"><span style="white-space: pre;"> </span>原理</div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="1380" width="120" height="80" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-11" value="B树/B+树" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="1700" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-13" value="红黑树" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="1640" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-17" value="<div style="line-height: 1.75; font-size: 14px; text-align: left;">任务调度流程</div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="3610" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-19" value="<div style="line-height: 1.75; font-size: 14px; text-align: left;">HDFS读写流程</div>" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="1880" y="3820" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-21" value="<div style="line-height: 1.75; font-size: 14px; text-align: left;">Shuffle</div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="2640" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-23" value="高性能" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="3540" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-25" value="优化优化经验" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="3320" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-27" value="优化经验" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="2960" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-29" value="SQL题" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="3120" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-31" value="架构原理" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="3040" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-33" value="优化经验" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2340" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-35" value="优化经验" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2180" y="2030" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-37" value="日志" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1440" y="3920" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-39" value="内核" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1440" y="4080" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-41" value="优化经验" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1440" y="4000" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-46" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="OCg2FE8fCQZtAfVpKx0e-43" target="OCg2FE8fCQZtAfVpKx0e-45" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-48" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="OCg2FE8fCQZtAfVpKx0e-43" target="OCg2FE8fCQZtAfVpKx0e-47" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-50" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="OCg2FE8fCQZtAfVpKx0e-43" target="OCg2FE8fCQZtAfVpKx0e-49" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="Q1FYO778s4XGKPbG4oil-7" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="OCg2FE8fCQZtAfVpKx0e-43" target="Q1FYO778s4XGKPbG4oil-6" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-43" value="GC" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="1920" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-45" value="G1" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="1770" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-47" value="垃圾收集算法" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="2000" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-49" value="CMS" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="1840" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-53" value="规划" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="-1230" y="900" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-55" value="读写数据保证不丢失" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="3480" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="OCg2FE8fCQZtAfVpKx0e-58" value="RowKey设计" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="3400" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="DFRJkrIVGb9Hy_mhMAis-1" value="埋点测试" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="-200" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="83NNz5EZ_EooqbcPk9Lf-1" value="Concurrent包实现" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="1490" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Q1FYO778s4XGKPbG4oil-1" value="类加载机制" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="1800" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Q1FYO778s4XGKPbG4oil-4" value="JVM运行时数据区域划分" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1580" y="2040" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="Q1FYO778s4XGKPbG4oil-6" value="GCRoot" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1880" y="1920" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="Q1FYO778s4XGKPbG4oil-8" value="Executor实现原理" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="980" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-1" value="大状态调优" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2610" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-3" value="双流 join" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2660" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-5" value="反压" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2720" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-7" value="消费kafka offset 提交方式" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2830" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-9" value="开源BUG 解决" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2290" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-11" value="checkpoint 和 savepoint 的区别" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2890" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-13" value="两阶段提交" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2940" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-15" value="时间类型" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2560" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-17" value="作业失败重启策略" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2180" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-19" value="Flink slot、task、并行度、CPU、内存之间的关系" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2240" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-21" value="state" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2380" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-24" value="Process Function" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2430" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-26" value="CDC" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2770" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="r-Lo67DXenKKBYMhgteF-28" value="内核原理" style="whiteSpace=wrap;html=1;rounded=1;" parent="1" vertex="1">
<mxGeometry x="2640" y="2490" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="YKlzk2BiO1z3wrX4ef4Q-2" value="HA" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="1880" y="3720" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="YKlzk2BiO1z3wrX4ef4Q-4" value="Spark VS MapReduce" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="2160" y="2100" width="160" height="60" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-1" value="索引" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1440" y="3800" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-6" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="YtRcOlnNrjE-oC8czNcs-3" target="YtRcOlnNrjE-oC8czNcs-5" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-8" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="YtRcOlnNrjE-oC8czNcs-3" target="YtRcOlnNrjE-oC8czNcs-7" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-15" value="" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="YtRcOlnNrjE-oC8czNcs-3" target="YtRcOlnNrjE-oC8czNcs-14" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-3" value="网络编程" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1180" y="810" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-5" value="Netty" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="850" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-7" value="AIO/NIO/BIO" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="760" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-10" value="读写放大" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1440" y="4360" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-12" value="事务" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1440" y="3860" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="YtRcOlnNrjE-oC8czNcs-14" value="poll/Epoll/Select" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1600" y="660" width="120" height="60" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="Bo5hGBUy11vULs6Wh8lr" name="埋点">
<mxGraphModel dx="5843" dy="3031" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="850" pageHeight="1100" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="UxkbkvMXde2H-oP6bU26-1" value="告警任务" style="rounded=1;whiteSpace=wrap;html=1;fontSize=12;glass=0;strokeWidth=1;shadow=0;fillColor=#dae8fc;strokeColor=#6c8ebf;" parent="1" vertex="1">
<mxGeometry x="160" y="40" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-2" value="未处理" style="edgeStyle=orthogonalEdgeStyle;rounded=0;html=1;jettySize=auto;orthogonalLoop=1;fontSize=11;endArrow=block;endFill=0;endSize=8;strokeWidth=1;shadow=0;labelBackgroundColor=none;" parent="1" source="UxkbkvMXde2H-oP6bU26-3" target="UxkbkvMXde2H-oP6bU26-4" edge="1">
<mxGeometry y="10" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-3" value="告警人" style="rhombus;whiteSpace=wrap;html=1;shadow=0;fontFamily=Helvetica;fontSize=12;align=center;strokeWidth=1;spacing=6;spacingTop=-4;fillColor=#fff2cc;strokeColor=#d6b656;" parent="1" vertex="1">
<mxGeometry x="160" y="190" width="120" height="100" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-4" value="告警周期检测" style="rounded=1;whiteSpace=wrap;html=1;fontSize=12;glass=0;strokeWidth=1;shadow=0;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="440" y="210" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-5" value="历史告警信息<br>写入告警库" style="edgeStyle=orthogonalEdgeStyle;rounded=0;html=1;jettySize=auto;orthogonalLoop=1;fontSize=11;endArrow=block;endFill=0;endSize=8;strokeWidth=1;shadow=0;labelBackgroundColor=none;exitX=1;exitY=0.75;exitDx=0;exitDy=0;" parent="1" source="UxkbkvMXde2H-oP6bU26-1" target="UxkbkvMXde2H-oP6bU26-8" edge="1">
<mxGeometry x="-0.554" y="-40" relative="1" as="geometry">
<mxPoint as="offset" />
<Array as="points">
<mxPoint x="280" y="70" />
<mxPoint x="360" y="70" />
<mxPoint x="360" y="390" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-6" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="UxkbkvMXde2H-oP6bU26-21" target="UxkbkvMXde2H-oP6bU26-27" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-7" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" parent="1" source="UxkbkvMXde2H-oP6bU26-8" target="UxkbkvMXde2H-oP6bU26-27" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="617" y="390" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-8" value="告警库" style="rounded=1;whiteSpace=wrap;html=1;fontSize=12;glass=0;strokeWidth=1;shadow=0;fillColor=#f0a30a;fontColor=#000000;strokeColor=#BD7000;" parent="1" vertex="1">
<mxGeometry x="640" y="360" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-9" value="节假日特殊处理" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#ffe6cc;strokeColor=#d79b00;" parent="1" vertex="1">
<mxGeometry x="-120" y="140" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-10" value="告警处理" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#ffe6cc;strokeColor=#d79b00;" parent="1" vertex="1">
<mxGeometry x="-120" y="260" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-11" value="去处理" style="edgeStyle=orthogonalEdgeStyle;rounded=0;html=1;jettySize=auto;orthogonalLoop=1;fontSize=11;endArrow=block;endFill=0;endSize=8;strokeWidth=1;shadow=0;labelBackgroundColor=none;exitX=0;exitY=0.5;exitDx=0;exitDy=0;" parent="1" source="UxkbkvMXde2H-oP6bU26-3" edge="1">
<mxGeometry y="10" relative="1" as="geometry">
<mxPoint as="offset" />
<mxPoint x="280" y="240" as="sourcePoint" />
<mxPoint x="20" y="240" as="targetPoint" />
<Array as="points">
<mxPoint x="150" y="240" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-12" value="告警阈值&amp;规则推荐" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#ffe6cc;strokeColor=#d79b00;" parent="1" vertex="1">
<mxGeometry x="-120" y="200" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-13" value="<meta charset="utf-8"><span style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(248, 249, 250); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;">告警处理</span>" style="edgeStyle=orthogonalEdgeStyle;rounded=0;html=1;jettySize=auto;orthogonalLoop=1;fontSize=11;endArrow=block;endFill=0;endSize=8;strokeWidth=1;shadow=0;labelBackgroundColor=none;exitX=0.5;exitY=1;exitDx=0;exitDy=0;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="UxkbkvMXde2H-oP6bU26-1" target="UxkbkvMXde2H-oP6bU26-3" edge="1">
<mxGeometry y="10" relative="1" as="geometry">
<mxPoint as="offset" />
<mxPoint x="280" y="400" as="sourcePoint" />
<mxPoint x="410" y="400" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-14" value="异常检测" style="rounded=1;whiteSpace=wrap;html=1;fontSize=12;glass=0;strokeWidth=1;shadow=0;fillColor=#f8cecc;strokeColor=#b85450;" parent="1" vertex="1">
<mxGeometry x="160" y="-110" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-15" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" parent="1" source="UxkbkvMXde2H-oP6bU26-16" target="UxkbkvMXde2H-oP6bU26-14" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="220" y="-170" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-16" value="规则库" style="rounded=1;whiteSpace=wrap;html=1;fontSize=12;glass=0;strokeWidth=1;shadow=0;fillColor=#e1d5e7;strokeColor=#9673a6;" parent="1" vertex="1">
<mxGeometry x="160" y="-260" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-17" value="跟新规则" style="edgeStyle=orthogonalEdgeStyle;rounded=0;html=1;jettySize=auto;orthogonalLoop=1;fontSize=11;endArrow=block;endFill=0;endSize=8;strokeWidth=1;shadow=0;labelBackgroundColor=none;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" parent="1" target="UxkbkvMXde2H-oP6bU26-16" edge="1">
<mxGeometry y="30" relative="1" as="geometry">
<mxPoint as="offset" />
<mxPoint x="-60" y="100" as="sourcePoint" />
<mxPoint x="100" y="-220" as="targetPoint" />
<Array as="points">
<mxPoint x="-60" y="100" />
<mxPoint x="-60" y="-230" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-18" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="UxkbkvMXde2H-oP6bU26-19" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="280" y="-230" as="targetPoint" />
<Array as="points">
<mxPoint x="500" y="-230" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-19" value="告警升级" style="whiteSpace=wrap;html=1;rounded=1;glass=0;strokeWidth=1;shadow=0;fillColor=#fa6800;fontColor=#000000;strokeColor=#C73500;" parent="1" vertex="1">
<mxGeometry x="443.5" y="40" width="113" height="60" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-20" value="A1/A2" style="edgeStyle=orthogonalEdgeStyle;rounded=0;html=1;jettySize=auto;orthogonalLoop=1;fontSize=11;endArrow=block;endFill=0;endSize=8;strokeWidth=1;shadow=0;labelBackgroundColor=none;entryX=0.5;entryY=1;entryDx=0;entryDy=0;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="UxkbkvMXde2H-oP6bU26-4" target="UxkbkvMXde2H-oP6bU26-19" edge="1">
<mxGeometry x="0.0323" y="-37" relative="1" as="geometry">
<mxPoint x="-1" y="10" as="offset" />
<mxPoint x="280" y="400" as="sourcePoint" />
<mxPoint x="410" y="400" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-21" value="告警降级" style="rounded=1;whiteSpace=wrap;html=1;fontSize=12;glass=0;strokeWidth=1;shadow=0;fillColor=#e3c800;fontColor=#000000;strokeColor=#B09500;" parent="1" vertex="1">
<mxGeometry x="650" y="210" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-22" value="A3" style="edgeStyle=orthogonalEdgeStyle;rounded=0;html=1;jettySize=auto;orthogonalLoop=1;fontSize=11;endArrow=block;endFill=0;endSize=8;strokeWidth=1;shadow=0;labelBackgroundColor=none;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="1" source="UxkbkvMXde2H-oP6bU26-4" target="UxkbkvMXde2H-oP6bU26-21" edge="1">
<mxGeometry y="10" relative="1" as="geometry">
<mxPoint as="offset" />
<mxPoint x="530" y="230" as="sourcePoint" />
<mxPoint x="410" y="400" as="targetPoint" />
<Array as="points">
<mxPoint x="560" y="240" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-23" value="跟新规则" style="edgeStyle=orthogonalEdgeStyle;rounded=0;html=1;jettySize=auto;orthogonalLoop=1;fontSize=11;endArrow=block;endFill=0;endSize=8;strokeWidth=1;shadow=0;labelBackgroundColor=none;exitX=0.5;exitY=0;exitDx=0;exitDy=0;" parent="1" source="UxkbkvMXde2H-oP6bU26-21" edge="1">
<mxGeometry x="0.5227" y="-20" relative="1" as="geometry">
<mxPoint as="offset" />
<mxPoint x="630" y="90" as="sourcePoint" />
<mxPoint x="280" y="-230" as="targetPoint" />
<Array as="points">
<mxPoint x="700" y="-230" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-24" value="单次创建" style="whiteSpace=wrap;html=1;fillColor=#ffe6cc;strokeColor=#d79b00;rounded=1;glass=0;strokeWidth=1;shadow=0;" parent="1" vertex="1">
<mxGeometry x="40" y="-470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-25" value="批量创建" style="whiteSpace=wrap;html=1;fillColor=#e3c800;strokeColor=#B09500;fontColor=#000000;rounded=1;glass=0;strokeWidth=1;shadow=0;" parent="1" vertex="1">
<mxGeometry x="280" y="-470" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-26" value="告警规则&amp;阈值推荐" style="whiteSpace=wrap;html=1;fillColor=#008a00;strokeColor=#005700;fontColor=#ffffff;rounded=1;glass=0;strokeWidth=1;shadow=0;" parent="1" vertex="1">
<mxGeometry x="160" y="-430" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-27" value="告警治理" style="rounded=1;whiteSpace=wrap;html=1;fontSize=12;glass=0;strokeWidth=1;shadow=0;fillColor=#a20025;fontColor=#ffffff;strokeColor=#6F0000;" parent="1" vertex="1">
<mxGeometry x="880" y="210" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-28" value="静默策略" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#ffe6cc;strokeColor=#d79b00;" parent="1" vertex="1">
<mxGeometry x="-120" y="320" width="120" height="40" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-29" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="UxkbkvMXde2H-oP6bU26-30" target="UxkbkvMXde2H-oP6bU26-14" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-30" value="指标计算" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" parent="1" vertex="1">
<mxGeometry x="-40" y="-110" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-31" value="<span style="color: rgb(0, 0, 0); font-family: Helvetica; font-size: 12px; font-style: normal; font-variant-ligatures: normal; font-variant-caps: normal; font-weight: 400; letter-spacing: normal; orphans: 2; text-align: center; text-indent: 0px; text-transform: none; widows: 2; word-spacing: 0px; -webkit-text-stroke-width: 0px; background-color: rgb(248, 249, 250); text-decoration-thickness: initial; text-decoration-style: initial; text-decoration-color: initial; float: none; display: inline !important;">任务依赖</span>" style="edgeStyle=orthogonalEdgeStyle;rounded=0;html=1;jettySize=auto;orthogonalLoop=1;fontSize=11;endArrow=block;endFill=0;endSize=8;strokeWidth=1;shadow=0;labelBackgroundColor=none;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" parent="1" source="UxkbkvMXde2H-oP6bU26-14" edge="1">
<mxGeometry y="30" relative="1" as="geometry">
<mxPoint as="offset" />
<mxPoint x="230" y="110" as="sourcePoint" />
<mxPoint x="220" y="40" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-32" value="T+1" style="edgeStyle=orthogonalEdgeStyle;rounded=0;html=1;jettySize=auto;orthogonalLoop=1;fontSize=11;endArrow=block;endFill=0;endSize=8;strokeWidth=1;shadow=0;labelBackgroundColor=none;" parent="1" edge="1">
<mxGeometry y="10" relative="1" as="geometry">
<mxPoint as="offset" />
<mxPoint x="80" y="-80.5" as="sourcePoint" />
<mxPoint x="160" y="-80" as="targetPoint" />
<Array as="points">
<mxPoint x="140" y="-80" />
<mxPoint x="140" y="-80" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-33" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="UxkbkvMXde2H-oP6bU26-34" target="UxkbkvMXde2H-oP6bU26-36" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-34" value="" style="sketch=0;pointerEvents=1;shadow=0;dashed=0;html=1;strokeColor=#006EAF;labelPosition=center;verticalLabelPosition=bottom;verticalAlign=top;align=center;fillColor=#1ba1e2;shape=mxgraph.mscae.intune.account_portal;strokeWidth=10;fontColor=#ffffff;" parent="1" vertex="1">
<mxGeometry x="185" y="-660" width="70" height="90" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-35" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" parent="1" source="UxkbkvMXde2H-oP6bU26-36" target="UxkbkvMXde2H-oP6bU26-16" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-36" value="" style="points=[[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];rounded=1;arcSize=10;dashed=1;strokeColor=#000000;fillColor=none;gradientColor=none;dashPattern=8 3 1 3;strokeWidth=2;whiteSpace=wrap;" parent="1" vertex="1">
<mxGeometry x="23" y="-490" width="394" height="140" as="geometry" />
</mxCell>
<mxCell id="UxkbkvMXde2H-oP6bU26-37" value="" style="points=[[0.25,0,0],[0.5,0,0],[0.75,0,0],[1,0.25,0],[1,0.5,0],[1,0.75,0],[0.75,1,0],[0.5,1,0],[0.25,1,0],[0,0.75,0],[0,0.5,0],[0,0.25,0]];rounded=1;arcSize=10;dashed=1;strokeColor=#000000;fillColor=none;gradientColor=none;dashPattern=8 3 1 3;strokeWidth=2;whiteSpace=wrap;" parent="1" vertex="1">