htyoung commented on code in PR #50183: URL: https://github.com/apache/doris/pull/50183#discussion_r2055821139
########## fe/fe-common/src/main/java/org/apache/doris/common/io/Text.java: ########## @@ -413,8 +408,39 @@ public static String readString(DataInput in) throws IOException { int length = in.readInt(); byte[] bytes = new byte[length]; in.readFully(bytes, 0, length); - String res = decode(bytes); - return res; + //The maximum amount that can be read at one time is 16MB. + int stepLen = 1024 * 1024 * 16; Review Comment: I have already modified -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org