Skip to content

Commit 5658c55

Browse files
authored
Merge pull request #1 from eclbg/fix-mv-columns-mismatch
Remove unused request duration columns
2 parents 8d64860 + 0fddf89 commit 5658c55

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/tinybird-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
steps:
2525
- uses: actions/checkout@v3
2626
- name: Install Tinybird CLI
27-
run: curl -LsSf https://api.tinybird.co/static/install.sh | sh
27+
run: curl https://tinybird.co | sh
2828
- name: Build project
2929
run: tb build
3030
- name: Test project
31-
run: tb test run
31+
run: tb test run

tinybird/datasources/logs_daily_timeseries.datasource

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ SCHEMA >
55
`date` DateTime,
66
`error_count` AggregateFunction(count, UInt64),
77
`total_requests` AggregateFunction(count, UInt64),
8-
`response_time_avg` AggregateFunction(avg, Float64),
9-
`response_time_max` AggregateFunction(max, Float64),
108
`service` LowCardinality(String),
119
`level` LowCardinality(String),
1210
`environment` LowCardinality(String),
@@ -24,4 +22,4 @@ SCHEMA >
2422
ENGINE "AggregatingMergeTree"
2523
ENGINE_PARTITION_KEY "toYYYYMM(date)"
2624
ENGINE_SORTING_KEY "date, service, environment, level, request_method, status_code, host, request_path, path, resource, request_type, vercel_cache, branch, deployment_id"
27-
ENGINE_PRIMARY_KEY "date, service, environment, level"
25+
ENGINE_PRIMARY_KEY "date, service, environment, level"

0 commit comments

Comments
 (0)