We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 177448b commit 40323d8Copy full SHA for 40323d8
bigframes/session/__init__.py
@@ -976,8 +976,7 @@ def read_pandas(
976
quota and your data cannot be embedded in SQL due to size or
977
data type limitations.
978
* "bigquery_write":
979
- [Preview] Use the BigQuery Storage Write API. This feature
980
- is in public preview.
+ Use the BigQuery Storage Write API.
981
Returns:
982
An equivalent bigframes.pandas.(DataFrame/Series/Index) object
983
@@ -1026,7 +1025,7 @@ def _read_pandas(
1026
1025
mem_usage = pandas_dataframe.memory_usage(deep=True).sum()
1027
if write_engine == "default":
1028
write_engine = (
1029
- "bigquery_load"
+ "bigquery_write"
1030
if mem_usage > bigframes.constants.MAX_INLINE_BYTES
1031
else "bigquery_inline"
1032
)
0 commit comments