Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix data #3

Merged
merged 16 commits into from
Apr 8, 2024
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -158,3 +158,5 @@ cython_debug/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/

service-account.json
16 changes: 13 additions & 3 deletions config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,24 @@ gateways:
connection:
type: duckdb
database: db.db

bigquery:
connection:
concurrent_tasks: 24
register_comments: true
type: bigquery
method: service-account
keyfile: service-account.json
project: sqlmesh-demo
state_connection:
type: postgres
host: {{ env_var('SQLMESH_STATE_HOST') }}
port: 5432
user: {{ env_var('SQLMESH_STATE_USERNAME') }}
password: {{ env_var('SQLMESH_STATE_PASSWORD') }}
database: sqlmesh_state
default_gateway: local
database: sqlmesh_state_demo

default_gateway: bigquery

model_defaults:
dialect: duckdb
dialect: bigquery
Binary file modified db.db
Binary file not shown.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sqlmesh[web,postgres,github]==0.82.3
sqlmesh[web,postgres,github,bigquery]==0.84.0
Loading