fjmacagno commented on issue #13391:
URL: https://github.com/apache/airflow/issues/13391#issuecomment-949999148
I am seeing the same issue using `HiveCliHook.load_df()`:
```
for design in designs:
for platformSegment in design["platformSegments"]:
design_rows.append(
[design["designId"], design["fullName"],
design["taxonomyId"], design["taxonomySegmentId"],
platformSegment["platformId"],
platformSegment["platformSegmentId"]])
hive = HiveCliHook(hive_cli_conn_id=constants.HIVE_CONN)
hive.load_df(pandas.DataFrame(design_rows),
table=segment_definition_table, delimiter="\t", create=False)
```
Error: `Error: Error while compiling statement: FAILED: SemanticException
Line 1:23 Invalid path ''/tmp/airflow_hiveop_twe9yc4g/tmpervj2lgz'': No files
matching path file:/tmp/airflow_hiveop_twe9yc4g/tmpervj2lgz
(state=42000,code=40000)`
--
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]