-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FE-187 remove copy project pipeline and tests (#332)
* remove test_copy_project, copy_project_to_new_dataset_job (unused and calls copy_project which I'm about to delete as well), copy_project pipeline solids, copy_project pipeline solids test, copy_project pipeline, remove copy_project test config, remove copy_project import * linting for style * Update requirements.txt * removing unused copy_project related config * Adding concurrency limiter - IE if a new push for the PR comes through stop the previously running jobs, if any. * add sleep to load_hca to see if the e2e issue is time sensitive. * FE-203 disable test load hca e2e (#333) --------- Co-authored-by: dsp-fieldeng-bot <[email protected]>
- Loading branch information
Showing
28 changed files
with
47 additions
and
1,303 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
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
18 changes: 0 additions & 18 deletions
18
.../hca_orchestration/config/dev_refresh/run_config/copy_project_new_dataset_run_config.yaml
This file was deleted.
Oops, something went wrong.
22 changes: 0 additions & 22 deletions
22
orchestration/hca_orchestration/config/dev_refresh/run_config/copy_project_run_config.yaml
This file was deleted.
Oops, something went wrong.
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
29 changes: 0 additions & 29 deletions
29
...stration/hca_orchestration/config/prod_migration/run_config/dcp1_real_prod_migration.yaml
This file was deleted.
Oops, something went wrong.
29 changes: 0 additions & 29 deletions
29
...stration/hca_orchestration/config/prod_migration/run_config/dcp2_real_prod_migration.yaml
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...hca_orchestration/config/prod_migration/run_config/dcp2_real_prod_migration_snapshot.yaml
This file was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -17,9 +17,6 @@ | |
dev_run_config_for_dcp_release_per_project_partition, | ||
run_config_per_project_public_snapshot_job, | ||
) | ||
from hca_orchestration.config.dev_refresh.dev_refresh import ( | ||
run_config_for_per_project_dataset_partition, | ||
) | ||
from hca_orchestration.config.prod_migration.prod_migration import ( | ||
run_config_per_project_snapshot_job_dev, | ||
) | ||
|
@@ -35,7 +32,6 @@ | |
staging_area_validator, | ||
validate_ingress_graph, | ||
) | ||
from hca_orchestration.repositories.common import copy_project_to_new_dataset_job | ||
from hca_orchestration.resources import bigquery_service, load_tag | ||
from hca_orchestration.resources.config.dagit import dagit_config | ||
from hca_orchestration.resources.config.datasets import ( | ||
|
@@ -127,15 +123,12 @@ def per_project_load_hca() -> PipelineDefinition: | |
@repository | ||
def all_jobs() -> list[PipelineDefinition]: | ||
jobs = [ | ||
copy_project_to_new_dataset_job("prod", "dev"), | ||
make_snapshot_public_job("dev", "dev"), | ||
cut_project_snapshot_job("dev", "dev", "[email protected]"), | ||
legacy_cut_snapshot_job("dev", "[email protected]"), | ||
per_project_load_hca(), | ||
validate_ingress_job() | ||
] | ||
jobs += configure_partitions_for_pipeline("copy_project_to_new_dataset", | ||
run_config_for_per_project_dataset_partition) | ||
jobs += configure_partitions_for_pipeline("make_snapshot_public_job_dev", | ||
run_config_per_project_public_snapshot_job) | ||
jobs += configure_partitions_for_pipeline("cut_project_snapshot_job_dev", | ||
|
Oops, something went wrong.