-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: previously-stored data wasn't being removed ; set size cap ; enc…
…oding timing measures
- Loading branch information
Francesco Stablum
committed
Nov 24, 2021
1 parent
3075aa5
commit 5b7bb26
Showing
4 changed files
with
38 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#!/bin/bash | ||
|
||
# FIXME: screen quits have been added to the launch scripts | ||
ssh [email protected] "screen -X -S airflow_webserver quit ; screen -X -S airflow_scheduler quit; cd ~/learning_sets/airflow/ ; bash launch_airflow.sh; screen -ls; echo done" | ||
ssh [email protected] "screen -X -S airflow_webserver quit ; screen -X -S airflow_scheduler quit; cd ~/learning_sets/airflow/ ; sleep 1 ; bash launch_airflow.sh; screen -ls; echo done" | ||
|
||
ssh -L 8081:127.0.0.1:8080 [email protected] -N -f |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,10 @@ airflow_user: someuser | |
airflow_password: somepassword | ||
airflow_email: [email protected] | ||
|
||
download_page_size: 1000 | ||
download_max_pages: 3 | ||
download_max_set_size: 50 | ||
|
||
data_loader_num_workers: 4 | ||
models_dag_config_name: dspn_deepnarrow | ||
models_dag_days_interval: 2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters