Files
twenty/packages/twenty-tinybird/datasources/serverlessFunctionEventMV.datasource
Antoine Moreaux da527f1780 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.
2025-03-21 16:32:24 +01:00

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