yabha-isomap commented on issue #7100:
URL: https://github.com/apache/hudi/issues/7100#issuecomment-1298495326
Thanks @complone . Tried with that also, but no luck.
```sql
CREATE TABLE t1(
uuid VARCHAR(20) PRIMARY KEY NOT ENFORCED,
name VARCHAR(10),
age INT,
ts TIMESTAMP(3),
`partition` VARCHAR(20)
)
PARTITIONED BY (`partition`)
WITH (
'connector' = 'hudi',
'path' = '/tmp/hudi',
'hoodie.compaction.payload.class' = 'gsHudiPoc.Poc', -- My custom class
'write.payload.class' = 'gsHudiPoc.Poc', -- My custom class
'payload.class' = 'gsHudiPoc.Poc', -- My custom class
'hoodie.datasource.write.payload.class' = 'gsHudiPoc.Poc', -- My custom
class
'table.type' = 'COPY_ON_WRITE'
);
```
Let me try looking into the code of FlinkOptions.java
--
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]