{"id":4397,"date":"2026-08-28T19:31:00","date_gmt":"2026-08-28T19:31:00","guid":{"rendered":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/"},"modified":"2026-08-29T11:59:07","modified_gmt":"2026-08-29T11:59:07","slug":"batch-write-and-discover-records-in-amazon-sagemaker-feature-store","status":"publish","type":"post","link":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/","title":{"rendered":"Batch write and uncover information in Amazon SageMaker Function Retailer"},"content":{"rendered":"<p><br \/>\n<\/p>\n<div id=\"\">\n<p>Amazon SageMaker Function Retailer is a totally managed, purpose-built repository to retailer, share, and handle options for machine studying (ML) fashions. It supplies low-latency on-line serving for real-time inference, an offline retailer for historic retention and coaching characteristic information, and helps each streaming and batch ingestion patterns.<\/p>\n<p>As ML platforms mature, two operational gaps floor repeatedly. First, groups operating high-throughput characteristic pipelines should name PutRecord (which writes a single characteristic file to the web retailer) in a loop. This implies one API name per file, per characteristic group, which creates connection overhead and poor throughput. A fraud-detection pipeline ingesting 10,000 information per second throughout 5 characteristic teams should maintain 50,000 particular person API calls per second solely to maintain options present. A second problem is that groups utilizing the In-Reminiscence storage tier don&#8217;t have any method to browse or enumerate information saved within the on-line retailer. If file identifiers are misplaced by way of a bug or pipeline failure, these information grow to be completely unrecoverable. There isn&#8217;t a offline retailer for the In-Reminiscence tier to fall again on, no Amazon Athena question to run, and no API to find what exists.<\/p>\n<p>Right this moment, we&#8217;re saying two new APIs for Amazon SageMaker Function Retailer:<\/p>\n<p>        BatchWriteRecord \u2014 Write as much as 25 information throughout a number of characteristic teams in a single API name, with partial-success semantics, per-record time-to-live (TTL) management, and the identical EventTime-based ordering ensures as PutRecord.<br \/>\n        ListRecords \u2014 Enumerate file identifiers inside a characteristic group utilizing pagination. Works with each Normal (Amazon DynamoDB-backed) and In-Reminiscence (Redis-backed) storage tiers.<\/p>\n<p>On this publish, we stroll by way of every API with code examples you need to use to get began.<\/p>\n<h2 id=\"prerequisites\">Stipulations<\/h2>\n<p>To observe together with the examples on this publish, you want:<\/p>\n<h2 id=\"batchwriterecord\">BatchWriteRecord<\/h2>\n<p>The BatchWriteRecord API tackles the throughput limits of single-record ingestion. The next sections clarify the issue it solves and the way it works.<\/p>\n<h3 id=\"the-challenge-with-single-record-ingestion\">The problem with single-record ingestion<\/h3>\n<p>The prevailing PutRecord API in Function Retailer writes one file to at least one characteristic group per name. Every name performs a conditional write: the file is continued because the \u201cnewest\u201d model provided that its EventTime, included within the request, is newer than the prevailing file. If the situation fails, the file remains to be written as a historic model for the offline retailer.<\/p>\n<p>This design supplies robust ordering ensures, however at scale it forces an N\u00d7M calling sample (N information \u00d7 M characteristic teams), creating connection overhead and tail latency that restrict throughput.<\/p>\n<h3 id=\"how-batchwriterecord-works\">How BatchWriteRecord works<\/h3>\n<p>BatchWriteRecord accepts as much as 25 entries in a single request, concentrating on a number of characteristic teams concurrently. Every file succeeds or fails independently. It is a partial-success API, which means particular person file failures don&#8217;t fail your entire request.<\/p>\n<p>The API preserves the identical EventTime-based ordering as PutRecord:<\/p>\n<p>        If the incoming file\u2019s EventTime is newer than the prevailing file, it turns into the newest model within the on-line retailer.<br \/>\n        If not, the file is written as a historic model to the offline retailer (for characteristic teams with offline storage).<br \/>\n        Information that fail for different causes (authentication\/validation errors, service throttling) are returned within the response with error particulars and the unique file.<br \/>\n        The requests which are unprocessed will likely be returned in response as UnprocessedEntries which may be retried.<\/p>\n<h3 id=\"request-structure\">Request construction<\/h3>\n<div class=\"hide-language\">\n        {<br \/>\n    &#8220;Entries&#8221;: [<br \/>\n        {<br \/>\n            &#8220;FeatureGroupName&#8221;: &#8220;click-features&#8221;,<br \/>\n            &#8220;Record&#8221;: [<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;user_id&#8221;, &#8220;ValueAsString&#8221;: &#8220;user-123&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;event_time&#8221;, &#8220;ValueAsString&#8221;: &#8220;2026-06-05T12:00:00Z&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;click_count&#8221;, &#8220;ValueAsString&#8221;: &#8220;42&#8221;}<br \/>\n            ],<br \/>\n            &#8220;TargetStores&#8221;: [&#8220;OnlineStore&#8221;, &#8220;OfflineStore&#8221;],<br \/>\n            &#8220;TtlDuration&#8221;: {&#8220;Unit&#8221;: &#8220;Days&#8221;, &#8220;Worth&#8221;: 7}<br \/>\n        },<br \/>\n        {<br \/>\n            &#8220;FeatureGroupName&#8221;: &#8220;login-features&#8221;,<br \/>\n            &#8220;File&#8221;: [<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;user_id&#8221;, &#8220;ValueAsString&#8221;: &#8220;user-456&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;event_time&#8221;, &#8220;ValueAsString&#8221;: &#8220;2026-06-05T12:00:01Z&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;login_count&#8221;, &#8220;ValueAsString&#8221;: &#8220;18&#8221;}<br \/>\n            ],<br \/>\n            &#8220;TargetStores&#8221;: [&#8220;OnlineStore&#8221;, &#8220;OfflineStore&#8221;]<br \/>\n        }<br \/>\n    ]<br \/>\n}\n       <\/div>\n<p>The response returns solely the information that failed:<\/p>\n<div class=\"hide-language\">\n        {<br \/>\n    &#8220;Errors&#8221;: [<br \/>\n        {<br \/>\n            &#8220;Entry&#8221;: {<br \/>\n                &#8220;FeatureGroupName&#8221;: &#8220;string&#8221;,<br \/>\n                &#8220;Record&#8221;: [<br \/>\n                    {<br \/>\n                        &#8220;FeatureName&#8221;: &#8220;string&#8221;,<br \/>\n                        &#8220;ValueAsString&#8221;: &#8220;string&#8221;,<br \/>\n                        &#8220;ValueAsStringList&#8221;: [&#8220;string&#8221;]<br \/>\n                    }<br \/>\n                ],<br \/>\n                &#8220;TargetStores&#8221;: [&#8220;string&#8221;],<br \/>\n                &#8220;TtlDuration&#8221;: {<br \/>\n                    &#8220;Unit&#8221;: &#8220;string&#8221;,<br \/>\n                    &#8220;Worth&#8221;: quantity<br \/>\n                }<br \/>\n            },<br \/>\n            &#8220;ErrorCode&#8221;: &#8220;string&#8221;,<br \/>\n            &#8220;ErrorMessage&#8221;: &#8220;string&#8221;<br \/>\n        }<br \/>\n    ],<br \/>\n    &#8220;UnprocessedEntries&#8221;: [<br \/>\n        {<br \/>\n            &#8220;FeatureGroupName&#8221;: &#8220;string&#8221;,<br \/>\n            &#8220;Record&#8221;: [<br \/>\n                {<br \/>\n                    &#8220;FeatureName&#8221;: &#8220;string&#8221;,<br \/>\n                    &#8220;ValueAsString&#8221;: &#8220;string&#8221;,<br \/>\n                    &#8220;ValueAsStringList&#8221;: [&#8220;string&#8221;]<br \/>\n                }<br \/>\n            ],<br \/>\n            &#8220;TargetStores&#8221;: [&#8220;string&#8221;],<br \/>\n            &#8220;TtlDuration&#8221;: {<br \/>\n                &#8220;Unit&#8221;: &#8220;string&#8221;,<br \/>\n                &#8220;Worth&#8221;: quantity<br \/>\n            }<br \/>\n        }<br \/>\n    ]<br \/>\n}\n       <\/div>\n<p>Information not listed in Errors or UnprocessedEntries succeeded. Your utility ought to retry solely the failed information utilizing exponential backoff for retriable errors.<\/p>\n<h3 id=\"code-example-batch-ingestion-with-boto3\">Code instance: Batch ingestion with Boto3<\/h3>\n<div class=\"hide-language\">\n        import boto3<\/p>\n<p>featurestore_runtime = boto3.consumer(&#8220;sagemaker-featurestore-runtime&#8221;)<\/p>\n<p>response = featurestore_runtime.batch_write_record(<br \/>\n    Entries=[<br \/>\n        {<br \/>\n            &#8220;FeatureGroupName&#8221;: &#8220;click-features&#8221;,<br \/>\n            &#8220;Record&#8221;: [<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;user_id&#8221;, &#8220;ValueAsString&#8221;: &#8220;user-123&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;event_time&#8221;, &#8220;ValueAsString&#8221;: &#8220;2026-06-05T12:00:00Z&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;click_count&#8221;, &#8220;ValueAsString&#8221;: &#8220;42&#8221;},<br \/>\n            ],<br \/>\n            &#8220;TargetStores&#8221;: [&#8220;OnlineStore&#8221;, &#8220;OfflineStore&#8221;],<br \/>\n        },<br \/>\n        {<br \/>\n            &#8220;FeatureGroupName&#8221;: &#8220;login-features&#8221;,<br \/>\n            &#8220;File&#8221;: [<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;user_id&#8221;, &#8220;ValueAsString&#8221;: &#8220;user-456&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;event_time&#8221;, &#8220;ValueAsString&#8221;: &#8220;2026-06-05T12:00:01Z&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;login_count&#8221;, &#8220;ValueAsString&#8221;: &#8220;18&#8221;},<br \/>\n            ],<br \/>\n            &#8220;TargetStores&#8221;: [&#8220;OnlineStore&#8221;, &#8220;OfflineStore&#8221;],<br \/>\n        },<br \/>\n    ]<br \/>\n)<\/p>\n<p>if response[&#8220;Errors&#8221;]:<br \/>\n    for error in response[&#8220;Errors&#8221;]:<br \/>\n        print(f&#8221;File {error[&#8216;Entry&#8217;]}, ErrorCode: {error[&#8216;ErrorCode&#8217;]} Failed: {error[&#8216;ErrorMessage&#8217;]}&#8221;)<\/p>\n<p>if response[&#8220;UnprocessedEntries&#8221;]:<br \/>\n    for unprocessed in response[&#8220;UnprocessedEntries&#8221;]:<br \/>\n        print(f&#8221;Unprocessed: {unprocessed[&#8216;FeatureGroupName&#8217;]}&#8221;)<\/p>\n<p>if not response[&#8220;Errors&#8221;] and never response[&#8220;UnprocessedEntries&#8221;]:<br \/>\n    print(&#8220;All information written efficiently.&#8221;)\n       <\/p><\/div>\n<h3 id=\"code-example-writing-across-multiple-feature-groups\">Code instance: Writing throughout a number of characteristic teams<\/h3>\n<p>You&#8217;ll be able to goal a number of characteristic teams in a single request. Information are grouped by characteristic group and processed independently:<\/p>\n<div class=\"hide-language\">\n        featurestore_runtime = boto3.consumer(&#8220;sagemaker-featurestore-runtime&#8221;)<\/p>\n<p>response = featurestore_runtime.batch_write_record(<br \/>\n    Entries=[<br \/>\n        {<br \/>\n            &#8220;FeatureGroupName&#8221;: &#8220;user-profile-features&#8221;,<br \/>\n            &#8220;Record&#8221;: [<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;user_id&#8221;, &#8220;ValueAsString&#8221;: &#8220;user-123&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;event_time&#8221;, &#8220;ValueAsString&#8221;: &#8220;2026-06-05T12:00:00Z&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;age&#8221;, &#8220;ValueAsString&#8221;: &#8220;34&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;region&#8221;, &#8220;ValueAsString&#8221;: &#8220;us-west-2&#8221;},<br \/>\n            ],<br \/>\n            &#8220;TargetStores&#8221;: [&#8220;OnlineStore&#8221;],<br \/>\n        },<br \/>\n        {<br \/>\n            &#8220;FeatureGroupName&#8221;: &#8220;click-features&#8221;,<br \/>\n            &#8220;File&#8221;: [<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;user_id&#8221;, &#8220;ValueAsString&#8221;: &#8220;user-123&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;event_time&#8221;, &#8220;ValueAsString&#8221;: &#8220;2026-06-05T12:00:00Z&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;click_count&#8221;, &#8220;ValueAsString&#8221;: &#8220;42&#8221;},<br \/>\n            ],<br \/>\n            &#8220;TargetStores&#8221;: [&#8220;OnlineStore&#8221;, &#8220;OfflineStore&#8221;],<br \/>\n        },<br \/>\n    ]<br \/>\n)\n       <\/p><\/div>\n<p>A failure in a single characteristic group doesn&#8217;t have an effect on information destined for different characteristic teams.<\/p>\n<h3 id=\"ttl-time-to-live-support\">TTL (Time-to-Stay) assist<\/h3>\n<p>BatchWriteRecord helps TTL at three ranges of priority, proven within the following precedence order:<\/p>\n<p>        File-level TTL \u2014 Set with TtlDuration on particular person entries. Takes highest precedence.<br \/>\n        Request-level TTL \u2014 A default TtlDuration on the high degree of the request, utilized to entries and not using a record-level TTL.<br \/>\n        Function-group-level TTL \u2014 The TTL configured on the characteristic group itself, utilized when neither record-level nor request-level TTL is ready.<\/p>\n<h3 id=\"key-considerations\">Key issues<\/h3>\n<p>Most 25 entries per request. This restrict applies to the overall variety of entries throughout all characteristic teams in a single request.<\/p>\n<p>Partial-success semantics: Not like transactional APIs, BatchWriteRecord doesn&#8217;t roll again profitable writes if some information fail. Design your retry logic to re-submit solely the information returned in Errors.<\/p>\n<p>Related IAM mannequin as PutRecord: The caller will need to have sagemaker:BatchWriteRecord and sagemaker:PutRecord permission on the Amazon Useful resource Identify (ARN) of every goal characteristic group. Per-feature-group authorization is checked earlier than processing.<\/p>\n<p>EventTime ordering is preserved: BatchWriteRecord makes use of conditional writes to take care of the identical latest-record-wins semantics as PutRecord. A stale file can not overwrite a more moderen one within the on-line retailer.<\/p>\n<p>TargetStores flexibility: Every entry can independently goal OnlineStore, OfflineStore, or each (defaults to the characteristic group\u2019s enabled shops), supplying you with fine-grained management over the place every file lands.<\/p>\n<h2 id=\"listrecords\">ListRecords<\/h2>\n<p>The ListRecords API closes the hole in file discovery for each storage tiers. The next sections clarify the issue it solves and the way it works.<\/p>\n<h3 id=\"the-challenge-with-record-discovery\">The problem with file discovery<\/h3>\n<p>Function Retailer helps PutRecord, GetRecord, and DeleteRecord, however all require the caller to know the precise file identifier. There isn&#8217;t a API to browse or enumerate information inside a characteristic group.<\/p>\n<p>For the Normal tier, the workaround is querying the offline retailer by utilizing Amazon Athena. This requires offline retailer configuration, provides value, and isn&#8217;t real-time.<\/p>\n<p>For the In-Reminiscence tier, the scenario is crucial. There isn&#8217;t a corresponding offline retailer by default. If file identifiers are misplaced, these information are utterly unrecoverable. You can not uncover them, and you can&#8217;t delete them. This results in phantom information, wasted storage prices, and potential compliance dangers when information topics request deletion.<\/p>\n<h3 id=\"how-listrecords-works\">How ListRecords works<\/h3>\n<p>ListRecords enumerates file identifiers inside a characteristic group utilizing pagination. It returns solely energetic, non-deleted, non-expired information which are prepared for use with GetRecord or DeleteRecord.<\/p>\n<p>The API works with each storage tiers:<\/p>\n<p>        Normal tier (Amazon DynamoDB): Scans the web retailer, returning identifier of the newest model of every file. Gentle-deleted and expired information are mechanically excluded.<br \/>\n        In-Reminiscence tier (Redis): Scans keys and filters out soft-deleted information and inside system keys. Returns file identifiers extracted from key names.<\/p>\n<h3 id=\"request-and-response-structure\">Request and response construction<\/h3>\n<div class=\"hide-language\">\n        POST \/FeatureGroup\/{FeatureGroupName}\/ListRecords\n       <\/div>\n<p>Request physique:<\/p>\n<p>Preliminary name<\/p>\n<p>Or<\/p>\n<div class=\"hide-language\">\n        {<br \/>\n    &#8220;MaxResults&#8221;: 50,<br \/>\n    &#8220;NextToken&#8221;: &#8220;eyJjdXJzb3IiOi4uLn0=&#8221;<br \/>\n}\n       <\/div>\n<p>Response:<\/p>\n<div class=\"hide-language\">\n        {<br \/>\n    &#8220;RecordIdentifiers&#8221;: [<br \/>\n        &#8220;user-001&#8221;,<br \/>\n        &#8220;user-002&#8221;,<br \/>\n        &#8220;user-003&#8221;<br \/>\n    ],<br \/>\n    &#8220;NextToken&#8221;: &#8220;eyJuZXh0IjoiLi4ufQ==&#8221;<br \/>\n}\n       <\/div>\n<p>When NextToken is absent within the response, pagination is full.<\/p>\n<h3 id=\"code-example-enumerate-all-records-in-a-feature-group\">Code instance: Enumerate all information in a characteristic group<\/h3>\n<div class=\"hide-language\">\n        import boto3<\/p>\n<p>featurestore_runtime = boto3.consumer(&#8220;sagemaker-featurestore-runtime&#8221;)<\/p>\n<p>all_identifiers = []<br \/>\nnext_token = None<\/p>\n<p>whereas True:<br \/>\n    params = {<br \/>\n        &#8220;FeatureGroupName&#8221;: &#8220;user-profile-features&#8221;,<br \/>\n        &#8220;MaxResults&#8221;: 100,<br \/>\n    }<br \/>\n    if next_token:<br \/>\n        params[&#8220;NextToken&#8221;] = next_token<\/p>\n<p>    response = featurestore_runtime.list_records(**params)<br \/>\n    all_identifiers.prolong(response[&#8220;RecordIdentifiers&#8221;])<\/p>\n<p>    next_token = response.get(&#8220;NextToken&#8221;)<br \/>\n    if not next_token:<br \/>\n        break<\/p>\n<p>print(f&#8221;Discovered {len(all_identifiers)} energetic information.&#8221;)\n       <\/p><\/div>\n<h3 id=\"code-example-clean-up-orphaned-records\">Code instance: Clear up orphaned information<\/h3>\n<p>A standard use case is figuring out and deleting information which are now not wanted. That is crucial for In-Reminiscence tier characteristic teams, the place orphaned information persist indefinitely:<\/p>\n<div class=\"hide-language\">\n        import boto3<\/p>\n<p>featurestore_runtime = boto3.consumer(&#8220;sagemaker-featurestore-runtime&#8221;)<\/p>\n<p># Step 1: Enumerate all file identifiers<br \/>\nall_ids = []<br \/>\nnext_token = None<br \/>\nwhereas True:<br \/>\n    params = {&#8220;FeatureGroupName&#8221;: &#8220;session-features&#8221;, &#8220;MaxResults&#8221;: 100}<br \/>\n    if next_token:<br \/>\n        params[&#8220;NextToken&#8221;] = next_token<br \/>\n    response = featurestore_runtime.list_records(**params)<br \/>\n    all_ids.prolong(response[&#8220;RecordIdentifiers&#8221;])<br \/>\n    next_token = response.get(&#8220;NextToken&#8221;)<br \/>\n    if not next_token:<br \/>\n        break<\/p>\n<p># Step 2: Examine towards your utility&#8217;s energetic session record<br \/>\nactive_sessions = get_active_sessions()  # Your utility logic<br \/>\norphaned = [rid for rid in all_ids if rid not in active_sessions]<\/p>\n<p># Step 3: Delete orphaned information<br \/>\nfor record_id in orphaned:<br \/>\n    featurestore_runtime.delete_record(<br \/>\n        FeatureGroupName=&#8221;session-features&#8221;,<br \/>\n        RecordIdentifierValueAsString=record_id,<br \/>\n        EventTime=&#8221;2026-06-05T12:00:00Z&#8221;,<br \/>\n    )<\/p>\n<p>print(f&#8221;Deleted {len(orphaned)} orphaned information.&#8221;)\n       <\/p><\/div>\n<p>        Web page measurement: Configurable by way of MaxResults (default 10, most 100).<br \/>\n        Token format: Opaque, encrypted string. Don&#8217;t parse or assemble tokens. Move them by way of unchanged.<br \/>\n        Ordering: Outcomes usually are not assured to be in any explicit order.<br \/>\n        Concurrent writes: If information are written or deleted throughout pagination, chances are you&#8217;ll observe duplicates or gaps. That is documented conduct.<br \/>\n        Token scope: Tokens are tied to a selected characteristic group and account and can&#8217;t be reused throughout both.<\/p>\n<h3 id=\"key-considerations-1\">Key issues<\/h3>\n<p>File identifiers solely. The present launch returns file identifiers with out characteristic values. Use GetRecord or BatchGetRecord to retrieve full information for the identifiers you want.<\/p>\n<p>Computerized filtering. The API excludes soft-deleted information, expired information (Normal tier TTL), and inside system keys (In-Reminiscence tier). You see solely energetic, retrievable information.<\/p>\n<p>IAM permission. The caller will need to have sagemaker:ListRecords permission on the characteristic group ARN.<\/p>\n<p>Each tiers supported. ListRecords works identically from the caller\u2019s perspective no matter whether or not the characteristic group makes use of Normal or In-Reminiscence storage.<\/p>\n<h2 id=\"putting-it-together\">Placing it collectively<\/h2>\n<p>These two APIs complement one another naturally. Think about a compliance workflow that verifies full information deletion for a consumer throughout a number of characteristic teams:<\/p>\n<div class=\"hide-language\">\n        import boto3<\/p>\n<p>featurestore_runtime = boto3.consumer(&#8220;sagemaker-featurestore-runtime&#8221;)<\/p>\n<p>feature_groups = [&#8220;user-profiles&#8221;, &#8220;click-history&#8221;, &#8220;purchase-signals&#8221;]<br \/>\nuser_to_delete = &#8220;user-789&#8221;<\/p>\n<p># Step 1: Discover and delete the consumer throughout all characteristic teams<br \/>\nfor fg_name in feature_groups:<br \/>\n    all_ids = []<br \/>\n    next_token = None<br \/>\n    whereas True:<br \/>\n        params = {&#8220;FeatureGroupName&#8221;: fg_name, &#8220;MaxResults&#8221;: 100}<br \/>\n        if next_token:<br \/>\n            params[&#8220;NextToken&#8221;] = next_token<br \/>\n        response = featurestore_runtime.list_records(**params)<br \/>\n        all_ids.prolong(response[&#8220;RecordIdentifiers&#8221;])<br \/>\n        next_token = response.get(&#8220;NextToken&#8221;)<br \/>\n        if not next_token:<br \/>\n            break<\/p>\n<p>    if user_to_delete in all_ids:<br \/>\n        featurestore_runtime.delete_record(<br \/>\n            FeatureGroupName=fg_name,<br \/>\n            RecordIdentifierValueAsString=user_to_delete,<br \/>\n            EventTime=&#8221;2026-06-05T23:59:59Z&#8221;,<br \/>\n        )<br \/>\n        print(f&#8221;Deleted &#8216;{user_to_delete}&#8217; from {fg_name}&#8221;)<\/p>\n<p># Step 2: Log the deletion occasion utilizing BatchWriteRecord<br \/>\nfeaturestore_runtime.batch_write_record(<br \/>\n    Entries=[<br \/>\n        {<br \/>\n            &#8220;FeatureGroupName&#8221;: &#8220;deletion-audit-log&#8221;,<br \/>\n            &#8220;Record&#8221;: [<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;request_id&#8221;, &#8220;ValueAsString&#8221;: &#8220;del-001&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;event_time&#8221;, &#8220;ValueAsString&#8221;: &#8220;2026-06-05T23:59:59Z&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;user_id&#8221;, &#8220;ValueAsString&#8221;: user_to_delete},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;status&#8221;, &#8220;ValueAsString&#8221;: &#8220;completed&#8221;},<br \/>\n                {&#8220;FeatureName&#8221;: &#8220;feature_groups_cleaned&#8221;, &#8220;ValueAsString&#8221;: &#8220;3&#8221;},<br \/>\n            ],<br \/>\n            &#8220;TargetStores&#8221;: [&#8220;OnlineStore&#8221;, &#8220;OfflineStore&#8221;],<br \/>\n        }<br \/>\n    ]<br \/>\n)\n       <\/p><\/div>\n<h2 id=\"cleanup\">Cleanup<\/h2>\n<p>To keep away from ongoing fees, delete characteristic teams you created whereas following this walkthrough. For In-Reminiscence tier characteristic teams, use ListRecords to enumerate information and DeleteRecord to take away them earlier than deleting the characteristic group.<\/p>\n<h2 id=\"conclusion\">Conclusion<\/h2>\n<p>BatchWriteRecord and ListRecords present key enhancements within the information airplane of Amazon SageMaker Function Retailer. BatchWriteRecord reduces the API name quantity for high-throughput ingestion by as much as 25x whereas preserving the EventTime-based ordering ensures that preserve your on-line retailer right. ListRecords unlocks file discovery and lifecycle administration. That is crucial for In-Reminiscence tier clients who beforehand had no method to enumerate or clear up their information.<\/p>\n<p>Collectively, these APIs assist patterns that had been beforehand troublesome or unimaginable: bulk ingestion pipelines with fewer connections and decrease latency, compliance workflows that may confirm full information deletion, and operational tooling that may browse characteristic group contents in actual time.<\/p>\n<p>For extra info, see the Function Retailer documentation, the Function Retailer API reference, the offline retailer configuration documentation, and the What\u2019s New announcement.<\/p>\n<p>For background on Function Retailer capabilities, discover these associated posts:<\/p>\n<h2>In regards to the authors<\/h2>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-1.jpg\" alt=\"Harshil Shah\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">Harshil Shah<\/h3>\n<p>Harshil is a Senior Options Architect at AWS with a deep ardour for modernizing buyer functions. He works with media and leisure clients to assist them construct and combine AI into their current tech stacks.<\/p>\n<\/p><\/div>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-2.jpg\" alt=\"Dhaval Shah\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">Dhaval Shah<\/h3>\n<p>Dhaval is a Senior Options Architect at AWS. He works with clients to design and construct manufacturing ML techniques, with a give attention to characteristic engineering, generative AI, and scalable information architectures.<\/p>\n<\/p><\/div>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-3.jpg\" alt=\"Chirag Pandey\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">Chirag Pandey<\/h3>\n<p>Chirag is a software program engineer at AWS concerned with constructing dependable and scalable infrastructure for AI\/ML workloads.<\/p>\n<\/p><\/div>\n<div class=\"blog-author-box\">\n<div class=\"blog-author-image\">\n<p><img decoding=\"async\" loading=\"lazy\" class=\"alignleft size-full\" src=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-4.jpg\" alt=\"Siamak Nariman\" width=\"100\" height=\"100\"\/><\/p>\n<\/p><\/div>\n<h3 class=\"lb-h4\">Siamak Nariman<\/h3>\n<p>Siamak is a Senior Product Supervisor at AWS. He&#8217;s centered on AI\/ML know-how, ML mannequin administration, and ML governance to enhance total organizational effectivity and productiveness. He has in depth expertise automating processes and deploying varied applied sciences.<\/p>\n<\/p><\/div><\/div>\n<p><br \/>\n<br \/><a href=\"https:\/\/aws.amazon.com\/blogs\/machine-learning\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/\">Source link <\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Amazon SageMaker Function Retailer is a totally managed, purpose-built repository to retailer, share, and handle options for machine studying (ML) fashions. It supplies low-latency on-line serving for real-time inference, an offline retailer for historic retention and coaching characteristic information, and helps each streaming and batch ingestion patterns. As ML platforms mature, two operational gaps floor [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":4399,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"fifu_image_url":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-featured-image.png","fifu_image_alt":"","jnews-multi-image_gallery":[],"jnews_single_post":[],"jnews_primary_category":[],"jnews_override_bookmark_settings":[],"jnews_social_meta":[],"jnews_override_counter":[],"footnotes":""},"categories":[7],"tags":[83,4597,4598,1248,2530,84,4332,521],"class_list":["post-4397","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-data-science-mlops","tag-amazon","tag-batch","tag-discover","tag-feature","tag-records","tag-sagemaker","tag-store","tag-write"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.7 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Batch write and uncover information in Amazon SageMaker Function Retailer - Future News 24<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Batch write and uncover information in Amazon SageMaker Function Retailer - Future News 24\" \/>\n<meta property=\"og:description\" content=\"Amazon SageMaker Function Retailer is a totally managed, purpose-built repository to retailer, share, and handle options for machine studying (ML) fashions. It supplies low-latency on-line serving for real-time inference, an offline retailer for historic retention and coaching characteristic information, and helps each streaming and batch ingestion patterns. As ML platforms mature, two operational gaps floor [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/\" \/>\n<meta property=\"og:site_name\" content=\"Future News 24\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-28T19:31:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-08-29T11:59:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-featured-image.png\" \/><meta property=\"og:image\" content=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-featured-image.png\" \/>\n<meta name=\"author\" content=\"Future News 24\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-featured-image.png\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Future News 24\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"11 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/\"},\"author\":{\"name\":\"Future News 24\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/person\\\/cecad1bde21cfc357cf70128144d6c83\"},\"headline\":\"Batch write and uncover information in Amazon SageMaker Function Retailer\",\"datePublished\":\"2026-08-28T19:31:00+00:00\",\"dateModified\":\"2026-08-29T11:59:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/\"},\"wordCount\":2276,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/d2908q01vomqb2.cloudfront.net\\\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\\\/2026\\\/08\\\/27\\\/ML-21718-featured-image.png\",\"keywords\":[\"Amazon\",\"Batch\",\"discover\",\"Feature\",\"Records\",\"SageMaker\",\"store\",\"Write\"],\"articleSection\":[\"Data Science &amp; MLOps\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/\",\"name\":\"Batch write and uncover information in Amazon SageMaker Function Retailer - Future News 24\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/d2908q01vomqb2.cloudfront.net\\\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\\\/2026\\\/08\\\/27\\\/ML-21718-featured-image.png\",\"datePublished\":\"2026-08-28T19:31:00+00:00\",\"dateModified\":\"2026-08-29T11:59:07+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/#primaryimage\",\"url\":\"https:\\\/\\\/d2908q01vomqb2.cloudfront.net\\\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\\\/2026\\\/08\\\/27\\\/ML-21718-featured-image.png\",\"contentUrl\":\"https:\\\/\\\/d2908q01vomqb2.cloudfront.net\\\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\\\/2026\\\/08\\\/27\\\/ML-21718-featured-image.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/2026\\\/08\\\/28\\\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/futurenews24.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Batch write and uncover information in Amazon SageMaker Function Retailer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#website\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/\",\"name\":\"Future News 24\",\"description\":\"The Smart Hub for AI and Next-Gen Innovation\",\"publisher\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/futurenews24.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#organization\",\"name\":\"Future News 24\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/futurenews24.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fn24-favicon.png\",\"contentUrl\":\"https:\\\/\\\/futurenews24.com\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/fn24-favicon.png\",\"width\":250,\"height\":250,\"caption\":\"Future News 24\"},\"image\":{\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/futurenews24.com\\\/#\\\/schema\\\/person\\\/cecad1bde21cfc357cf70128144d6c83\",\"name\":\"Future News 24\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g\",\"caption\":\"Future News 24\"},\"sameAs\":[\"https:\\\/\\\/futurenews24.com\"],\"url\":\"https:\\\/\\\/futurenews24.com\\\/index.php\\\/author\\\/mridulpahuja20\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Batch write and uncover information in Amazon SageMaker Function Retailer - Future News 24","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/","og_locale":"en_US","og_type":"article","og_title":"Batch write and uncover information in Amazon SageMaker Function Retailer - Future News 24","og_description":"Amazon SageMaker Function Retailer is a totally managed, purpose-built repository to retailer, share, and handle options for machine studying (ML) fashions. It supplies low-latency on-line serving for real-time inference, an offline retailer for historic retention and coaching characteristic information, and helps each streaming and batch ingestion patterns. As ML platforms mature, two operational gaps floor [&hellip;]","og_url":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/","og_site_name":"Future News 24","article_published_time":"2026-08-28T19:31:00+00:00","article_modified_time":"2026-08-29T11:59:07+00:00","og_image":[{"url":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-featured-image.png","type":"","width":"","height":""},{"url":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-featured-image.png","type":"","width":"","height":""}],"author":"Future News 24","twitter_card":"summary_large_image","twitter_image":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-featured-image.png","twitter_misc":{"Written by":"Future News 24","Est. reading time":"11 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/#article","isPartOf":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/"},"author":{"name":"Future News 24","@id":"https:\/\/futurenews24.com\/#\/schema\/person\/cecad1bde21cfc357cf70128144d6c83"},"headline":"Batch write and uncover information in Amazon SageMaker Function Retailer","datePublished":"2026-08-28T19:31:00+00:00","dateModified":"2026-08-29T11:59:07+00:00","mainEntityOfPage":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/"},"wordCount":2276,"commentCount":0,"publisher":{"@id":"https:\/\/futurenews24.com\/#organization"},"image":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/#primaryimage"},"thumbnailUrl":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-featured-image.png","keywords":["Amazon","Batch","discover","Feature","Records","SageMaker","store","Write"],"articleSection":["Data Science &amp; MLOps"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/","url":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/","name":"Batch write and uncover information in Amazon SageMaker Function Retailer - Future News 24","isPartOf":{"@id":"https:\/\/futurenews24.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/#primaryimage"},"image":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/#primaryimage"},"thumbnailUrl":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-featured-image.png","datePublished":"2026-08-28T19:31:00+00:00","dateModified":"2026-08-29T11:59:07+00:00","breadcrumb":{"@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/#primaryimage","url":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-featured-image.png","contentUrl":"https:\/\/d2908q01vomqb2.cloudfront.net\/f1f836cb4ea6efb2a0b1b99f41ad8b103eff4b59\/2026\/08\/27\/ML-21718-featured-image.png"},{"@type":"BreadcrumbList","@id":"https:\/\/futurenews24.com\/index.php\/2026\/08\/28\/batch-write-and-discover-records-in-amazon-sagemaker-feature-store\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/futurenews24.com\/"},{"@type":"ListItem","position":2,"name":"Batch write and uncover information in Amazon SageMaker Function Retailer"}]},{"@type":"WebSite","@id":"https:\/\/futurenews24.com\/#website","url":"https:\/\/futurenews24.com\/","name":"Future News 24","description":"The Smart Hub for AI and Next-Gen Innovation","publisher":{"@id":"https:\/\/futurenews24.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/futurenews24.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/futurenews24.com\/#organization","name":"Future News 24","url":"https:\/\/futurenews24.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/futurenews24.com\/#\/schema\/logo\/image\/","url":"https:\/\/futurenews24.com\/wp-content\/uploads\/2026\/06\/fn24-favicon.png","contentUrl":"https:\/\/futurenews24.com\/wp-content\/uploads\/2026\/06\/fn24-favicon.png","width":250,"height":250,"caption":"Future News 24"},"image":{"@id":"https:\/\/futurenews24.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/futurenews24.com\/#\/schema\/person\/cecad1bde21cfc357cf70128144d6c83","name":"Future News 24","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d57f07142d73cb5503ab2446ea7bc9ef3d0a5ba378d64a6157692311e42bf097?s=96&d=mm&r=g","caption":"Future News 24"},"sameAs":["https:\/\/futurenews24.com"],"url":"https:\/\/futurenews24.com\/index.php\/author\/mridulpahuja20\/"}]}},"_links":{"self":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/4397","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/comments?post=4397"}],"version-history":[{"count":1,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/4397\/revisions"}],"predecessor-version":[{"id":4398,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/posts\/4397\/revisions\/4398"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/media\/4399"}],"wp:attachment":[{"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/media?parent=4397"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/categories?post=4397"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/futurenews24.com\/index.php\/wp-json\/wp\/v2\/tags?post=4397"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}