Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase size of cluster for VIIRS analysis #167

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN pip install . -t python
# to change the hash of the file and get TF to realize it needs to be
# redeployed. Ticket for a better solution:
# https://gfw.atlassian.net/browse/GTC-1250
# change 16
# change 17

RUN yum install -y zip geos-devel

Expand Down
2 changes: 1 addition & 1 deletion src/datapump/jobs/geotrellis.py
Original file line number Diff line number Diff line change
Expand Up @@ -689,7 +689,7 @@ def _calculate_worker_count(self, limiting_src) -> int:
# if using a wildcard for a folder, just use hardcoded value
if "*" in limiting_src:
if GLOBALS.env == "production":
if self.table.analysis == Analysis.tcl:
if self.table.analysis == Analysis.tcl or self.table.analysis == Analysis.viirs:
return 200
else:
return 100
Expand Down