Skip to content

Commit

Permalink
chore: bigquery faster getmodel (#1770)
Browse files Browse the repository at this point in the history
* chore: increase by factor 10 page_size and max_results

* chore: update CHANGELOG.md
  • Loading branch information
fspot authored Sep 13, 2024
1 parent 8a418b0 commit 4da4b72
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

- jinja templates :: expressions containing parentheses or curly braces are not limited to output
strings anymore.
- Google BigQuery :: increase limits when fetching db tree structure

## [7.0.1] 2024-09-10

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ def __init__(self, jwt_token: str) -> None:
CONNECTOR_OK = False


_PAGE_SIZE = 50
_MAXIMUM_RESULTS_FETCHED = 2000
_PAGE_SIZE = 500
_MAXIMUM_RESULTS_FETCHED = 20_000
_GBQ_TIMEOUT_HTTP_REQUEST = 30 # in seconds


Expand Down

0 comments on commit 4da4b72

Please sign in to comment.