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.
13 lines
462 B
Plaintext
13 lines
462 B
Plaintext
SCHEMA >
|
|
`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)
|
|
ENGINE_SORTING_KEY workspaceId, functionId, timestamp
|