diff --git a/airflow_variables_dev.json b/airflow_variables_dev.json index 0ef71034..7ae6c62a 100644 --- a/airflow_variables_dev.json +++ b/airflow_variables_dev.json @@ -62,7 +62,7 @@ "dbt_threads": 12, "gcs_exported_data_bucket_name": "us-central1-test-hubble-2-5f1f2dbf-bucket", "gcs_exported_object_prefix": "dag-exported", - "image_name": "stellar/stellar-etl:a334cb5", + "image_name": "stellar/stellar-etl:834b7bb", "image_output_path": "/etl/exported_data/", "image_pull_policy": "IfNotPresent", "kube_config_location": "", @@ -215,7 +215,7 @@ } } }, - "sentry_dsn": "https://9e0a056541c3445083329b072f2df690@o14203.ingest.sentry.io/6190849", + "sentry_dsn": "https://9e0a056541c3445083329b072f2df690@o14203.ingest.us.sentry.io/6190849", "sentry_environment": "development", "schema_filepath": "/home/airflow/gcs/dags/schemas/", "table_ids": { diff --git a/airflow_variables_prod.json b/airflow_variables_prod.json index f8339f6d..12e6f47b 100644 --- a/airflow_variables_prod.json +++ b/airflow_variables_prod.json @@ -67,7 +67,7 @@ "dbt_threads": 12, "gcs_exported_data_bucket_name": "us-central1-hubble-2-d948d67b-bucket", "gcs_exported_object_prefix": "dag-exported", - "image_name": "stellar/stellar-etl:a334cb5", + "image_name": "stellar/stellar-etl:834b7bb", "image_output_path": "/etl/exported_data/", "image_pull_policy": "IfNotPresent", "kube_config_location": "", @@ -210,7 +210,7 @@ } } }, - "sentry_dsn": "https://94027cdcc4c9470f9dafa2c0b456c2c9@o14203.ingest.sentry.io/5806618", + "sentry_dsn": "https://94027cdcc4c9470f9dafa2c0b456c2c9@o14203.ingest.us.sentry.io/5806618", "sentry_environment": "production", "schema_filepath": "/home/airflow/gcs/dags/schemas/", "table_ids": { diff --git a/dags/sandbox_update_dag.py b/dags/sandbox_update_dag.py index d099453b..949365d2 100644 --- a/dags/sandbox_update_dag.py +++ b/dags/sandbox_update_dag.py @@ -50,6 +50,8 @@ ) for table_id in TABLES_ID: + if table_id == "diagnostic_events": + continue query_path = get_query_filepath("update_table") query = file_to_string(query_path) sql_params = { diff --git a/schemas/contract_code_schema.json b/schemas/contract_code_schema.json index 9781f891..9536a8b8 100644 --- a/schemas/contract_code_schema.json +++ b/schemas/contract_code_schema.json @@ -53,5 +53,55 @@ "mode": "NULLABLE", "name": "ledger_key_hash", "type": "STRING" + }, + { + "mode": "NULLABLE", + "name": "n_instructions", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "n_functions", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "n_globals", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "n_table_entries", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "n_types", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "n_data_segments", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "n_elem_segments", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "n_imports", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "n_exports", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "n_data_segment_bytes", + "type": "INTEGER" } ] diff --git a/schemas/history_ledgers_schema.json b/schemas/history_ledgers_schema.json index 24e9ce84..3e968b2a 100644 --- a/schemas/history_ledgers_schema.json +++ b/schemas/history_ledgers_schema.json @@ -98,5 +98,10 @@ "mode": "NULLABLE", "name": "batch_insert_ts", "type": "TIMESTAMP" + }, + { + "mode": "NULLABLE", + "name": "soroban_fee_write_1kb", + "type": "INTEGER" } ] diff --git a/schemas/history_transactions_schema.json b/schemas/history_transactions_schema.json index a449e616..656c08f4 100644 --- a/schemas/history_transactions_schema.json +++ b/schemas/history_transactions_schema.json @@ -193,5 +193,20 @@ "mode": "NULLABLE", "name": "resource_fee_refund", "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "non_refundable_resource_fee_charged", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "refundable_resource_fee_charged", + "type": "INTEGER" + }, + { + "mode": "NULLABLE", + "name": "rent_fee_charged", + "type": "INTEGER" } ]