DanielCarter-stack commented on issue #10403:
URL: https://github.com/apache/seatunnel/issues/10403#issuecomment-3803520578
<!-- code-pr-reviewer -->
Thanks for reporting this. Based on the current codebase, I'd like to
clarify a few points to help diagnose the issue:
1. The `CommonOptions` class in 2.3.x is located at
`org.apache.seatunnel.api.table.type.CommonOptions` (see
`seatunnel-api/src/main/java/org/apache/seatunnel/api/table/type/CommonOptions.java`),
**not** `org.apache.seatunnel.api.common.CommonOptions` as shown in your
error. Does your UDF code explicitly reference
`org.apache.seatunnel.api.common.CommonOptions`?
2. Regarding your concern about `result_table_name`/`source_table_name` vs
`plugin_output`/`plugin_input`: current versions maintain backward
compatibility through fallback keys (see
`seatunnel-api/src/main/java/org/apache/seatunnel/api/options/ConnectorCommonOptions.java`),
so both configurations work correctly.
3. Could you provide:
- Your complete UDF code (especially the `import` statements)
- The full error stack trace
- Confirmation that your UDF implements `ZetaUDF` interface with
`@AutoService(ZetaUDF.class)` annotation
This will help us determine if the root cause is incorrect imports in your
UDF or a documentation issue.
--
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]