Skip to content

Commit 4693280

Browse files
committed
remove reservation
1 parent 95d8156 commit 4693280

4 files changed

Lines changed: 3 additions & 24 deletions

File tree

definitions/declarations/httparchive.js

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -40,21 +40,3 @@ ORDER BY cnt_pages DESC
4040
name: table
4141
})
4242
)
43-
44-
operate('create_reservation_assignment')
45-
.tags(['crawl_complete'])
46-
.queries(ctx => `
47-
CREATE ASSIGNMENT
48-
\`httparchive.region-us.retrospective-reprocessing.pipeline\`
49-
OPTIONS (
50-
assignee = 'projects/httparchive',
51-
job_type = 'QUERY')
52-
`)
53-
54-
operate('drop_reservation_assignment')
55-
.dependencies(['requests_10k'])
56-
.tags(['crawl_complete'])
57-
.queries(ctx => `
58-
DROP ASSIGNMENT IF EXISTS
59-
\`httparchive.region-us.retrospective-reprocessing.pipeline\`
60-
`)

definitions/output/crawl/pages.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ publish('pages', {
4747
technologies: 'Technologies detected at runtime (see https://www.wappalyzer.com/)',
4848
metadata: 'Additional metadata about the test'
4949
},
50-
tags: ['crawl_complete'],
51-
dependencies: ['create_reservation_assignment']
50+
tags: ['crawl_complete']
5251
}).preOps(ctx => `
5352
DELETE FROM ${ctx.self()}
5453
WHERE date = '${constants.currentMonth}' AND

definitions/output/crawl/parsed_css.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ publish('parsed_css', {
77
clusterBy: ['client', 'is_root_page', 'rank', 'page'],
88
requirePartitionFilter: true
99
},
10-
tags: ['crawl_complete'],
11-
dependencies: ['create_reservation_assignment']
10+
tags: ['crawl_complete']
1211
}).preOps(ctx => `
1312
DELETE FROM ${ctx.self()}
1413
WHERE date = '${constants.currentMonth}'

definitions/output/crawl/requests.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ publish('requests', {
3636
},
3737
response_body: 'Text-based response body'
3838
},
39-
tags: ['crawl_complete'],
40-
dependencies: ['create_reservation_assignment']
39+
tags: ['crawl_complete']
4140
}).preOps(ctx => `
4241
FOR client_value IN (SELECT * FROM UNNEST(['desktop', 'mobile']) AS client) DO
4342
FOR is_root_page_value IN (SELECT * FROM UNNEST([TRUE, FALSE]) AS is_root_page) DO

0 commit comments

Comments
 (0)