We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3d0c74 commit cc4a5c9Copy full SHA for cc4a5c9
src/containers/Storage/utils/index.ts
@@ -86,6 +86,7 @@ export function getStorageGroupsInitialEntitiesCount(
86
}
87
88
function isErasureWithDifferentDC(erasure?: Erasure) {
89
+ // These erasure types suppose the data distributed across 3 different DC
90
return erasure === 'mirror-3-dc' || erasure === 'mirror-3of4';
91
92
src/types/api/storage.ts
@@ -228,6 +228,9 @@ export interface TStoragePDisk {
228
Whiteboard?: TPDiskStateInfo;
229
230
231
+/**
232
+ * https://ydb.tech/docs/en/concepts/topology#cluster-config
233
+ */
234
export type Erasure = 'none' | 'block-4-2' | 'mirror-3-dc' | 'mirror-3of4';
235
236
// ==== Request types ====
0 commit comments