dataroaring commented on code in PR #38834: URL: https://github.com/apache/doris/pull/38834#discussion_r1772461794
########## fe/fe-core/src/main/java/org/apache/doris/load/loadv2/MysqlLoadManager.java: ########## @@ -447,7 +453,14 @@ public HttpPut generateRequestForMySqlLoad( private String selectBackendForMySqlLoad(String database, String table) throws LoadException { Backend backend = null; if (Config.isCloudMode()) { - backend = StreamLoadHandler.selectBackend(ConnectContext.get().getCloudCluster()); + String clusterName = ""; + try { + clusterName = ConnectContext.get().getCloudCluster(); + } catch (Exception e) { + LOG.warn("failed to get cloud cluster: " + e.getMessage()); + throw new LoadException("failed to get cloud cluster: " + e); Review Comment: compute group -- 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