fix-DENG-3591 adding a wild card (#5530)

This commit is contained in:
Leli 2024-05-08 23:07:47 +02:00 коммит произвёл GitHub
Родитель ce8fad9555
Коммит 351f713f7e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -31,7 +31,7 @@ def import_braze_current_from_bucket(
):
"""Use bigquery client to store AVRO files from bucket in BigQuery."""
client = bigquery.Client(destination_project)
uri = f"gs://{source_bucket}/{source_prefix}/event_type={event_type}"
uri = f"gs://{source_bucket}/{source_prefix}/event_type={event_type}/*"
client.load_table_from_uri(
uri,
destination=f"{destination_project}.{destination_dataset}.{destination_table}",