Skip to content

Commit

Permalink
Double the number of KeyLocationMap attempts (#150)
Browse files Browse the repository at this point in the history
Following this commit in bb-storage:

    commit 45c576372791567ba0111ce79f4cfa1c0ec961ad
    LocalBlobAccess: Double the recommended number of attempts
  • Loading branch information
stagnation authored Nov 12, 2024
1 parent e9cc83a commit 34f1b89
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 14 deletions.
8 changes: 4 additions & 4 deletions bare/config/storage.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ local common = import 'common.libsonnet';
sizeBytes: 400 * 1024 * 1024,
},
},
keyLocationMapMaximumGetAttempts: 8,
keyLocationMapMaximumPutAttempts: 32,
keyLocationMapMaximumGetAttempts: 16,
keyLocationMapMaximumPutAttempts: 64,
oldBlocks: 8,
currentBlocks: 24,
newBlocks: 3,
Expand Down Expand Up @@ -49,8 +49,8 @@ local common = import 'common.libsonnet';
sizeBytes: 1024 * 1024,
},
},
keyLocationMapMaximumGetAttempts: 8,
keyLocationMapMaximumPutAttempts: 32,
keyLocationMapMaximumGetAttempts: 16,
keyLocationMapMaximumPutAttempts: 64,
oldBlocks: 8,
currentBlocks: 24,
newBlocks: 1,
Expand Down
8 changes: 4 additions & 4 deletions docker-compose/config/storage.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ local common = import 'common.libsonnet';
sizeBytes: 400 * 1024 * 1024,
},
},
keyLocationMapMaximumGetAttempts: 8,
keyLocationMapMaximumPutAttempts: 32,
keyLocationMapMaximumGetAttempts: 16,
keyLocationMapMaximumPutAttempts: 64,
oldBlocks: 8,
currentBlocks: 24,
newBlocks: 3,
Expand Down Expand Up @@ -49,8 +49,8 @@ local common = import 'common.libsonnet';
sizeBytes: 1024 * 1024,
},
},
keyLocationMapMaximumGetAttempts: 8,
keyLocationMapMaximumPutAttempts: 32,
keyLocationMapMaximumGetAttempts: 16,
keyLocationMapMaximumPutAttempts: 64,
oldBlocks: 8,
currentBlocks: 24,
newBlocks: 1,
Expand Down
4 changes: 2 additions & 2 deletions docker-compose/config/worker-fuse-ubuntu22-04.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ local common = import 'common.libsonnet';
sizeBytes: 400 * 1024 * 1024,
},
},
keyLocationMapMaximumGetAttempts: 8,
keyLocationMapMaximumPutAttempts: 32,
keyLocationMapMaximumGetAttempts: 16,
keyLocationMapMaximumPutAttempts: 64,
oldBlocks: 8,
currentBlocks: 24,
newBlocks: 3,
Expand Down
8 changes: 4 additions & 4 deletions kubernetes/config/storage.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ local common = import 'common.libsonnet';
sizeBytes: 400 * 1024 * 1024,
},
},
keyLocationMapMaximumGetAttempts: 8,
keyLocationMapMaximumPutAttempts: 32,
keyLocationMapMaximumGetAttempts: 16,
keyLocationMapMaximumPutAttempts: 64,
oldBlocks: 8,
currentBlocks: 24,
newBlocks: 3,
Expand Down Expand Up @@ -49,8 +49,8 @@ local common = import 'common.libsonnet';
sizeBytes: 1024 * 1024,
},
},
keyLocationMapMaximumGetAttempts: 8,
keyLocationMapMaximumPutAttempts: 32,
keyLocationMapMaximumGetAttempts: 16,
keyLocationMapMaximumPutAttempts: 64,
oldBlocks: 8,
currentBlocks: 24,
newBlocks: 1,
Expand Down

0 comments on commit 34f1b89

Please sign in to comment.