chore(ci): update Tinybird CI workflow (#11033)
Added a new job to check for changed files before executing the CI workflow. Integrated Tinybird local service, updated environment variables, and refined the CI steps for better functionality and clarity.
This commit is contained in:
@ -1,11 +1,11 @@
|
||||
SCHEMA >
|
||||
`timestamp` DateTime64(3),
|
||||
`workspaceId` String,
|
||||
`functionId` String,
|
||||
`durationInMs` Int64,
|
||||
`success` Bool,
|
||||
`errorType` LowCardinality(String),
|
||||
`version` LowCardinality(String)
|
||||
`timestamp` DateTime64(3) `json:$.timestamp`,
|
||||
`workspaceId` String `json:$.workspaceId`,
|
||||
`functionId` String `json:$.functionId`,
|
||||
`durationInMs` Int64 `json:$.durationInMs`,
|
||||
`success` Bool `json:$.success`,
|
||||
`errorType` LowCardinality(String) `json:$.errorType`,
|
||||
`version` LowCardinality(String) `json:$.version`
|
||||
|
||||
ENGINE MergeTree
|
||||
ENGINE_PARTITION_KEY toYYYYMM(timestamp)
|
||||
|
||||
Reference in New Issue
Block a user