Skip to content

Commit 40323d8

Browse files
use write api as default for all uploads
1 parent 177448b commit 40323d8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

bigframes/session/__init__.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -976,8 +976,7 @@ def read_pandas(
976976
quota and your data cannot be embedded in SQL due to size or
977977
data type limitations.
978978
* "bigquery_write":
979-
[Preview] Use the BigQuery Storage Write API. This feature
980-
is in public preview.
979+
Use the BigQuery Storage Write API.
981980
Returns:
982981
An equivalent bigframes.pandas.(DataFrame/Series/Index) object
983982
@@ -1026,7 +1025,7 @@ def _read_pandas(
10261025
mem_usage = pandas_dataframe.memory_usage(deep=True).sum()
10271026
if write_engine == "default":
10281027
write_engine = (
1029-
"bigquery_load"
1028+
"bigquery_write"
10301029
if mem_usage > bigframes.constants.MAX_INLINE_BYTES
10311030
else "bigquery_inline"
10321031
)

0 commit comments

Comments
 (0)