forked from mongodb/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.yaml
1023 lines (1023 loc) · 21.9 KB
/
metadata.yaml
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
name: replica-set-primary-with-two-secondaries
alt: "Diagram of a 3 member replica set that consists of a primary and two secondaries."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: replica-set-primary-with-secondary-and-arbiter
alt: "Diagram of a replica set that consists of a primary, a secondary, and an arbiter."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: replica-set-read-write-operations-primary
alt: "Diagram of default routing of reads and writes to the primary."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 500
---
name: replica-set-trigger-election
alt: "Diagram of an election of a new primary. In a three member replica set with two secondaries, the primary becomes unreachable. The loss of a primary triggers an election where one of the secondaries becomes the new primary"
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 500
---
name: replica-set-four-members-add-arbiter
alt: "Diagram of a four member replica set plus an arbiter for odd number of votes."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: replica-set-only-seven-voting-members
alt: "Diagram of a 9 member replica set with the maximum of 7 voting members."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: replica-set-three-members-geographically-distributed
alt: "Diagram of a 3 member replica set distributed across two data centers. Replica set includes a priority 0 member."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: replica-set-three-data-centers
alt: "Diagram of a 5 member replica set distributed across three data centers."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: replica-set-three-data-centers-priority
alt: "Diagram of a 5 member replica set distributed across three data centers. Replica set includes members with priority 0.5 and priority 0."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: replica-set-hidden-member
alt: "Diagram of a 5 member replica set with a hidden priority 0 member."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: replica-set-delayed-member
alt: "Diagram of a 5 member replica set with a hidden delayed priority 0 member."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: replica-set-w-arbiter-trigger-election
alt: "Diagram of an election of a new primary. In a three member replica set with a secondary and an arbiter, the primary becomes unreachable. The loss of a primary triggers an election where the secondary becomes new primary."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 500
---
name: sharded-cluster
alt: "Diagram of a sharded cluster."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 500
---
name: sharding-range-based
alt: "Diagram of the shard key value space segmented into smaller ranges or chunks."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: sharding-migrating
alt: Diagram of a collection distributed across three shards. For this collection, the difference in the number of chunks between the shards reaches the *migration thresholds* (in this case, 2) and triggers migration.
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: sharding-splitting
alt: Diagram of a shard with a chunk that exceeds the default chunk size of 64 MB and triggers a split of the chunk into two chunks.
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 400
---
name: sharded-cluster-primary-shard
alt: Diagram of a primary shard. A primary shard contains non-sharded collections as well as chunks of documents from sharded collections. Shard A is the primary shard.
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 400
---
name: sharded-cluster-mixed
alt: Diagram of applications/drivers issuing queries to mongos for unsharded collection as well as sharded collection. Config servers not shown.
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: sharded-cluster-test-architecture
alt: Diagram of a sample sharded cluster for testing/development purposes only. Contains only 1 config server, 1 ``mongos`` router, and at least 1 shard. The shard can be either a replica set or a standalone ``mongod`` instance.
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 400
---
name: sharded-cluster-production-architecture
alt: Diagram of a sample sharded cluster for production purposes. Contains exactly 3 config servers, 2 or more ``mongos`` query routers, and at least 2 shards. The shards are replica sets.
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 600
---
name: sharded-collection
alt: Diagram of a large collection with data distributed across 4 shards.
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: sharding-hash-based
alt: "Diagram of the hashed based segmentation."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: crud-annotated-sql-select
alt: "The components of a SQL SELECT statement."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 550
---
name: crud-annotated-mongodb-find
alt: "The components of a MongoDB find operation."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 680
---
name: crud-annotated-mongodb-update
alt: "The components of a MongoDB update operation."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 610
---
name: crud-annotated-mongodb-updateOne
alt: "The components of a MongoDB updateOne operation."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-mongodb-updateMany
alt: "The components of a MongoDB updateMany operation."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-mongodb-replaceOne
alt: "The components of a MongoDB replaceOne operation."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-mongodb-remove
alt: "The components of a MongoDB remove operation."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 500
---
name: crud-annotated-mongodb-deleteOne
alt: "The components of a MongoDB deleteOne operation."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-mongodb-deleteMany
alt: "The components of a MongoDB deleteMany operation."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-mongodb-insert
alt: "The components of a MongoDB insert operations."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 590
---
name: crud-annotated-mongodb-insertOne
alt: "The components of a MongoDB insertOne operations."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-mongodb-insertMany
alt: "The components of a MongoDB insertMany operations."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-sql-insert
alt: "The components of a SQL INSERT statement."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 620
---
name: crud-annotated-sql-insertOne
alt: "The components of a SQL INSERT statement."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-sql-insertMany
alt: "The components of a SQL INSERT statement with multiple values/rows."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-sql-update
alt: "The components of a SQL UPDATE statement."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 500
---
name: crud-annotated-sql-updateOne
alt: "The components of a SQL UPDATE statement with LIMIT 1."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-sql-updateMany
alt: "The components of a SQL UPDATE statement."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-sql-replaceOne
alt: "The components of a SQL UPDATE statement with LIMIT 1 used to REPLACE."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-sql-deleteMany
alt: "The components of a SQL DELETE statement."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-sql-deleteOne
alt: "The components of a SQL DELETE statement with LIMIT 1."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 640
---
name: crud-annotated-sql-delete
alt: "The components of a SQL DELETE."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 500
---
name: crud-query-stages
alt: "The stages of a MongoDB query with a query criteria and a sort modifier."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 600
---
name: crud-query-w-projection-stages
alt: "The stages of a MongoDB query with a query criteria and projection. MongoDB only transmits the projected data to the clients."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 760
---
name: crud-insert-stages
alt: "The stages of a MongoDB insert operation."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 600
---
name: aggregation-pipeline
alt: "Diagram of the annotated aggregation pipeline operation. The aggregation pipeline has two stages: ``$match`` and ``$group``."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 760
---
name: crud-annotated-document
alt: "A MongoDB document."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 570
---
name: map-reduce
alt: "Diagram of the annotated map-reduce operation."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 760
---
name: distinct
alt: "Diagram of the annotated distinct operation."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 520
---
name: crud-annotated-collection
alt: "A collection of MongoDB documents."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 520
---
name: crud-write-concern-w2
alt: "Write operation to a replica set with write concern level of ``w:2`` or write to the primary and at least one secondary."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 520
---
name: replica-set-read-preference
alt: "Read operations to a replica set. Default read preference routes the read to the primary. Read preference of ``nearest`` routes the read to the nearest member."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 600
---
name: sharded-cluster-targeted-query
alt: "Read operations to a sharded cluster. Query criteria includes the shard key. The query router ``mongos`` can target the query to the appropriate shard or shards."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 400
---
name: sharded-cluster-scatter-gather-query
alt: "Read operations to a sharded cluster. Query criteria does not include the shard key. The query router ``mongos`` must broadcast query to all shards for the collection."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 400
---
name: crud-write-concern-ack
alt: "Write operation to a ``mongod`` instance with write concern of ``acknowledged``. The client waits for acknowledgment of success or exception."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 460
---
name: crud-write-concern-unack
alt: "Write operation to a ``mongod`` instance with write concern of ``unacknowledged``. The client does not wait for any acknowledgment."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 460
---
name: crud-write-concern-journal
alt: "Write operation to a ``mongod`` instance with write concern of ``journaled``. The ``mongod`` sends acknowledgment after it commits the write operation to the journal."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 600
---
name: index-ascending
alt: "Diagram of an index on the ``score`` field (ascending)."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 720
---
name: data-model-denormalized
alt: "Data model with embedded fields that contain all related information."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 720
---
name: index-compound-key
alt: "Diagram of a compound index on the ``userid`` field (ascending) and the ``score`` field (descending). The index sorts first by the ``userid`` field and then by the ``score`` field."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 720
---
name: data-model-normalized
alt: "Data model using references to link documents. Both the ``contact`` document and the ``access`` document contain a reference to the ``user`` document."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 720
---
name: index-multikey
alt: "Diagram of a multikey index on the ``addr.zip`` field. The ``addr`` field contains an array of address documents. The address documents contain the ``zip`` field."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 760
---
name: data-model-tree
alt: "Tree data model for a sample hierarchy of categories."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 760
---
name: index-with-query
alt: "Diagram of a query selecting documents using an index. MongoDB narrows the query by scanning the range of documents with values of ``score`` less than ``30``."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 540
---
name: data-model-example-nested-set
alt: "Example of a hierarchical data. The numbers identify the stops at nodes during a roundtrip traversal of a tree."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 720
---
name: index-for-sort
alt: "Diagram of a query that uses an index to select and return sorted results. The index stores ``score`` values in ascending order. MongoDB can traverse the index in either ascending or descending order to return sorted results."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 720
---
name: index-for-covered-query
alt: "Diagram of a query that uses only the index to match the query criteria and return the results. MongoDB does not need to inspect data outside of the index to fulfill the query."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 720
---
name: index-2dsphere-polygon-with-ring
alt: "Diagram of a Polygon with internal ring."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 310
---
name: sharding-cleanup-orphaned
alt: "Diagram of shard key value space, showing chunk ranges and shards."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: geospatial-spherical-square
alt: "Diagram of a square projected onto a sphere."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 500
---
name: geospatial-single-point
alt: "Map of a single geospatial point."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 500
---
name: geospatial-polygon-hells-kitchen
alt: "Map of a geospatial polygon."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 500
---
name: geospatial-all-restaurants
alt: "Map of all restaurants in a geospatial polygon."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 500
---
name: bi-connector
alt: "Diagram of the MongoDB Business Intelligence Connector."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: redact-security-architecture
alt: "Diagram of security architecture with middleware and redaction."
output:
- type: print
tag: 'print'
dpi: 300
width: 2100
- type: web
dpi: 72
width: 700
---
name: query-planner-diagram
alt: "Diagram of query planner logic"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 600
---
name: sharded-cluster-monotonic-distribution
alt: "Diagram of poor shard key distribution due to monotonically increasing or decreasing shard key"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700
---
name: sharded-cluster-ranged-distribution-good
alt: "Diagram of good shard key distribution"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700
---
name: sharded-cluster-ranged-distribution-low-cardinal
alt: "Diagram of poor shard key distribution due to low cardinality"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700
---
name: sharded-cluster-ranged-distribution-frequency
alt: "Diagram of poor shard key distribution due to high frequency"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700
---
name: sharded-cluster-hashed-distribution
alt: "Diagram of hashed shard key distribution"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700
---
name: sharded-cluster-zones
alt: "Diagram of data distribution based on zones in a sharded cluster"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700
---
name: sharding-segmenting-data-by-location-overview
alt: "Diagram geo distribution based on zones"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700
---
name: sharding-segmenting-data-by-location-architecture
alt: "Diagram of zones used for supporting geo distribution architecture"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700
---
name: sharding-segmenting-shards-tags
alt: "Diagram of zones used for supporting data segmentation"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700
---
name: sharding-segmenting-shards-overview
alt: "Overview of zones used for supporting data segmentation"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700
---
name: sharding-segmenting-shards-architecture
alt: "Diagram of Data Segmentation Architecture using zones"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700
---
name: sharding-tiered-slas-overview
alt: "Diagram of sharded cluster architecture for tiered SLA"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700
---
name: sharding-tiered-slas-architecture
alt: "Diagram of sharded cluster architecture for tiered SLA"
output:
- type: print
tag: 'print'
dpi: 300
width: 900
- type: web
dpi: 72
width: 700