mymeiyi commented on code in PR #49854: URL: https://github.com/apache/doris/pull/49854#discussion_r2032722246
########## fe/fe-core/src/main/java/org/apache/doris/load/StreamLoadHandler.java: ########## @@ -157,6 +159,7 @@ public void setCloudCluster() throws UserException { } private void setDbAndTable() throws UserException, MetaNotFoundException { + LOG.info("setDbAndTable: {}", request); Review Comment: remove this log ########## fe/fe-core/src/main/java/org/apache/doris/service/FrontendServiceImpl.java: ########## @@ -2170,6 +2173,20 @@ private void httpStreamPutImpl(TStreamLoadPutRequest request, TStreamLoadPutResu if (request.isSetPartialUpdate() && !request.isPartialUpdate()) { ctx.getSessionVariable().setEnableUniqueKeyPartialUpdate(false); } + Pattern pattern = Pattern.compile( + "group_commit\\(\\s*\"table_id\"\\s*=\\s*\"(\\d+)\"\\s*\\)", + Pattern.CASE_INSENSITIVE + ); + Matcher matcher = pattern.matcher(request.getLoadSql()); + long tableId = -1; Review Comment: can move to line 2183 -- 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