https://github.com/mozilla/docker-etl/pull/116 was intended to fix a typing issue when uploading to BQ, but the fix did not work as expected. This fix _should_ work; I created a BQ table to reproduce the error and verify this fix.
This commit is contained in:
Brad Ochocki 2023-05-15 11:30:12 -07:00 коммит произвёл GitHub
Родитель aa99ea8f85
Коммит bffcf0af3b
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -23,7 +23,7 @@ def write_predictions_to_bigquery(
predictions["target"] = config["target"]
predictions["forecast_date"] = today
predictions["forecast_parameters"] = str(forecast_parameters)
predictions["ds"] = pd.to_datetime(predictions["ds"])
predictions["ds"] = pd.to_datetime(predictions["ds"], utc=True)
output_table = config["output_table"]