You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Complete Mode involves rewriting the full output for each batch interval. It provides the complete result set for the computation performed on that batch interval. This mode is suitable when requiring a comprehensive, updated result set for every batch interval, regardless of whether it's a complete rewrite of the entire output.
85
+
86
+
.. code-block:: python3
87
+
88
+
from ads.feature_store.feature_group_job import StreamingIngestionMode
89
+
from ads.feature_store.feature_group import FeatureGroup
Update Mode is specifically designed to capture only the changed records in the output. It outputs the rows that have been updated since the last batch, maintaining intermediate state and providing insights into the delta or changes between different batches. This mode is ideal for scenarios involving aggregations or incremental updates to the output data.
98
+
99
+
.. code-block:: python3
100
+
101
+
from ads.feature_store.feature_group_job import StreamingIngestionMode
102
+
from ads.feature_store.feature_group import FeatureGroup
Append Mode appends newly generated results from each micro-batch to the output sink. It works when the computation produces only new records and does not modify or update existing data in the output. This mode suits scenarios where the result set continuously grows, with each batch contributing new records without altering existing ones.
111
+
112
+
.. code-block:: python3
113
+
114
+
from ads.feature_store.feature_group_job import StreamingIngestionMode
115
+
from ads.feature_store.feature_group import FeatureGroup
Copy file name to clipboardExpand all lines: ads/feature_store/docs/source/notebook.rst
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,8 @@
4
4
Notebook Examples
5
5
*****************
6
6
7
+
Below is a compilation of tutorials focused on understanding and utilizing Feature Stores. You can find the raw notebook files in our `tutorials repository <https://github.com/oracle-samples/oci-data-science-ai-samples/blob/main/feature_store/tutorials/README.md>`_.
0 commit comments