pandaStudy opened a new issue, #5810:
URL: https://github.com/apache/hudi/issues/5810
Hudi partition table not Supported transformations.
create table syntax:
```
CREATE TABLE test_create(
f1 STRING,
f2 STRING,
f3 STRING,
ts timestamp
)using hudi
partitioned by ( hours(ts))
options (
type = 'mor'
)
tblproperties (
primaryKey = 'f1',
preCombineField = 'ts'
);
```
### Exception:
```
java.util.concurrent.ExecutionException: java.lang.RuntimeException:
org.apache.spark.sql.AnalysisException: Transforms cannot be converted to
partition columns: hours(ts)
```
Not Supported transformations: years,months,days, bucket.......
**Environment Description**
* Hudi version :0.11.0
* Spark version :3.1.2
--
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]