-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[fix](stream_load)fix bug when stream without content-length or chunk… #27752
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
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -1575,5 +1575,76 @@ suite("test_stream_load", "p0") { | |
| } finally { | ||
| sql """ DROP TABLE IF EXISTS ${tableName19} FORCE""" | ||
| } | ||
|
|
||
| def sql_result = sql """ select Host, HttpPort from backends() where alive = true limit 1; """ | ||
|
|
||
| log.info(sql_result[0][0].toString()) | ||
| log.info(sql_result[0][1].toString()) | ||
| log.info(sql_result[0].size.toString()) | ||
|
|
||
| def beHost=sql_result[0][0] | ||
| def beHttpPort=sql_result[0][1] | ||
| log.info("${beHost}".toString()) | ||
| log.info("${beHttpPort}".toString()); | ||
|
|
||
| //test be : chunked transfer + Content Length | ||
| try { | ||
| sql """ DROP TABLE IF EXISTS ${tableName16} """ | ||
| sql """ | ||
| CREATE TABLE IF NOT EXISTS ${tableName16} ( | ||
| `k1` bigint(20) NULL DEFAULT "1", | ||
| `k2` bigint(20) NULL , | ||
| `v1` tinyint(4) NULL, | ||
| `v2` tinyint(4) NULL, | ||
| `v3` tinyint(4) NULL, | ||
| `v4` DATETIME NULL | ||
| ) ENGINE=OLAP | ||
| DISTRIBUTED BY HASH(`k1`) BUCKETS 3 | ||
| PROPERTIES ("replication_allocation" = "tag.location.default: 1"); | ||
| """ | ||
|
|
||
| def command = "curl --location-trusted -u ${context.config.feHttpUser}:${context.config.feHttpPassword} -H column_separator:| -H ${db}:${tableName16} -H Content-Length:0 -H Transfer-Encoding:chunked -H columns:k1,k2,v1,v2,v3 -T ${context.dataPath}/test_chunked_transfer.csv http://${beHost}:${beHttpPort}/api/${db}/${tableName16}/_stream_load" | ||
| log.info("test chunked transfer command: ${command}") | ||
| def process = command.execute() | ||
| code = process.waitFor() | ||
| out = process.text | ||
| log.info("test chunked transfer result: ${out}".toString()) | ||
| def json = parseJson(out) | ||
| assertEquals("fail", json.Status.toLowerCase()) | ||
| assertTrue(json.Message.contains("[INTERNAL_ERROR]please do not set both content_length and transfer-encoding")) | ||
| } finally { | ||
| sql """ DROP TABLE IF EXISTS ${tableName16} FORCE""" | ||
| } | ||
|
|
||
|
|
||
| //test be : no chunked transfer + no Content Length | ||
| try { | ||
| sql """ DROP TABLE IF EXISTS ${tableName16} """ | ||
| sql """ | ||
| CREATE TABLE IF NOT EXISTS ${tableName16} ( | ||
| `k1` bigint(20) NULL DEFAULT "1", | ||
| `k2` bigint(20) NULL , | ||
| `v1` tinyint(4) NULL, | ||
| `v2` tinyint(4) NULL, | ||
| `v3` tinyint(4) NULL, | ||
| `v4` DATETIME NULL | ||
| ) ENGINE=OLAP | ||
| DISTRIBUTED BY HASH(`k1`) BUCKETS 3 | ||
| PROPERTIES ("replication_allocation" = "tag.location.default: 1"); | ||
| """ | ||
|
|
||
| def command = "curl --location-trusted -u ${context.config.feHttpUser}:${context.config.feHttpPassword} -H column_separator:| -H ${db}:${tableName16} -H Content-Length: -H Transfer-Encoding: -T ${context.dataPath}/test_chunked_transfer.csv http://${beHost}:${beHttpPort}/api/${db}/${tableName16}/_stream_load" | ||
| log.info("test chunked transfer command: ${command}") | ||
| def process = command.execute() | ||
| code = process.waitFor() | ||
| out = process.text | ||
| log.info("test chunked transfer result: ${out}".toString()) | ||
| def json = parseJson(out) | ||
| assertEquals("fail", json.Status.toLowerCase()) | ||
| assertTrue(json.Message.contains("[INTERNAL_ERROR]content_length is empty and transfer-encoding!=chunked, please set content_length or transfer-encoding=chunked")) | ||
| } finally { | ||
| sql """ DROP TABLE IF EXISTS ${tableName16} FORCE""" | ||
| } | ||
|
|
||
|
||
| } | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
It is no need log and return InternalError is enough.