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
<pstyle="margin-top: 0; font-weight: bold;">⚠️ Breaking Changes in BigQuery DataFrames v2.0</p>
20
+
<p>Version 2.0 introduces breaking changes for improved security and performance. Key default behaviors have changed:</p>
21
+
<ul>
22
+
<li><strong>Large Results (>10GB):</strong> The default value for <code>allow_large_results</code> has changed to False. Methods like <code>to_pandas()</code> will now fail if the query result's compressed data size exceeds 10GB, unless large results are explicitly permitted.</li>
23
+
<li><strong>Remote Function Security:</strong>The library no longer automatically lets the Compute Engine default service account become the identity of the Cloud Run functions. If that is desired, it has to be indicated by passing cloud_function_service_account="default". And network ingress now defaults to "internal-only".</li>
24
+
<li><strong>@remote_function Argument Passing:</strong> Arguments other than input_types, output_type, and dataset to remote_function must now be passed using keyword syntax, as positional arguments are no longer supported.</li>
25
+
<li><strong>Endpoint Connections:</strong> Automatic fallback to locational endpoints in certain regions is removed. </li>
26
+
<li><strong>LLM Changes (Shift to Gemini):</strong> Integrations now default to <code>gemini-2.0-flash-001</code>. Support for PaLM2 models has been removed; migrate any PaLM2 usage to Gemini.</li>
27
+
</ul>
28
+
<p><strong>Important:</strong> If you are not ready to adapt to these changes, please pin your dependency to a version less than 2.0 (e.g., <code>bigframes==1.42.0</code>) to avoid disruption.</p>
29
+
<pstyle="margin-bottom: 0;"> To learn about these changes and how to migrate to version 2.0, see: <ahref="https://cloud.google.com/bigquery/docs/bigquery-dataframes-introduction"style="color: #842029; text-decoration: underline;">updated introduction guide</a>.</p>
0 commit comments