diff --git a/seatunnel-connectors-v2/connector-http/connector-http-base/src/main/java/org/apache/seatunnel/connectors/seatunnel/http/source/HttpSourceReader.java b/seatunnel-connectors-v2/connector-http/connector-http-base/src/main/java/org/apache/seatunnel/connectors/seatunnel/http/source/HttpSourceReader.java index e6b84992922..ff2187f84fc 100644 --- a/seatunnel-connectors-v2/connector-http/connector-http-base/src/main/java/org/apache/seatunnel/connectors/seatunnel/http/source/HttpSourceReader.java +++ b/seatunnel-connectors-v2/connector-http/connector-http-base/src/main/java/org/apache/seatunnel/connectors/seatunnel/http/source/HttpSourceReader.java @@ -262,18 +262,22 @@ private List> decodeJSON(String data) { List result = jsonReadContext.read(path); results.add(result); } - for (int i = 1; i < results.size(); i++) { - List result0 = results.get(0); - List result = results.get(i); - if (result0.size() != result.size()) { - throw new HttpConnectorException( - HttpConnectorErrorCode.FIELD_DATA_IS_INCONSISTENT, - String.format( - "[%s](%d) and [%s](%d) the number of parsing records is inconsistent.", - jsonPaths[0].getPath(), - result0.size(), - jsonPaths[i].getPath(), - result.size())); + int maxLength = 0; + for (List result : results) { + maxLength = Math.max(maxLength, result.size()); + } + for (int i = 0; i < results.size(); i++) { + List result = results.get(i); + if (result.size() < maxLength) { + log.warn( + "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.", + jsonPaths[i].getPath(), + result.size(), + maxLength); + for (int j = result.size(); j < maxLength; j++) { + result.add(null); + } } } diff --git a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-http-e2e/src/test/java/org/apache/seatunnel/e2e/connector/http/HttpIT.java b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-http-e2e/src/test/java/org/apache/seatunnel/e2e/connector/http/HttpIT.java index 6533e2bad8f..ced06e5f8e7 100644 --- a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-http-e2e/src/test/java/org/apache/seatunnel/e2e/connector/http/HttpIT.java +++ b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-http-e2e/src/test/java/org/apache/seatunnel/e2e/connector/http/HttpIT.java @@ -357,6 +357,9 @@ public void testSourceToAssertSink(TestContainer container) Container.ExecResult execResult19 = container.executeJob("/http_page_increase_start_num.conf"); Assertions.assertEquals(0, execResult19.getExitCode()); + + Container.ExecResult execResult21 = container.executeJob("/http_to_console.conf"); + Assertions.assertEquals(0, execResult21.getExitCode()); } @TestTemplate diff --git a/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-http-e2e/src/test/resources/http_to_console.conf b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-http-e2e/src/test/resources/http_to_console.conf new file mode 100644 index 00000000000..fe49d49b7f1 --- /dev/null +++ b/seatunnel-e2e/seatunnel-connector-v2-e2e/connector-http-e2e/src/test/resources/http_to_console.conf @@ -0,0 +1,61 @@ +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# +###### +###### This config file is a demonstration of streaming processing in seatunnel config +###### + +env { + parallelism = 1 + job.mode = "BATCH" +} +source{ + Http { + url = "https://api-seller.ozon.ru/v2/finance/realization" + method = "POST" + headers = {Client-Id="32653",Api-Key="e153c36f-3c78-4202-87cd-6c08ee283285"} + body =" {\"month\": 2,\"year\": 2025}" + format = "json" + json_field = { + barcode = "$.result.rows[*].item.barcode" + amount = "$.result.rows[*].delivery_commission.amount" + } + + schema = { + fields { + barcode = string + amount= string + } + } + } +} +transform{ +} +sink { + Console{} + #Jdbc { + # url = "jdbc:mysql://***:3306/?rewriteBatchedStatements=true" + # driver = "com.mysql.cj.jdbc.Driver" + # user = "root" + # password = "***" + # database = "test" + # table = "demo" + # # primary_keys = ["key1", "key2", ...] + # schema_save_mode = "CREATE_SCHEMA_WHEN_NOT_EXIST" + # data_save_mode="DROP_DATA" + # generate_sink_sql=true + #} +} \ No newline at end of file