Skip to content

Commit b5c1a3d

Browse files
committed
docs: typo in batch_size description
Signed-off-by: Miguel Trejo <armando.trejo.marrufo@gmail.com>
1 parent 94abfb6 commit b5c1a3d

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

sdk/python/feast/infra/online_stores/dynamodb.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,10 @@ def online_read(
200200
config: The RepoConfig for the current FeatureStore.
201201
table: Feast FeatureView.
202202
entity_keys: a list of entity keys that should be read from the FeatureStore.
203-
batch_size: the number of items to send to send in a batch_get_item request to DynamoDB.
203+
batch_size: the number of items to send in a batch_get_item request to DynamoDB.
204204
DynamoDB record size limit is 400kb and can retrieve 16MB per call, it is recommended
205-
to set batch_size value less than 40 to UnprocessedKeys and ValidationException.
205+
to set batch_size value less than 40 to avoid ``UnprocessedKeys``` and
206+
``ValidationException`` errors.
206207
"""
207208
online_config = config.online_store
208209
assert isinstance(online_config, DynamoDBOnlineStoreConfig)

0 commit comments

Comments
 (0)