dataroaring commented on code in PR #38834: URL: https://github.com/apache/doris/pull/38834#discussion_r1772461413
########## fe/fe-core/src/main/java/org/apache/doris/cloud/load/CloudBrokerLoadJob.java: ########## @@ -88,7 +89,13 @@ public CloudBrokerLoadJob(long dbId, String label, BrokerDesc brokerDesc, Origin private void setCloudClusterId() throws MetaNotFoundException { ConnectContext context = ConnectContext.get(); if (context != null) { - String clusterName = context.getCloudCluster(); + String clusterName = ""; + try { + clusterName = context.getCloudCluster(); + } catch (ComputeGroupException e) { + LOG.warn("failed to get cluster name", e); + throw new MetaNotFoundException("failed to get cluster name " + e); Review Comment: compute group name -- 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