jaegwonseo opened a new issue, #33694:
URL: https://github.com/apache/airflow/issues/33694
### Apache Airflow version
Other Airflow 2 version (please specify below)
### What happened
version 2.6.2
An error occurs when *.json is included in the parameters of
BigQueryInsertJobOperator.
``` py
to_gcs_task = BigQueryInsertJobOperator(
dag=dag,
task_id='to_gcs',
gcp_conn_id='xxxx',
configuration={
"extract": {
# The error occurred at this location.
"destinationUris": ['gs://xxx/yyy/*.json'],
"sourceTable": {
"projectId": "abc",
"datasetId": "def",
"tableId": "ghi"
},
"destinationFormat": "NEWLINE_DELIMITED_JSON"
}
}
)
```
error log
```
jinja2.exceptions.TemplateNotFound: gs://xxx/yyy/*.json
```
### What you think should happen instead
According to the airflow.template.templater
```py
if isinstance(value, str):
if any(value.endswith(ext) for ext in self.template_ext): # A
filepath.
template = jinja_env.get_template(value)
else:
template = jinja_env.from_string(value)
return self._render(template, context)
```
In the Jinja template source, if the value ends with .json or .sql, an
attempt is made to read the resource file by calling jinja_env.get_template.
### How to reproduce
just call BigQueryInsertJobOperator with configuration what i added
### Operating System
m2 mac
### Versions of Apache Airflow Providers
_No response_
### Deployment
Official Apache Airflow Helm Chart
### Deployment details
_No response_
### Anything else
_No response_
### Are you willing to submit PR?
- [ ] Yes I am willing to submit a PR!
### Code of Conduct
- [X] I agree to follow this project's [Code of
Conduct](https://github.com/apache/airflow/blob/main/CODE_OF_CONDUCT.md)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]