mymeiyi commented on code in PR #31259: URL: https://github.com/apache/doris/pull/31259#discussion_r1515466559
########## fe/fe-core/src/main/java/org/apache/doris/qe/StmtExecutor.java: ########## @@ -2969,6 +2974,141 @@ public List<Type> getReturnTypes() { return exprToType(parsedStmt.getResultExprs()); } + private HttpStreamParams generateStreamLoadNereidsPlan(TUniqueId queryId) { + LOG.info("TUniqueId: {} generate stream load plan", queryId); + context.setQueryId(queryId); + context.setStmtId(STMT_ID_GENERATOR.incrementAndGet()); + + parseByNereids(); + Preconditions.checkState(parsedStmt instanceof LogicalPlanAdapter, + "Nereids only process LogicalPlanAdapter, but parsedStmt is " + parsedStmt.getClass().getName()); + context.getState().setNereids(true); + InsertIntoTableCommand insert = (InsertIntoTableCommand) ((LogicalPlanAdapter) parsedStmt).getLogicalPlan(); + HttpStreamParams httpStreamParams = new HttpStreamParams(); + + try { + if (!StringUtils.isEmpty(context.getSessionVariable().groupCommit)) { + if (!Config.wait_internal_group_commit_finish && insert.getLabelName().isPresent()) { + throw new AnalysisException("label and group_commit can't be set at the same time"); + } + context.setGroupCommitStreamLoadSql(true); + } + OlapInsertExecutor insertExecutor = (OlapInsertExecutor) insert.initPlan(context, this); + httpStreamParams.setTxnId(insertExecutor.getTxnId()); + httpStreamParams.setDb(insertExecutor.getDatabase()); + httpStreamParams.setTable(insertExecutor.getTable()); + httpStreamParams.setLabel(insertExecutor.getLabelName()); + + PlanNode planRoot = planner.getFragments().get(0).getPlanRoot(); + Preconditions.checkState(planRoot instanceof TVFScanNode || planRoot instanceof GroupCommitScanNode, + "Nereids' planNode cannot be converted to " + planRoot.getClass().getName()); + } catch (QueryStateException e) { + LOG.debug("Command(" + originStmt.originStmt + ") process failed.", e); + context.setState(e.getQueryState()); + throw new NereidsException("Command(" + originStmt.originStmt + ") process failed", + new AnalysisException(e.getMessage(), e)); + } catch (UserException e) { + // Return message to info client what happened. + LOG.debug("Command(" + originStmt.originStmt + ") process failed.", e); + context.getState().setError(e.getMysqlErrorCode(), e.getMessage()); + throw new NereidsException("Command (" + originStmt.originStmt + ") process failed", + new AnalysisException(e.getMessage(), e)); + } catch (Exception e) { + // Maybe our bug + LOG.debug("Command (" + originStmt.originStmt + ") process failed.", e); + context.getState().setError(ErrorCode.ERR_UNKNOWN_ERROR, e.getMessage()); + throw new NereidsException("Command (" + originStmt.originStmt + ") process failed.", + new AnalysisException(e.getMessage(), e)); + } + return httpStreamParams; + } + + private HttpStreamParams generateStreamLoadLegacyPlan(TUniqueId queryId) throws Exception { Review Comment: name to `generateHttpStreamLegacyPlan` -- 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