This repository has been archived by the owner on Nov 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(bigquery): Add config option for specifying datasets to fetch (#37)
* Add config option for specifying datasets to fetch * Use Filter from the sdk --------- Co-authored-by: Mateusz Kulas <[email protected]>
- Loading branch information
Showing
4 changed files
with
27 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
default_pulling_interval: 10 | ||
token: "B28sfRmkntxf6YJdIwvN6urB7i7riiMbeEjJCGYY" | ||
platform_host_url: "http://localhost:8080" | ||
plugins: | ||
- type: bigquery_storage | ||
name: bigquery_storage_adapter | ||
project: project_name | ||
datasets_filter: # Optional, if not provided all datasets from the project will be fetched | ||
include: [ patterns_to_include ] # Dataset name patterns to include | ||
exclude: [ patterns_to_exclude ] # Dataset name patterns to exclude |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters