-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Fix][connector-http] fix parsing httpjson, the number of two fields is inconsistent with the import failure #9103
base: dev
Are you sure you want to change the base?
Conversation
…is inconsistent with the import failure
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR fixes the JSON parsing issue in the HTTP connector by ensuring that inconsistent field counts across JSON paths are handled gracefully. Instead of throwing an exception when field sizes differ, the code now calculates the maximum field count and pads shorter lists with null values.
- Removed strict size equality check across parsed JSON results.
- Introduced dynamic null-padding to standardize the size of each result list.
- Updated log messaging to warn users about padded fields.
Comments suppressed due to low confidence (1)
seatunnel-connectors-v2/connector-http/connector-http-base/src/main/java/org/apache/seatunnel/connectors/seatunnel/http/source/HttpSourceReader.java:273
- [nitpick] Consider combining the message string into a single literal with placeholders instead of using string concatenation, which improves readability and minimizes potential formatting issues.
"Field [{}] with size ({}) is less than max size ({}), will be padded with null values. " + "This may happen when JSON paths return different numbers of elements.",
Please add test cases |
} | ||
source{ | ||
Http { | ||
url = "https://api-seller.ozon.ru/v2/finance/realization" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
user mockserver mock api & response
https://github.com/apache/seatunnel/blob/dev/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-http-e2e/src/test/resources/github_json_to_assert.conf#L26
https://github.com/apache/seatunnel/blob/dev/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-http-e2e/src/test/resources/mockserver-config.json#L430
…is inconsistent with the import failure
Purpose of this pull request
Does this PR introduce any user-facing change?
How was this patch tested?
Check list
New License Guide
release-note
.