Skip to content

feat: add streaming.StreamingDataFrame class #864

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Jul 31, 2024
Merged
Prev Previous commit
add back preview warning
  • Loading branch information
GarrettWu committed Jul 30, 2024
commit 0ab506ba6c00ed1d75915e4aa6ae12ad8556e2dc
6 changes: 6 additions & 0 deletions bigframes/session/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -765,6 +765,12 @@ def read_gbq_table_streaming(

>>> sdf = bst.read_gbq_table("bigquery-public-data.ml_datasets.penguins")
"""
warnings.warn(
"The bigframes.streaming module is a preview feature, and subject to change.",
stacklevel=1,
category=bigframes.exceptions.PreviewWarning,
)

import bigframes.streaming.dataframe as streaming_dataframe

df = self._read_gbq_table(
Expand Down