Skip to content

Commit 79b864a

Browse files
authored
Merge branch 'master' into fix/kms_key_does_not_propagate_in_register_model
2 parents 375c0fd + 81afe34 commit 79b864a

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## v2.46.1 (2021-06-22)
4+
5+
### Bug Fixes and Other Changes
6+
7+
* Register model step tags
8+
9+
### Documentation Changes
10+
11+
* update to include new batch_get_record api call
12+
* Correct type annotation for TrainingStep inputs
13+
* introduce input mode FastFile
14+
* update hf transformer version
15+
316
## v2.46.0 (2021-06-15)
417

518
### Features

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.46.1.dev0
1+
2.46.2.dev0

doc/amazon_sagemaker_featurestore.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,13 @@ example identifier to retrieve the record.
291291
record_identifier_value = str(2990130)
292292
featurestore_runtime.get_record(FeatureGroupName=transaction_feature_group_name, RecordIdentifierValueAsString=record_identifier_value)
293293
294+
You can use the ``batch_get_record`` function to retrieve multiple records simultaneously from your feature store. The following example uses this API to retrieve a batch of records.
295+
296+
.. code:: python
297+
298+
record_identifier_values = ["573291", "109382", "828400", "124013"]
299+
featurestore_runtime.batch_get_record(Identifiers=[{"FeatureGroupName": transaction_feature_group_name, "RecordIdentifiersValueAsString": record_identifier_values}])
300+
294301
An example response from the fraud detection example:
295302
296303
.. code:: python

0 commit comments

Comments
 (0)