Skip to content

Commit

Permalink
job per client
Browse files Browse the repository at this point in the history
  • Loading branch information
max-ostapenko authored and GCP Dataform committed Sep 29, 2024
1 parent ca2c0ab commit 33f58ac
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions definitions/output/all/reprocess_requests.js
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,9 @@ SELECT
requests.response_body
FROM (
SELECT *
FROM ${ctx.resolve("all", "requests")} ${constants.dev_TABLESAMPLE}
WHERE date = '${iteration.month}') AS requests
FROM \`all.requests\` ${constants.dev_TABLESAMPLE}
WHERE date = '${iteration.month}'
AND client = '${iteration.client}') AS requests
LEFT JOIN (
SELECT DISTINCT
CONCAT(origin, '/') AS page,
Expand Down

0 comments on commit 33f58ac

Please sign in to comment.