Skip to content

Commit 755b5cf

Browse files
authored
Implement memory optimization and decoupling stage executor and logic
2 parents a7b0d2c + e025798 commit 755b5cf

72 files changed

Lines changed: 34804 additions & 452510 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.coveragerc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@
22
omit =
33
data_pipeline/prototypes/*
44
data_pipeline/shared/table_configs.py
5+
data_pipeline/shared/modeling_configs.py
6+
data_pipeline/shared/storage_adapter.py
57
*/__init__.py

.gcp/terraforms/iam_bindings.tf

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,19 +51,19 @@ resource "google_project_iam_member" "eventarc_workflows_invoker" {
5151
# ------------------------------------------------------------
5252

5353
# Extractor Bucket Access
54-
resource "google_storage_bucket_iam_member" "extractor_pipeline_bucket_access" {
55-
bucket = google_storage_bucket.ops_pipeline_bucket.name
54+
resource "google_storage_bucket_iam_member" "drive_extractor_archival_access" {
55+
bucket = google_storage_bucket.ops_archival_bucket.name
5656
role = "roles/storage.objectAdmin"
5757
member = "serviceAccount:${google_service_account.platform_accounts["drive-extractor-sa"].email}"
5858
}
5959

60-
# Pipeline Runner Bucket Access
61-
resource "google_storage_bucket_iam_member" "pipeline_runner_archival_access" {
62-
bucket = google_storage_bucket.ops_archival_bucket.name
60+
resource "google_storage_bucket_iam_member" "drive_extractor_pipeline_access" {
61+
bucket = google_storage_bucket.ops_pipeline_bucket.name
6362
role = "roles/storage.objectAdmin"
64-
member = "serviceAccount:${google_service_account.platform_accounts["ops-pipeline-sa"].email}"
63+
member = "serviceAccount:${google_service_account.platform_accounts["drive-extractor-sa"].email}"
6564
}
6665

66+
# Pipeline Runner Bucket Access
6767
resource "google_storage_bucket_iam_member" "pipeline_runner_pipeline_access" {
6868
bucket = google_storage_bucket.ops_pipeline_bucket.name
6969
role = "roles/storage.objectAdmin"

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ __pycache__/
77
runtime/
88
data/published/
99
data/run_artifact
10+
data/contracted/
1011

1112
# local editor configs
1213
pyrightconfig.json

0 commit comments

Comments
 (0)