Skip to content

Commit 0319efa

Browse files
authored
Merge pull request #498 from GSA/increase-prod-memory
Increase prod memory
2 parents 805bcb6 + 6c12586 commit 0319efa

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

.cfignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ coverage
66
docs
77
libs
88
node_modules
9+
dist
910
notebooks
1011
storage
1112

libs/ingest/src/ingest.service.ts

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,22 @@ export class IngestService {
251251
sourceList.push('dod_2025');
252252
}
253253

254+
if(row.sourceListUsagovClicks.toLowerCase() === 'true') {
255+
sourceList.push('usagov_clicks');
256+
}
257+
258+
if(row.sourceListUsagovClicksMil.toLowerCase() === 'true') {
259+
sourceList.push('usagov_clicks_mil');
260+
}
261+
262+
if(row.sourceListSearchGov.toLowerCase() === 'true') {
263+
sourceList.push('searchgov');
264+
}
265+
266+
if(row.sourceListSearchGovMil.toLowerCase() === 'true') {
267+
sourceList.push('searchgov_mil');
268+
}
269+
254270
if (row.sourceListPublicInventory.toLowerCase() === 'true') {
255271
sourceList.push('public_inventory');
256272
}

vars-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ snapshot_schedule: '0 8 * * Sun'
1313

1414
consumer_instances: 10
1515
consumer_memory: 1GB
16-
consumer_disk: 5G
16+
consumer_disk: 7G

0 commit comments

Comments
 (0)