Skip to content

Commit c75220d

Browse files
authored
CI for Tinybird schemas (#2965)
1 parent eac0f6d commit c75220d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1210
-1104
lines changed

.github/workflows/tinybird-ci.yml

+224
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,224 @@
1+
name: Tinybird CI
2+
3+
on:
4+
pull_request:
5+
paths:
6+
- 'services/libs/tinybird/**'
7+
workflow_dispatch:
8+
9+
env:
10+
DATA_PROJECT_DIR: services/libs/tinybird
11+
GIT_DEPTH: 300
12+
USE_LAST_PARTITION: true
13+
14+
jobs:
15+
check:
16+
name: Datafiles checks
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout code
20+
uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 0
23+
24+
- name: Install Tinybird CLI
25+
run: |
26+
if [ -f "${{ env.DATA_PROJECT_DIR }}/requirements.txt" ]; then
27+
pip install -r ${{ env.DATA_PROJECT_DIR }}/requirements.txt
28+
else
29+
pip install tinybird-cli
30+
fi
31+
32+
- name: Get changed files
33+
id: files
34+
uses: tj-actions/changed-files@v42
35+
with:
36+
files: |
37+
**/*.{datasource,incl,pipe}
38+
39+
- name: Check formatting
40+
if: ${{ steps.files.outputs.any_changed == 'true' }}
41+
shell: bash
42+
run: |
43+
for file in ${{ steps.files.outputs.all_changed_files }}; do
44+
tb fmt --diff "$file"
45+
done
46+
47+
deploy:
48+
name: Deploy to CI Branch
49+
runs-on: ubuntu-latest
50+
defaults:
51+
run:
52+
working-directory: ${{ env.DATA_PROJECT_DIR }}
53+
steps:
54+
- uses: actions/checkout@v4
55+
with:
56+
fetch-depth: ${{ env.GIT_DEPTH }}
57+
ref: ${{ github.event.pull_request.head.sha }}
58+
59+
- uses: actions/setup-python@v5
60+
with:
61+
python-version: "3.11"
62+
architecture: "x64"
63+
cache: pip
64+
65+
- name: Set environment variables
66+
run: |
67+
_ENV_FLAGS="${{ env.USE_LAST_PARTITION == 'true' && '--last-partition ' || '' }}--wait"
68+
_NORMALIZED_BRANCH_NAME=$(echo $DATA_PROJECT_DIR | rev | cut -d "/" -f 1 | rev | tr '.-' '_')
69+
GIT_BRANCH=${GITHUB_HEAD_REF}
70+
echo "GIT_BRANCH=$GIT_BRANCH" >> $GITHUB_ENV
71+
echo "_ENV_FLAGS=$_ENV_FLAGS" >> $GITHUB_ENV
72+
echo "_NORMALIZED_BRANCH_NAME=$_NORMALIZED_BRANCH_NAME" >> $GITHUB_ENV
73+
if [ -f .tinyenv ]; then grep -v '^#' .tinyenv >> $GITHUB_ENV; fi
74+
echo >> $GITHUB_ENV
75+
76+
- name: Install Tinybird CLI
77+
run: |
78+
if [ -f "requirements.txt" ]; then
79+
pip install -r requirements.txt
80+
else
81+
pip install tinybird-cli
82+
fi
83+
84+
- name: Tinybird version
85+
run: tb --version
86+
87+
- name: Check all the data files syntax
88+
run: tb check
89+
90+
- name: Check auth
91+
run: tb --host ${{ secrets.TB_HOST }} --token ${{ secrets.TB_ADMIN_TOKEN }} auth info
92+
93+
- name: Try delete previous Branch
94+
run: |
95+
output=$(tb --host ${{ secrets.TB_HOST }} --token ${{ secrets.TB_ADMIN_TOKEN }} branch ls)
96+
BRANCH_NAME="tmp_ci_${_NORMALIZED_BRANCH_NAME}_${{ github.event.pull_request.number }}"
97+
if echo "$output" | grep -q "\b$BRANCH_NAME\b"; then
98+
tb --host ${{ secrets.TB_HOST }} --token ${{ secrets.TB_ADMIN_TOKEN }} branch rm $BRANCH_NAME --yes
99+
else
100+
echo "Skipping clean up: The Branch '$BRANCH_NAME' does not exist."
101+
fi
102+
103+
- name: Create new test Branch
104+
run: |
105+
tb \
106+
--host ${{ secrets.TB_HOST }} \
107+
--token ${{ secrets.TB_ADMIN_TOKEN }} \
108+
branch create tmp_ci_${_NORMALIZED_BRANCH_NAME}_${{ github.event.pull_request.number }} \
109+
${_ENV_FLAGS}
110+
111+
- name: Deploy changes to the test Branch
112+
run: |
113+
source .tinyenv || true
114+
DEPLOY_FILE=./deploy/${VERSION}/deploy.sh
115+
if [ ! -f "$DEPLOY_FILE" ]; then
116+
echo "$DEPLOY_FILE not found, running default tb deploy command"
117+
tb deploy ${CI_FLAGS}
118+
tb release ls
119+
fi
120+
121+
- name: Custom deployment to the test Branch
122+
run: |
123+
source .tinyenv || true
124+
DEPLOY_FILE=./deploy/${VERSION}/deploy.sh
125+
if [ -f "$DEPLOY_FILE" ]; then
126+
echo "$DEPLOY_FILE found"
127+
if ! [ -x "$DEPLOY_FILE" ]; then
128+
echo "Error: You do not have permission to execute '$DEPLOY_FILE'. Run:"
129+
echo "> chmod +x $DEPLOY_FILE"
130+
echo "and commit your changes"
131+
exit 1
132+
else
133+
$DEPLOY_FILE
134+
fi
135+
fi
136+
137+
test:
138+
name: Run tests
139+
runs-on: ubuntu-latest
140+
needs:
141+
- deploy
142+
defaults:
143+
run:
144+
working-directory: ${{ env.DATA_PROJECT_DIR }}
145+
steps:
146+
- uses: actions/checkout@v4
147+
with:
148+
fetch-depth: 0
149+
ref: ${{ github.event.pull_request.head.sha }}
150+
151+
- uses: actions/setup-python@v5
152+
with:
153+
python-version: "3.11"
154+
architecture: "x64"
155+
cache: pip
156+
157+
- name: Set environment variables
158+
run: |
159+
_ENV_FLAGS="--last-partition --wait"
160+
_NORMALIZED_BRANCH_NAME=$(echo $DATA_PROJECT_DIR | rev | cut -d "/" -f 1 | rev | tr '.-' '_')
161+
GIT_BRANCH=${GITHUB_HEAD_REF}
162+
echo "GIT_BRANCH=$GIT_BRANCH" >> $GITHUB_ENV
163+
echo "_ENV_FLAGS=$_ENV_FLAGS" >> $GITHUB_ENV
164+
echo "_NORMALIZED_BRANCH_NAME=$_NORMALIZED_BRANCH_NAME" >> $GITHUB_ENV
165+
if [ -f .tinyenv ]; then grep -v '^#' .tinyenv >> $GITHUB_ENV; fi
166+
echo >> $GITHUB_ENV
167+
168+
- name: Install Tinybird CLI
169+
run: |
170+
if [ -f "requirements.txt" ]; then
171+
pip install -r requirements.txt
172+
else
173+
pip install tinybird-cli
174+
fi
175+
176+
- name: Tinybird version
177+
run: tb --version
178+
179+
- name: Check auth
180+
run: tb --host ${{ secrets.TB_HOST }} --token ${{ secrets.TB_ADMIN_TOKEN }} auth info
181+
182+
- name: Use Branch
183+
run: |
184+
BRANCH_NAME="tmp_ci_${_NORMALIZED_BRANCH_NAME}_${{ github.event.pull_request.number }}"
185+
tb --host ${{ secrets.TB_HOST }} --token ${{ secrets.TB_ADMIN_TOKEN }} branch use $BRANCH_NAME
186+
187+
- name: Post deploy
188+
run: |
189+
POSTDEPLOY_FILE=./deploy/${VERSION}/postdeploy.sh
190+
if [ -f "$POSTDEPLOY_FILE" ]; then
191+
if ! [ -x "$POSTDEPLOY_FILE" ]; then
192+
echo "Error: You do not have permission to execute '$POSTDEPLOY_FILE'. Run:"
193+
echo "> chmod +x $POSTDEPLOY_FILE"
194+
echo "and commit your changes"
195+
exit 1
196+
else
197+
$POSTDEPLOY_FILE
198+
fi
199+
fi
200+
201+
- name: Get regression labels
202+
id: regression_labels
203+
uses: alrocar/[email protected]
204+
with:
205+
github_token: ${{ secrets.GITHUB_TOKEN }}
206+
label_key: regression
207+
208+
- name: Run pipe regression tests
209+
run: |
210+
source .tinyenv || true
211+
echo ${{ steps.regression_labels.outputs.labels }}
212+
REGRESSION_LABELS=$(echo "${{ steps.regression_labels.outputs.labels }}" | awk -F, '{for (i=1; i<=NF; i++) if ($i ~ /^--/) print $i}' ORS=',' | sed 's/,$//')
213+
echo "Regression labels: ${REGRESSION_LABELS}"
214+
215+
CONFIG_FILE=./tests/regression.yaml
216+
BASE_CMD="tb branch regression-tests"
217+
LABELS_CMD="$(echo ${REGRESSION_LABELS} | tr , ' ')"
218+
if [ -f ${CONFIG_FILE} ]; then
219+
echo "Config file '${CONFIG_FILE}' found, adding pull request labels as options"
220+
${BASE_CMD} -f ${CONFIG_FILE} --wait ${LABELS_CMD}
221+
else
222+
echo "Config file not found at '${CONFIG_FILE}', running with default values"
223+
${BASE_CMD} coverage --wait ${LABELS_CMD}
224+
fi

services/libs/tinybird/datasources/activities.datasource

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
SCHEMA >
32
`id` String `json:$.id`,
43
`type` LowCardinality(String) `json:$.type`,
@@ -28,7 +27,7 @@ SCHEMA >
2827
`gitDeletions` Int32 `json:$.gitDeletions` DEFAULT 0,
2928
`gitIsMerge` UInt8 `json:$.gitIsMerge` DEFAULT 0
3029

31-
ENGINE "ReplacingMergeTree"
32-
ENGINE_PARTITION_KEY "toYear(createdAt)"
33-
ENGINE_SORTING_KEY "isContribution, platform, type, channel, sourceId, timestamp"
34-
ENGINE_VER "updatedAt"
30+
ENGINE ReplacingMergeTree
31+
ENGINE_PARTITION_KEY toYear(createdAt)
32+
ENGINE_SORTING_KEY isContribution, platform, type, channel, sourceId, timestamp
33+
ENGINE_VER updatedAt

services/libs/tinybird/datasources/activities_sorted.datasource

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
SCHEMA >
32
`id` String,
43
`type` LowCardinality(String),
@@ -28,6 +27,6 @@ SCHEMA >
2827
`gitDeletions` Int32,
2928
`gitIsMerge` UInt8
3029

31-
ENGINE "MergeTree"
32-
ENGINE_PARTITION_KEY "toYear(timestamp)"
33-
ENGINE_SORTING_KEY "timestamp, channel, platform, type, isContribution"
30+
ENGINE MergeTree
31+
ENGINE_PARTITION_KEY toYear(timestamp)
32+
ENGINE_SORTING_KEY timestamp, channel, platform, type, isContribution

services/libs/tinybird/datasources/activities_with_relations_sorted_ds.datasource

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
SCHEMA >
32
`id` String,
43
`timestamp` DateTime,
@@ -11,6 +10,6 @@ SCHEMA >
1110
`organizationId` String,
1211
`segmentId` String
1312

14-
ENGINE "MergeTree"
15-
ENGINE_PARTITION_KEY "toYear(timestamp)"
16-
ENGINE_SORTING_KEY "segmentId, timestamp, type, platform, memberId, organizationId"
13+
ENGINE MergeTree
14+
ENGINE_PARTITION_KEY toYear(timestamp)
15+
ENGINE_SORTING_KEY segmentId, timestamp, type, platform, memberId, organizationId

services/libs/tinybird/datasources/activityRelations.datasource

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
SCHEMA >
32
`activityId` String `json:$.record.activityId`,
43
`conversationId` String `json:$.record.conversationId` DEFAULT '',
@@ -13,7 +12,7 @@ SCHEMA >
1312
`segmentId` String `json:$.record.segmentId`,
1413
`username` String `json:$.record.username`
1514

16-
ENGINE "ReplacingMergeTree"
17-
ENGINE_PARTITION_KEY "toYear(createdAt)"
18-
ENGINE_SORTING_KEY "segmentId, platform, activityId"
19-
ENGINE_VER "updatedAt"
15+
ENGINE ReplacingMergeTree
16+
ENGINE_PARTITION_KEY toYear(createdAt)
17+
ENGINE_SORTING_KEY segmentId, platform, activityId
18+
ENGINE_VER updatedAt

services/libs/tinybird/datasources/activityRelations_sorted.datasource

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
SCHEMA >
32
`activityId` String,
43
`conversationId` String,
@@ -13,6 +12,6 @@ SCHEMA >
1312
`segmentId` String,
1413
`username` String
1514

16-
ENGINE "MergeTree"
17-
ENGINE_PARTITION_KEY "toYear(createdAt)"
18-
ENGINE_SORTING_KEY "segmentId, memberId, organizationId, activityId"
15+
ENGINE MergeTree
16+
ENGINE_PARTITION_KEY toYear(createdAt)
17+
ENGINE_SORTING_KEY segmentId, memberId, organizationId, activityId
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
SCHEMA >
32
`id` String `json:$.record.id`,
43
`name` String `json:$.record.name`,
@@ -8,7 +7,7 @@ SCHEMA >
87
`createdAt` DateTime64(3) `json:$.record.createdAt`,
98
`updatedAt` DateTime64(3) `json:$.record.updatedAt`
109

11-
ENGINE "ReplacingMergeTree"
12-
ENGINE_PARTITION_KEY "toYear(createdAt)"
13-
ENGINE_SORTING_KEY "id"
14-
ENGINE_VER "updatedAt"
10+
ENGINE ReplacingMergeTree
11+
ENGINE_PARTITION_KEY toYear(createdAt)
12+
ENGINE_SORTING_KEY id
13+
ENGINE_VER updatedAt
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
SCHEMA >
32
`id` String `json:$.record.id`,
43
`collectionId` String `json:$.record.collectionId`,
@@ -7,7 +6,7 @@ SCHEMA >
76
`createdAt` DateTime64(3) `json:$.record.createdAt`,
87
`updatedAt` DateTime64(3) `json:$.record.updatedAt`
98

10-
ENGINE "ReplacingMergeTree"
11-
ENGINE_PARTITION_KEY "toYear(createdAt)"
12-
ENGINE_SORTING_KEY "insightsProjectId, collectionId"
13-
ENGINE_VER "updatedAt"
9+
ENGINE ReplacingMergeTree
10+
ENGINE_PARTITION_KEY toYear(createdAt)
11+
ENGINE_SORTING_KEY insightsProjectId, collectionId
12+
ENGINE_VER updatedAt

services/libs/tinybird/datasources/insightsProjects.datasource

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
SCHEMA >
32
`id` String `json:$.record.id`,
43
`name` String `json:$.record.name`,
@@ -16,7 +15,7 @@ SCHEMA >
1615
`widgets` Array(String) `json:$.record.widgets[:]` DEFAULT [],
1716
`repositories` Array(String) `json:$.record.repositories[:]` DEFAULT []
1817

19-
ENGINE "ReplacingMergeTree"
20-
ENGINE_PARTITION_KEY "toYear(createdAt)"
21-
ENGINE_SORTING_KEY "id"
22-
ENGINE_VER "updatedAt"
18+
ENGINE ReplacingMergeTree
19+
ENGINE_PARTITION_KEY toYear(createdAt)
20+
ENGINE_SORTING_KEY id
21+
ENGINE_VER updatedAt

services/libs/tinybird/datasources/members.datasource

+4-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
SCHEMA >
32
`id` String `json:$.record.id`,
43
`attributes` String `json:$.record.attributes` DEFAULT '',
@@ -14,7 +13,7 @@ SCHEMA >
1413
`displayName` String `json:$.record.displayName`,
1514
`score` Int32 `json:$.record.score` DEFAULT -1
1615

17-
ENGINE "ReplacingMergeTree"
18-
ENGINE_PARTITION_KEY "toYear(createdAt)"
19-
ENGINE_SORTING_KEY "id"
20-
ENGINE_VER "updatedAt"
16+
ENGINE ReplacingMergeTree
17+
ENGINE_PARTITION_KEY toYear(createdAt)
18+
ENGINE_SORTING_KEY id
19+
ENGINE_VER updatedAt

services/libs/tinybird/datasources/members_sorted.datasource

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
SCHEMA >
32
`id` String,
43
`attributes` String,
@@ -14,6 +13,6 @@ SCHEMA >
1413
`displayName` String,
1514
`score` Int32
1615

17-
ENGINE "MergeTree"
18-
ENGINE_PARTITION_KEY "toYear(joinedAt)"
19-
ENGINE_SORTING_KEY "id"
16+
ENGINE MergeTree
17+
ENGINE_PARTITION_KEY toYear(joinedAt)
18+
ENGINE_SORTING_KEY id

0 commit comments

Comments
 (0)