From e96355718df910df139da9cd838d3d06781f1617 Mon Sep 17 00:00:00 2001 From: Amisha Singla Date: Tue, 30 Jul 2024 10:48:28 -0500 Subject: [PATCH] Add schema for signatures (#466) * Add schema for signatures * update image to test * use repeated to denote array * Update etl image --- airflow_variables_dev.json | 2 +- airflow_variables_prod.json | 2 +- schemas/history_transactions_schema.json | 5 +++++ 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/airflow_variables_dev.json b/airflow_variables_dev.json index 0f615b3b..82650c6e 100644 --- a/airflow_variables_dev.json +++ b/airflow_variables_dev.json @@ -154,7 +154,7 @@ }, "gcs_exported_data_bucket_name": "us-central1-test-hubble-43c3e190-bucket", "gcs_exported_object_prefix": "dag-exported", - "image_name": "stellar/stellar-etl:37b7123", + "image_name": "amishastellar/stellar-etl:ffe275c", "image_output_path": "/etl/exported_data/", "image_pull_policy": "IfNotPresent", "k8s_namespace": "hubble-composer", diff --git a/airflow_variables_prod.json b/airflow_variables_prod.json index 6cdf49f2..8a1f0628 100644 --- a/airflow_variables_prod.json +++ b/airflow_variables_prod.json @@ -155,7 +155,7 @@ }, "gcs_exported_data_bucket_name": "us-central1-hubble-14c4ca64-bucket", "gcs_exported_object_prefix": "dag-exported", - "image_name": "stellar/stellar-etl:37b7123", + "image_name": "stellar/stellar-etl:ffe275c", "image_output_path": "/etl/exported_data/", "image_pull_policy": "IfNotPresent", "k8s_namespace": "hubble-composer", diff --git a/schemas/history_transactions_schema.json b/schemas/history_transactions_schema.json index 656c08f4..4e0c6518 100644 --- a/schemas/history_transactions_schema.json +++ b/schemas/history_transactions_schema.json @@ -208,5 +208,10 @@ "mode": "NULLABLE", "name": "rent_fee_charged", "type": "INTEGER" + }, + { + "mode": "REPEATED", + "name": "signatures", + "type": "STRING" } ]