DanielLeens commented on issue #9587: URL: https://github.com/apache/seatunnel/issues/9587#issuecomment-4468816542
Thanks for reporting this. From the current code path, this looks more like a config-shape / submission-format problem than a confirmed core bug. The stack you linked comes from `ConfigShadeUtils.processConfig(...)`, where SeaTunnel expects `source` / `sink` / `transform` to already be list-shaped before it walks the config for shaded fields. If one of those sections reaches the starter as a single map/object instead of the expected list structure, you can hit exactly this kind of `LinkedHashMap -> ArrayList` cast failure. So the first things to check are: 1. your SeaTunnel version 2. how the job is submitted: CLI config file, REST API, or some wrapper that converts config before submission 3. the full redacted job config, especially the exact shape of `source`, `sink`, and `transform` Please also update the issue body in English if possible, so more community members can help follow up. If you share the redacted config and submission path, we can check whether this is just an invalid config shape or whether an upstream conversion path is rewriting a valid SeaTunnel config incorrectly. -- 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]
