Skip to content

Commit ae03d21

Browse files
authored
Use eventual consistency reads for chunks (#800)
We're using them for the index read already.
1 parent 773fcf1 commit ae03d21

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

pkg/chunk/aws/storage_client.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -825,7 +825,6 @@ func (b dynamoDBReadRequest) Add(tableName, hashValue string, rangeValue []byte)
825825
aws.String(hashKey),
826826
aws.String(valueKey),
827827
},
828-
ConsistentRead: aws.Bool(true),
829828
}
830829
b[tableName] = requests
831830
}
@@ -852,7 +851,6 @@ func (b dynamoDBReadRequest) TakeReqs(from dynamoDBReadRequest, max int) {
852851
aws.String(hashKey),
853852
aws.String(valueKey),
854853
},
855-
ConsistentRead: aws.Bool(true),
856854
}
857855
}
858856

0 commit comments

Comments
 (0)