This is an automated email from the ASF dual-hosted git repository.
panxiaolei pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 8a1f579ff0e [Improvementation](stream-load) improve streamLoadPut log
warning detail (#33535)
8a1f579ff0e is described below
commit 8a1f579ff0e178f738b40d173768344dc8f744b6
Author: Pxl <[email protected]>
AuthorDate: Thu Apr 11 18:39:48 2024 +0800
[Improvementation](stream-load) improve streamLoadPut log warning detail
(#33535)
improve streamLoadPut log warning detail
---
.../src/main/java/org/apache/doris/service/FrontendServiceImpl.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/service/FrontendServiceImpl.java
b/fe/fe-core/src/main/java/org/apache/doris/service/FrontendServiceImpl.java
index 8d5ebb0fc37..683ad847872 100644
--- a/fe/fe-core/src/main/java/org/apache/doris/service/FrontendServiceImpl.java
+++ b/fe/fe-core/src/main/java/org/apache/doris/service/FrontendServiceImpl.java
@@ -1948,11 +1948,11 @@ public class FrontendServiceImpl implements
FrontendService.Iface {
status.setStatusCode(TStatusCode.NOT_FOUND);
status.addToErrorMsgs(e.getMessage());
} catch (UserException e) {
- LOG.warn("failed to get stream load plan: {}", e.getMessage());
+ LOG.warn("failed to get stream load plan, label: {}",
request.getLabel(), e);
status.setStatusCode(TStatusCode.ANALYSIS_ERROR);
status.addToErrorMsgs(e.getMessage());
} catch (Throwable e) {
- LOG.warn("catch unknown result.", e);
+ LOG.warn("stream load catch unknown result, label: {}",
request.getLabel(), e);
status.setStatusCode(TStatusCode.INTERNAL_ERROR);
status.addToErrorMsgs(e.getClass().getSimpleName() + ": " +
Strings.nullToEmpty(e.getMessage()));
return result;
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]