6 files changed +40
-2
lines changed Original file line number Diff line number Diff line change @@ -760,7 +760,9 @@ def read_gbq_table_streaming(
760
760
) -> streaming_dataframe .StreamingDataFrame :
761
761
"""Turn a BigQuery table into a StreamingDataFrame.
762
762
763
- Note: The bigframes.streaming module is a preview feature, and subject to change.
763
+ .. note::
764
+
765
+ The bigframes.streaming module is a preview feature, and subject to change.
764
766
765
767
**Examples:**
766
768
Original file line number Diff line number Diff line change @@ -191,7 +191,16 @@ def to_pubsub(
191
191
192
192
@log_adapter .class_logger
193
193
class StreamingDataFrame (StreamingBase ):
194
- __doc__ = _curate_df_doc (dataframe .DataFrame .__doc__ )
194
+ __doc__ = (
195
+ _curate_df_doc (dataframe .DataFrame .__doc__ )
196
+ + """
197
+ .. note::
198
+
199
+ The bigframes.streaming module is a preview feature, and subject to change.
200
+
201
+ Currently only supports basic projection, filtering and preview operations.
202
+ """
203
+ )
195
204
196
205
# Private constructor
197
206
_create_key = object ()
Original file line number Diff line number Diff line change
1
+ bigframes.streaming.dataframe
2
+ =============================
3
+
4
+ .. autoclass :: bigframes.streaming.dataframe.StreamingDataFrame
5
+ :members:
6
+ :inherited-members:
Original file line number Diff line number Diff line change
1
+
2
+ ============================
3
+ BigQuery DataFrame Streaming
4
+ ============================
5
+
6
+ .. automodule :: bigframes.streaming
7
+ :members:
8
+ :undoc-members:
9
+
10
+ .. toctree ::
11
+ :maxdepth: 2
12
+
13
+ dataframe
Original file line number Diff line number Diff line change @@ -11,3 +11,4 @@ packages.
11
11
bigframes.pandas/index
12
12
bigframes.ml/index
13
13
bigframes.bigquery/index
14
+ bigframes.streaming/index
Original file line number Diff line number Diff line change 203
203
- name : BigQuery built-in functions
204
204
uid : bigframes.bigquery
205
205
name : bigframes.bigquery
206
+ - items :
207
+ - name : Overview
208
+ uid : bigframes.streaming
209
+ - name : StreamingDataFrame
210
+ uid : bigframes.streaming.dataframe.StreamingDataFrame
211
+ name : bigframes.streaming
212
+ status : beta
206
213
name : BigQuery DataFrames
0 commit comments