-
Notifications
You must be signed in to change notification settings - Fork 0
/
12.drawio
3083 lines (3083 loc) · 256 KB
/
12.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" modified="2024-07-29T07:16:00.229Z" agent="Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/126.0.0.0 Safari/537.36" etag="wnl3Bn7TddOzPlQbk6je" version="24.7.1" type="github" pages="2">
<diagram id="0" name="第 1 页">
<mxGraphModel dx="1307" dy="675" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="GjLp-0E02lRrv3fBgVnX-66" value="<div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div><div>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; fetch fail 后重新计算上游mapper2</div>" style="rounded=1;whiteSpace=wrap;html=1;align=left;" parent="1" vertex="1">
<mxGeometry x="880" y="489" width="595" height="210" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-1" value="mapper1<div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="160" y="130" width="150" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-30" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.001;entryY=0.377;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.75;exitDx=0;exitDy=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-2" target="GjLp-0E02lRrv3fBgVnX-11" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="460.0000000000001" y="420" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-2" value="map1-reduce1<div>map1-reduce2<br></div><div>map1-reduce3</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="185" y="160" width="100" height="60" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-5" value="<div>reducer1</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="470" y="90" width="230" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-6" value="map1-reduce1<div>map2-reduce1</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="500" y="120" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-7" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="160" y="270" width="150" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-3" value="mapper2<div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="GjLp-0E02lRrv3fBgVnX-7" vertex="1">
<mxGeometry width="150" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-4" value="map2-reduce1<div>map2-reduce2<br></div><div>map2-reduce3</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="GjLp-0E02lRrv3fBgVnX-7" vertex="1">
<mxGeometry x="19.565217391304348" y="28.947368421052627" width="110.86956521739131" height="63.68421052631579" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-9" value="<div>reducer2</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="470" y="230" width="230" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-10" value="map1-reduce2<div>map2-reduce2</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="500" y="260" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-11" value="<div>reducer3</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="470" y="370" width="230" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-12" value="map1-reduce3<div>map2-reduce3</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="500" y="400" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-26" value="" style="endArrow=classic;html=1;rounded=0;entryX=0.005;entryY=0.374;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.25;exitDx=0;exitDy=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-2" target="GjLp-0E02lRrv3fBgVnX-6" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="280" y="170" as="sourcePoint" />
<mxPoint x="330" y="120" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-28" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=-0.004;entryY=0.394;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-2" target="GjLp-0E02lRrv3fBgVnX-10" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-31" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=0;entryY=0.75;entryDx=0;entryDy=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-4" target="GjLp-0E02lRrv3fBgVnX-6" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-32" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.01;entryY=0.651;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-4" target="GjLp-0E02lRrv3fBgVnX-10" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="380" y="320" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-37" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-4" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="470" y="440" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-38" value="mapper1<div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="910" y="120" width="150" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-39" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.001;entryY=0.377;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.75;exitDx=0;exitDy=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-40" target="GjLp-0E02lRrv3fBgVnX-48" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1210" y="410" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-40" value="map1-reduce1<div>map1-reduce2<br></div><div>map1-reduce3</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="935" y="150" width="100" height="60" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-41" value="<div>reducer1</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1220" y="80" width="230" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-42" value="map1-reduce1<div>map2-reduce1</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1250" y="110" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-43" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="910" y="260" width="150" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-44" value="mapper2<div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="GjLp-0E02lRrv3fBgVnX-43" vertex="1">
<mxGeometry width="150" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-45" value="map2-reduce1<div>map2-reduce2<br></div><div>map2-reduce3</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="GjLp-0E02lRrv3fBgVnX-43" vertex="1">
<mxGeometry x="19.565217391304348" y="28.947368421052627" width="110.86956521739131" height="63.68421052631579" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-46" value="<div>reducer2</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1220" y="220" width="230" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-47" value="map1-reduce2<div>map2-reduce2</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1250" y="250" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-48" value="<div>reducer3</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1220" y="360" width="230" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-49" value="map1-reduce3<div>map2-reduce3</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1250" y="390" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-50" value="" style="endArrow=classic;html=1;rounded=0;entryX=0.005;entryY=0.374;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.25;exitDx=0;exitDy=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-40" target="GjLp-0E02lRrv3fBgVnX-42" edge="1">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1030" y="160" as="sourcePoint" />
<mxPoint x="1080" y="110" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-51" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=-0.004;entryY=0.394;entryDx=0;entryDy=0;entryPerimeter=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-40" target="GjLp-0E02lRrv3fBgVnX-47" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-52" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.25;exitDx=0;exitDy=0;entryX=0;entryY=0.75;entryDx=0;entryDy=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-45" target="GjLp-0E02lRrv3fBgVnX-42" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-53" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0.01;entryY=0.651;entryDx=0;entryDy=0;entryPerimeter=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-45" target="GjLp-0E02lRrv3fBgVnX-47" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1130" y="310" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-54" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;dashed=1;" parent="1" source="GjLp-0E02lRrv3fBgVnX-45" edge="1">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1220" y="430" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-55" value="fetch fail" style="edgeLabel;html=1;align=center;verticalAlign=middle;resizable=0;points=[];" parent="GjLp-0E02lRrv3fBgVnX-54" vertex="1" connectable="0">
<mxGeometry x="-0.33" y="3" relative="1" as="geometry">
<mxPoint as="offset" />
</mxGeometry>
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-56" value="" style="group" parent="1" vertex="1" connectable="0">
<mxGeometry x="910" y="520" width="150" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-57" value="mapper2.1<div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="GjLp-0E02lRrv3fBgVnX-56" vertex="1">
<mxGeometry width="150" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-58" value="map2.1-reduce1<div>map2.1-reduce2<br></div><div>map2.1-reduce3</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="GjLp-0E02lRrv3fBgVnX-56" vertex="1">
<mxGeometry x="19.565217391304348" y="28.947368421052627" width="110.86956521739131" height="63.68421052631579" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-59" value="<div>reducer3.1</div><div><br></div><div><br></div><div><br></div><div><br></div><div><br></div>" style="rounded=1;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1220" y="520" width="230" height="110" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-60" value="map1-reduce3<div>map2.1-reduce3</div>" style="rounded=0;whiteSpace=wrap;html=1;" parent="1" vertex="1">
<mxGeometry x="1250" y="552.63" width="170" height="60" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-61" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;entryX=0;entryY=0.75;entryDx=0;entryDy=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-58" target="GjLp-0E02lRrv3fBgVnX-60" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="GjLp-0E02lRrv3fBgVnX-62" style="rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1;exitY=0.75;exitDx=0;exitDy=0;entryX=0;entryY=0.25;entryDx=0;entryDy=0;" parent="1" source="GjLp-0E02lRrv3fBgVnX-40" target="GjLp-0E02lRrv3fBgVnX-60" edge="1">
<mxGeometry relative="1" as="geometry" />
</mxCell>
</root>
</mxGraphModel>
</diagram>
<diagram id="TjtDDQsylNEVjHLwCiSy" name="第 2 页">
<mxGraphModel dx="3203" dy="2396" grid="1" gridSize="10" guides="1" tooltips="1" connect="1" arrows="1" fold="1" page="1" pageScale="1" pageWidth="827" pageHeight="1169" math="0" shadow="0">
<root>
<mxCell id="0" />
<mxCell id="1" parent="0" />
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-1" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;gradientColor=#ffd966;" vertex="1" parent="1">
<mxGeometry x="2340" y="-468" width="322" height="2858" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-2" value="" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-60" y="-470" width="1370" height="1400" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-3" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=1 2;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
<mxGeometry x="-60" y="750" width="1370" height="550" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-4" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;" vertex="1" parent="1">
<mxGeometry x="2000" y="2630" width="662" height="468.62" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-5" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="1693" y="-468" width="292" height="490" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-6" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=1 2;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
<mxGeometry x="-60" y="82" width="1370" height="148" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-7" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;gradientColor=#ffd966;" vertex="1" parent="1">
<mxGeometry x="1998" y="-468" width="322" height="2858" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-8" value="" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="2410" y="900.76" width="210" height="729.24" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-9" value="" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="2080" y="882" width="190" height="260" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-10" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=1 2;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
<mxGeometry x="-60" y="-270" width="1370" height="330" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-11" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=1 2;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
<mxGeometry x="-61.5" y="255.25" width="1370" height="199.5" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-12" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="1320" y="-468" width="335" height="1768" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-13" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-14" target="ZkQwXo9ewmm-IHvtcmYB-110">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1643" y="-183" />
<mxPoint x="1643" y="-258" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-14" value="" style="shape=cylinder2;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=9;fillColor=#f5f5f5;strokeColor=#666666;gradientColor=#b3b3b3;" vertex="1" parent="1">
<mxGeometry x="1393" y="-318" width="205" height="548" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-15" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=1 2;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
<mxGeometry x="-293" y="-463" width="193" height="1763" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-16" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=1 2;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
<mxGeometry x="-60" y="-450" width="1370" height="150" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-17" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-199" target="ZkQwXo9ewmm-IHvtcmYB-91">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-18" value="骑手工作状态ODS" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-261.5" y="334.75" width="130" height="40" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-19" value="<span style="font-size: 18px">取消主题</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;dashed=1;dashPattern=1 2;" vertex="1" parent="1">
<mxGeometry x="-88" y="-423" width="145" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-20" value="ADS" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
<mxGeometry x="850" y="-610" width="457" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-21" value="ODS" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
<mxGeometry x="-291.5" y="-610" width="190" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-22" value="DWD&amp;DWS" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
<mxGeometry x="-60" y="-610" width="893" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-23" value="存储" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="1319.75" y="-610" width="335" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-24" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=1.002;exitY=0.359;exitDx=0;exitDy=0;exitPerimeter=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-25" target="ZkQwXo9ewmm-IHvtcmYB-110">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1643" y="465" />
<mxPoint x="1643" y="-258" />
<mxPoint x="2175" y="-258" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-25" value="" style="shape=cylinder2;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=9;fillColor=#f5f5f5;strokeColor=#666666;gradientColor=#b3b3b3;" vertex="1" parent="1">
<mxGeometry x="1407.5" y="401.88" width="195.5" height="175" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-26" value="" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-52" target="ZkQwXo9ewmm-IHvtcmYB-31">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1073" y="67" as="sourcePoint" />
<mxPoint x="1343" y="262" as="targetPoint" />
<Array as="points">
<mxPoint x="1330" y="-358" />
<mxPoint x="1330" y="-223" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-27" value="" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-86" target="ZkQwXo9ewmm-IHvtcmYB-30">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1073" y="7" as="sourcePoint" />
<mxPoint x="1390" y="-263" as="targetPoint" />
<Array as="points">
<mxPoint x="1350" y="-31" />
<mxPoint x="1350" y="-263" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-28" value="" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-81" target="ZkQwXo9ewmm-IHvtcmYB-32">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1073" y="29.5" as="sourcePoint" />
<mxPoint x="1381" y="22" as="targetPoint" />
<Array as="points">
<mxPoint x="1320" y="-240" />
<mxPoint x="1320" y="-188" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-29" value="" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-101" target="ZkQwXo9ewmm-IHvtcmYB-33">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1073" y="147" as="sourcePoint" />
<mxPoint x="1411" y="421" as="targetPoint" />
<Array as="points">
<mxPoint x="1400" y="355" />
<mxPoint x="1400" y="430" />
<mxPoint x="1400" y="497" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-30" value="骑手站点粒度(增量)" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
<mxGeometry x="1405.5" y="-278" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-31" value="运单取消站点粒度15分钟(增量)" style="rounded=0;whiteSpace=wrap;html=1;align=center;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
<mxGeometry x="1408" y="-238" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-32" value="运单站点粒度15分钟(增量)" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
<mxGeometry x="1408" y="-202.75" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-33" value="骑手工作状态站点粒度(增量)" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
<mxGeometry x="1413" y="481.88" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-34" value="ES主集群" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
<mxGeometry x="1474" y="-318" width="56" height="20" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-35" value="应用" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;gradientColor=#ffd966;" vertex="1" parent="1">
<mxGeometry x="1998" y="-610" width="662" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-36" value="<font style="font-size: 18px">OneData 平台</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;dashed=1;dashPattern=1 2;" vertex="1" parent="1">
<mxGeometry x="578" y="-498" width="145" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-37" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-244" target="ZkQwXo9ewmm-IHvtcmYB-40">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-38" value="运单取消原因ODS" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-261.5" y="-380.75" width="130" height="40" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-39" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-40" target="ZkQwXo9ewmm-IHvtcmYB-45">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-40" value="运单变更原因扩展表" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="100" y="-390.5" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-41" value="<span style="font-size: 18px">MQ</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;dashed=1;dashPattern=1 2;" vertex="1" parent="1">
<mxGeometry x="-240" y="-448" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-42" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-43" target="ZkQwXo9ewmm-IHvtcmYB-51">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-43" value="取消单原因&nbsp;15分钟<br>DWS" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="713" y="-390.25" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-44" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-45" target="ZkQwXo9ewmm-IHvtcmYB-47">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-45" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="283" y="-383" width="60" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-46" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-248" target="ZkQwXo9ewmm-IHvtcmYB-43">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-47" value="取消单主题基础表DWD" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="430" y="-390.25" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-48" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-49" target="ZkQwXo9ewmm-IHvtcmYB-52">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-49" value="取消扩展ADS<br>站点粒度-15分钟offset" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="993" y="-386.75" width="140" height="52.5" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-50" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-51" target="ZkQwXo9ewmm-IHvtcmYB-49">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-51" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="895.5" y="-383" width="60" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-52" value="同步作业" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f9f7ed;strokeColor=#36393d;" vertex="1" parent="1">
<mxGeometry x="1173" y="-383" width="60" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-53" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-54">
<mxGeometry relative="1" as="geometry">
<mxPoint x="-40" y="-198" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-54" value="运单源数据ODS" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-260" y="-218" width="130" height="40" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-55" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-266" target="ZkQwXo9ewmm-IHvtcmYB-198">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-56" value="包裹源数据ODS" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-260" y="-128" width="130" height="40" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-57" value="<span style="font-size: 18px">履约主题</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;dashed=1;dashPattern=1 2;" vertex="1" parent="1">
<mxGeometry x="-60" y="-273" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-58" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-197" target="ZkQwXo9ewmm-IHvtcmYB-61">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-59" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-198" target="ZkQwXo9ewmm-IHvtcmYB-61">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-60" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-61" target="ZkQwXo9ewmm-IHvtcmYB-64">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-61" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="205" y="-172.75" width="50" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-62" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=0;exitDx=0;exitDy=0;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-64" target="ZkQwXo9ewmm-IHvtcmYB-45">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-63" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-64" target="ZkQwXo9ewmm-IHvtcmYB-66">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-64" value="运单公共基础表DWD" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="277.5" y="-177.75" width="71" height="55" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-65" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-66" target="ZkQwXo9ewmm-IHvtcmYB-70">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-66" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="370" y="-172.75" width="60" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-67" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-250" target="ZkQwXo9ewmm-IHvtcmYB-72">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="690" y="-206" />
<mxPoint x="690" y="-230" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-68" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-70" target="ZkQwXo9ewmm-IHvtcmYB-127">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="495" y="102" />
<mxPoint x="313" y="102" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-69" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-252" target="ZkQwXo9ewmm-IHvtcmYB-220">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="680" y="-150" />
<mxPoint x="680" y="-150" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-70" value="合流下游基础标签处理表DWD" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="452" y="-180.87" width="86" height="61.25" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-71" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-72" target="ZkQwXo9ewmm-IHvtcmYB-193">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="835" y="-220" />
<mxPoint x="835" y="-193" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-72" value="<div style="text-align: left">运单DWS</div><div style="text-align: left"><span>站点粒度-15分钟</span></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="715" y="-252.25" width="100" height="44.25" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-73" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-74" target="ZkQwXo9ewmm-IHvtcmYB-226">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-74" value="<div>骑手DWS</div><div>站点粒度-全天</div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="708" y="-49.99" width="102" height="42" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-75" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-76" target="ZkQwXo9ewmm-IHvtcmYB-51">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-76" value="组织层级维表" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="865.5" y="-448" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-77" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-78" target="ZkQwXo9ewmm-IHvtcmYB-81">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-78" value="运单扩展ADS<br>站点粒度-15分钟" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="993" y="-258" width="140" height="38" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-79" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-80">
<mxGeometry relative="1" as="geometry">
<mxPoint x="990" y="-242" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-80" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="850" y="-258" width="60" height="32" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-81" value="同步作业" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f9f7ed;strokeColor=#36393d;" vertex="1" parent="1">
<mxGeometry x="1173" y="-256.12" width="60" height="34.25" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-82" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-83" target="ZkQwXo9ewmm-IHvtcmYB-86">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-83" value="骑手扩展ADS<br>站点粒度-全天" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="991.5" y="-49.99" width="140" height="38.25" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-84" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-85" target="ZkQwXo9ewmm-IHvtcmYB-236">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-85" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="850" y="-104.5" width="60" height="30.25" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-86" value="同步作业" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f9f7ed;strokeColor=#36393d;" vertex="1" parent="1">
<mxGeometry x="1170" y="-46.06" width="60" height="30.38" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-87" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-88" target="ZkQwXo9ewmm-IHvtcmYB-66">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-88" value="6个标签维表" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="340" y="-88" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-89" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-118" target="ZkQwXo9ewmm-IHvtcmYB-91">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-90" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-91" target="ZkQwXo9ewmm-IHvtcmYB-94">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-91" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="238.5" y="331.75" width="50" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-92" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-264" target="ZkQwXo9ewmm-IHvtcmYB-96">
<mxGeometry relative="1" as="geometry">
<mxPoint x="527.5" y="354.75" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-93" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-94" target="ZkQwXo9ewmm-IHvtcmYB-172">
<mxGeometry relative="1" as="geometry">
<mxPoint x="528.5" y="423.5" as="targetPoint" />
<Array as="points">
<mxPoint x="387.5" y="423.25" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-94" value="<span style="color: rgba(0 , 0 , 0 , 0.85) ; font-family: , &#34;pingfangsc&#34; , &#34;helvetica neue&#34; , &#34;hiragino sans gb&#34; , &#34;arial&#34; , &#34;microsoft yahei&#34; , sans-serif ; font-size: 14px ; text-align: left ; background-color: rgb(250 , 250 , 250)">骑手工作状态表</span>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="333.5" y="327.25" width="107" height="55" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-95" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-96" target="ZkQwXo9ewmm-IHvtcmYB-100">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-96" value="<div style="text-align: left"><span style="font-size: 14px ; background-color: rgb(250 , 250 , 250)">骑手工作状态DWS</span></div><div style="text-align: left"><span style="font-size: 14px ; background-color: rgb(250 , 250 , 250)">&nbsp; 站点粒度</span></div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="645.5" y="324.75" width="180" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-97" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-98" target="ZkQwXo9ewmm-IHvtcmYB-101">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-98" value="骑手工作状态扩展ADS<br>站点粒度" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="991.5" y="328.5" width="140" height="52.5" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-99" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-100" target="ZkQwXo9ewmm-IHvtcmYB-98">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-100" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="891.5" y="332.25" width="60" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-101" value="同步作业" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f9f7ed;strokeColor=#36393d;" vertex="1" parent="1">
<mxGeometry x="1171.5" y="332.25" width="60" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-102" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-103" target="ZkQwXo9ewmm-IHvtcmYB-100">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-103" value="组织层级维表" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="861.5" y="267.25" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-104" value="骑手状态站点数据<br>单表 4w条/日" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
<mxGeometry x="1429.5" y="591.88" width="155.5" height="20" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-105" value="<span style="font-size: 18px">运力管控主题</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;dashed=1;dashPattern=1 2;" vertex="1" parent="1">
<mxGeometry x="-54" y="261" width="115" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-106" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-107" target="ZkQwXo9ewmm-IHvtcmYB-110">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="2175" y="-378" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-107" value="" style="shape=cylinder2;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=9;fillColor=#f5f5f5;strokeColor=#666666;gradientColor=#b3b3b3;" vertex="1" parent="1">
<mxGeometry x="1722.25" y="-418" width="203.5" height="90" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-108" value="Redis" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
<mxGeometry x="1804" y="-418" width="40" height="20" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-109" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-110">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="2163" y="-390" />
</Array>
<mxPoint x="1925" y="-390" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-110" value="Monitor.Server" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;gradientColor=#7ea6e0;" vertex="1" parent="1">
<mxGeometry x="2111.3" y="660" width="127.39" height="157" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-111" value="Monitor.Web" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
<mxGeometry x="2455" y="663.5" width="120" height="150" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-112" value="请求限流" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="2107.69" y="890" width="130" height="40" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-113" value="Jarvis卡点/挂banner预案" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
<mxGeometry x="2430" y="910.76" width="170" height="40" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-114" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;exitX=0.5;exitY=1;exitDx=0;exitDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-111" target="ZkQwXo9ewmm-IHvtcmYB-111">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-115" value="1、优先查询缓存" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
<mxGeometry x="1933" y="-378" width="100" height="20" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-116" value="2、Redis无数据从ES/MySQL查询" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
<mxGeometry x="1613" y="-310.5" width="100" height="32.5" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-117" value="4、查询结果写入缓存,设置过期时间" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
<mxGeometry x="1998" y="-418" width="115" height="20" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-118" value="3个标签维表" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="216" y="414.75" width="95" height="27.5" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-119" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-270" target="ZkQwXo9ewmm-IHvtcmYB-199">
<mxGeometry relative="1" as="geometry">
<mxPoint x="23.5" y="209.75" as="sourcePoint" />
<mxPoint x="173.5" y="209.75" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-120" value="主备存储路由" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="2110.3" y="1070" width="130" height="40" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-121" value="3、支持切换备用存储" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
<mxGeometry x="1655" y="-254.25" width="130" height="32.5" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-122" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-268" target="ZkQwXo9ewmm-IHvtcmYB-125">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-123" value="定价表ODS" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-260" y="156" width="130" height="40" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-124" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-125" target="ZkQwXo9ewmm-IHvtcmYB-127">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-125" value="定价表明细" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="100" y="156" width="95" height="40" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-126" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-127" target="ZkQwXo9ewmm-IHvtcmYB-131">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-127" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="288" y="153.5" width="50" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-128" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-129" target="ZkQwXo9ewmm-IHvtcmYB-135">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-129" value="运单定价15分钟<br>DWS" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="698" y="146" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-130" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-262" target="ZkQwXo9ewmm-IHvtcmYB-129">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-131" value="运单定价明细基础表DWD" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="425" y="146" width="120" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-132" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-133" target="ZkQwXo9ewmm-IHvtcmYB-136">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-133" value="运单定价扩展ADS<br>站点粒度-15分钟offset" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="993" y="149.75" width="140" height="52.5" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-134" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-135" target="ZkQwXo9ewmm-IHvtcmYB-133">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-135" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="893" y="153.5" width="60" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-136" value="同步作业" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f9f7ed;strokeColor=#36393d;" vertex="1" parent="1">
<mxGeometry x="1173" y="153.5" width="60" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-137" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-138" target="ZkQwXo9ewmm-IHvtcmYB-135">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-138" value="组织层级维表" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="863" y="86" width="120" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-139" value="" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-136" target="ZkQwXo9ewmm-IHvtcmYB-140">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1243" y="-90.5" as="sourcePoint" />
<mxPoint x="1393" y="-178" as="targetPoint" />
<Array as="points">
<mxPoint x="1370" y="176" />
<mxPoint x="1370" y="60" />
<mxPoint x="1370" y="-153" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-140" value="运单定价站点粒度15分钟(增量)" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f8cecc;strokeColor=#b85450;" vertex="1" parent="1">
<mxGeometry x="1408" y="-168" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-141" value="<span style="font-size: 18px">定价主题</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;dashed=1;dashPattern=1 2;" vertex="1" parent="1">
<mxGeometry x="-60" y="80" width="100" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-142" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-143" target="ZkQwXo9ewmm-IHvtcmYB-147">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="830" y="34" />
<mxPoint x="830" y="33" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-143" value="超时单站点分状态数据-全天" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="710" y="8.250000000000002" width="100" height="50" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-144" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-145" target="ZkQwXo9ewmm-IHvtcmYB-148">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-145" value="超时单站点分状态数据-全天" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="994.5" y="13.57" width="137" height="41.75" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-146" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-147" target="ZkQwXo9ewmm-IHvtcmYB-145">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-147" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="850" y="19.130000000000003" width="60" height="28.25" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-148" value="同步作业" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f9f7ed;strokeColor=#36393d;" vertex="1" parent="1">
<mxGeometry x="1170" y="16.57" width="60" height="33.37" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-149" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=1;entryDx=0;entryDy=0;dashed=1;exitX=0;exitY=0.25;exitDx=0;exitDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-150" target="ZkQwXo9ewmm-IHvtcmYB-147">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="920" y="60" />
<mxPoint x="880" y="60" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-150" value="组织层级维表" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="920" y="59.75" width="120" height="17.25" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-151" value="超时单站点分状态数据(增量)" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" vertex="1" parent="1">
<mxGeometry x="1408" y="-118" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-152" value="" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-148" target="ZkQwXo9ewmm-IHvtcmYB-151">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1233" y="7.25" as="sourcePoint" />
<mxPoint x="1405.5" y="-155.25" as="targetPoint" />
<Array as="points">
<mxPoint x="1360" y="29" />
<mxPoint x="1360" y="-103" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-153" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=1 2;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
<mxGeometry x="-60.5" y="618.88" width="1370" height="128" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-154" value="<span style="font-size: 18px">骑手小组绑定关系主题</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;dashed=1;dashPattern=1 2;" vertex="1" parent="1">
<mxGeometry x="-80.5" y="626.88" width="235" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-155" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-274" target="ZkQwXo9ewmm-IHvtcmYB-208">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-156" value="骑手小组绑定关系数据ODS" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-260.5" y="683.88" width="125" height="50" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-157" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;exitX=1;exitY=0.5;exitDx=0;exitDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-208" target="ZkQwXo9ewmm-IHvtcmYB-158">
<mxGeometry relative="1" as="geometry">
<mxPoint x="1162.5" y="708.88" as="targetPoint" />
<mxPoint x="372.5" y="709.38" as="sourcePoint" />
<Array as="points">
<mxPoint x="271.5" y="709.88" />
<mxPoint x="767.5" y="709.88" />
<mxPoint x="767.5" y="708.88" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-158" value="同步作业" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f9f7ed;strokeColor=#36393d;" vertex="1" parent="1">
<mxGeometry x="1172.5" y="686.38" width="60" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-159" value="缓存" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="1690" y="-610" width="295" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-160" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-161" target="ZkQwXo9ewmm-IHvtcmYB-110">
<mxGeometry relative="1" as="geometry">
<Array as="points" />
<mxPoint x="2103" y="-240" as="targetPoint" />
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-161" value="" style="shape=cylinder2;whiteSpace=wrap;html=1;boundedLbl=1;backgroundOutline=1;size=9;fillColor=#f5f5f5;strokeColor=#666666;gradientColor=#b3b3b3;" vertex="1" parent="1">
<mxGeometry x="1722.25" y="-108" width="203.5" height="70" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-162" value="Tair" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
<mxGeometry x="1804" y="-110.25" width="40" height="20" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-163" value="" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="1693" y="117" width="292" height="1183" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-164" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.554;entryY=1;entryDx=0;entryDy=0;entryPerimeter=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-165" target="ZkQwXo9ewmm-IHvtcmYB-161">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1835" y="112" />
<mxPoint x="1835" y="112" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-165" value="" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d0cee2;strokeColor=#56517e;" vertex="1" parent="1">
<mxGeometry x="1733" y="142" width="210" height="240" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-166" value="Crane Job" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
<mxGeometry x="1713" y="122" width="155.5" height="20" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-167" value="预计算定时任务<br>(站点,区域,城市,全国维度)" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#f5f5f5;strokeColor=#666666;fontColor=#333333;" vertex="1" parent="1">
<mxGeometry x="1690" y="47" width="295" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-168" value="<font color="#ff0000">预存8天维度数据</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
<mxGeometry x="1756.75" y="-74.25" width="134.5" height="22.49" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-169" value="<font color="#ff0000">查询结果缓存</font>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
<mxGeometry x="1767.13" y="-378" width="134.5" height="22.49" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-170" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-32" target="ZkQwXo9ewmm-IHvtcmYB-165">
<mxGeometry relative="1" as="geometry">
<Array as="points">
<mxPoint x="1643" y="-188" />
<mxPoint x="1643" y="244" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-171" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-172" target="ZkQwXo9ewmm-IHvtcmYB-173">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-172" value="<div style="text-align: left"><span style="font-size: 14px ; background-color: rgb(250 , 250 , 250)">骑手工作状态信息明细表<br></span></div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="646.5" y="399.75" width="180" height="47.5" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-173" value="同步作业" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f9f7ed;strokeColor=#36393d;" vertex="1" parent="1">
<mxGeometry x="1171.5" y="401" width="60" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-174" value="" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-173" target="ZkQwXo9ewmm-IHvtcmYB-175">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1243" y="425.75" as="sourcePoint" />
<mxPoint x="1393" y="-168" as="targetPoint" />
<Array as="points">
<mxPoint x="1380" y="424" />
<mxPoint x="1380" y="210" />
<mxPoint x="1380" y="70" />
<mxPoint x="1380" y="-59" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-175" value="骑手状态明细数据(增量)" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" vertex="1" parent="1">
<mxGeometry x="1405.5" y="-74.25" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-176" value="" style="rounded=0;whiteSpace=wrap;html=1;dashed=1;dashPattern=1 2;fillColor=#dae8fc;strokeColor=#6c8ebf;" vertex="1" parent="1">
<mxGeometry x="-60" y="473" width="1370" height="128" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-177" value="<span style="font-size: 18px">人员位置信息</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;dashed=1;dashPattern=1 2;" vertex="1" parent="1">
<mxGeometry x="-52.5" y="471" width="115" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-178" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-272" target="ZkQwXo9ewmm-IHvtcmYB-200">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-179" value="<div style="text-align: left">骑手上报位置信息ODS<br></div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-260" y="538" width="125" height="50" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-180" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-200" target="ZkQwXo9ewmm-IHvtcmYB-184">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-181" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0.5;entryY=0;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-182" target="ZkQwXo9ewmm-IHvtcmYB-184">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-182" value="组织层级维表" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="873" y="486.25" width="95" height="27.5" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-183" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-184" target="ZkQwXo9ewmm-IHvtcmYB-185">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-184" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="895.5" y="540.5" width="50" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-185" value="同步作业" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f9f7ed;strokeColor=#36393d;" vertex="1" parent="1">
<mxGeometry x="1173" y="540.5" width="60" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-186" value="骑手位置信息表(增量)" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" vertex="1" parent="1">
<mxGeometry x="1406" y="-37.99000000000001" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-187" value="" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-185" target="ZkQwXo9ewmm-IHvtcmYB-186">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1243" y="498.25" as="sourcePoint" />
<mxPoint x="1415.5" y="-49.25" as="targetPoint" />
<Array as="points">
<mxPoint x="1360" y="563" />
<mxPoint x="1360" y="460" />
<mxPoint x="1360" y="380" />
<mxPoint x="1360" y="40" />
<mxPoint x="1390" y="40" />
<mxPoint x="1390" y="-23" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-188" value="骑手分组信息表(离线快照+增量)" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" vertex="1" parent="1">
<mxGeometry x="1408" y="2" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-189" value="" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-158" target="ZkQwXo9ewmm-IHvtcmYB-188">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1238" y="705.75" as="sourcePoint" />
<mxPoint x="1398" y="707.06" as="targetPoint" />
<Array as="points">
<mxPoint x="1350" y="709" />
<mxPoint x="1350" y="220" />
<mxPoint x="1350" y="17" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-190" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-191" target="ZkQwXo9ewmm-IHvtcmYB-194">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-191" value="运单扩展ADS<br>站点粒度-15分钟offset" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="993" y="-202.75" width="140" height="39.75" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-192" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-193" target="ZkQwXo9ewmm-IHvtcmYB-191">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-193" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="850" y="-208" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-194" value="同步作业" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f9f7ed;strokeColor=#36393d;" vertex="1" parent="1">
<mxGeometry x="1175" y="-199.25" width="60" height="32.75" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-195" value="运单站点最近6个offset(增量)" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" vertex="1" parent="1">
<mxGeometry x="1408" y="42" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-196" value="" style="endArrow=classic;html=1;exitX=1;exitY=0.5;exitDx=0;exitDy=0;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-194" target="ZkQwXo9ewmm-IHvtcmYB-195">
<mxGeometry width="50" height="50" relative="1" as="geometry">
<mxPoint x="1233" y="-147.03" as="sourcePoint" />
<mxPoint x="1393" y="-42.079999999999956" as="targetPoint" />
<Array as="points">
<mxPoint x="1340" y="-183" />
<mxPoint x="1340" y="57" />
</Array>
</mxGeometry>
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-197" value="运单明细表" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="100" y="-228" width="90" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-198" value="包裹明细表" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="100" y="-138" width="90" height="60" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-199" value="骑手工作状态表" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="98.5" y="334.25" width="107" height="40" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-200" value="<div>骑手位置信息数据</div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="102" y="535.5" width="130" height="55" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-201" value="配置中心" style="rounded=0;whiteSpace=wrap;html=1;strokeColor=#666666;fontColor=#333333;fillColor=#6B6B6B;gradientColor=#ffffff;" vertex="1" parent="1">
<mxGeometry x="2000" y="2530" width="662" height="100" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-202" value="" style="rounded=1;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="2050" y="2695.3699999999994" width="578" height="324.5" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-203" value="<font color="#ff0000">缓存管理</font>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="2223" y="2743.1199999999994" width="109.22" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-204" value="<font color="#ff0000">监控配置管理</font>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="2487.22" y="2945.6199999999994" width="110" height="46.75" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-205" value="<font color="#ff0000">灰度管理</font>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="2222" y="2947.3699999999994" width="110" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-206" value="<font color="#ff0000">主备链路管理</font>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="2222" y="2847.1199999999994" width="109.22" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-207" value="骑手信息(离线快照+增量)" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#e1d5e7;strokeColor=#9673a6;" vertex="1" parent="1">
<mxGeometry x="1408" y="82" width="180" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-208" value="骑手小组绑定关系数据<div style="text-align: left"></div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="101.5" y="681.38" width="170" height="55" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-209" value="同步作业" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#f9f7ed;strokeColor=#36393d;" vertex="1" parent="1">
<mxGeometry x="510" y="1207" width="60" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-210" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-211" target="ZkQwXo9ewmm-IHvtcmYB-214">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-211" value="用户信息表<div style="text-align: left"></div>" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="102" y="1157.5" width="170" height="55" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-212" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-276" target="ZkQwXo9ewmm-IHvtcmYB-211">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-213" value="用户信息ODS" style="rounded=0;whiteSpace=wrap;html=1;" vertex="1" parent="1">
<mxGeometry x="-275" y="1160" width="125" height="50" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-214" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="314" y="1162.75" width="50" height="45" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-215" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-216" target="ZkQwXo9ewmm-IHvtcmYB-214">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-216" value="4个标签维表" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#b1ddf0;strokeColor=#10739e;" vertex="1" parent="1">
<mxGeometry x="291.5" y="1258.25" width="95" height="27.5" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-217" value="&nbsp;banma_rt_monitor_instant" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;" vertex="1" parent="1">
<mxGeometry x="1483" y="430.88" width="40" height="20" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-218" value="<span style="font-size: 18px">用户信息主题</span>" style="text;html=1;strokeColor=none;fillColor=none;align=center;verticalAlign=middle;whiteSpace=wrap;rounded=0;dashed=1;dashPattern=1 2;" vertex="1" parent="1">
<mxGeometry x="-112.5" y="769.01" width="235" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-219" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-220" target="ZkQwXo9ewmm-IHvtcmYB-222">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-220" value="<div style="text-align: left">订单DWS</div><div style="text-align: left"><span>站点粒度-15分钟</span></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="710" y="-172" width="100" height="44.25" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-221" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;entryX=0;entryY=0.5;entryDx=0;entryDy=0;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-222" target="ZkQwXo9ewmm-IHvtcmYB-234">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-222" value="JOIN" style="rounded=1;whiteSpace=wrap;html=1;fillColor=#d5e8d4;strokeColor=#82b366;" vertex="1" parent="1">
<mxGeometry x="850" y="-165.25" width="60" height="30" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-223" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-224" target="ZkQwXo9ewmm-IHvtcmYB-85">
<mxGeometry relative="1" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-224" value="<div style="text-align: left">调度单DWS</div><div style="text-align: left"><span>站点粒度-15分钟</span></div>" style="rounded=0;whiteSpace=wrap;html=1;fillColor=#fff2cc;strokeColor=#d6b656;" vertex="1" parent="1">
<mxGeometry x="710" y="-111.12" width="100" height="44.25" as="geometry" />
</mxCell>
<mxCell id="ZkQwXo9ewmm-IHvtcmYB-225" value="" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;" edge="1" parent="1" source="ZkQwXo9ewmm-IHvtcmYB-226">