sagemaker online and offline store question

1

I looked at SM feature store documentation and see a flag named is_online_Enable for ingestion. My queries are -

  1. If i make it false, will it only store the data in offline store ?
  2. If I make it true will it store data both in online and offline store? if yes , both the store will have same data right?
  3. Is there any way to store my data only in online or only in offline store ? if yes, what will be the configuration?

Also is there any scenario while ingesting data there is some syn happens between online and offline store or vice versa. I see documentation mentioning it will be available after some minutes and for our use case we want to know is there any sync happens( is there any scenario where data goes to online store first and then sync up with offline store or vice versa and some latency associated with the later store)?

asked 2 years ago1227 views
1 Answer
0

SageMaker Feature Store allows feature groups that are online-only, offline-only, or both online and offline. When your feature group supports both, any features ingested to the online store, are also replicated to the offline store in append-only fashion, enabling a full history for training, batch scoring, row-level time travel, etc.. Yes, you set EnableOnlineStore to True to indicate your feature group should have online enabled. You provide an OfflineStoreConfig to indicate that it should have an offline store as well.

This blog post provides an overview of the capabilities and concepts.

AWS
MarkRoy
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions