This is an automated email from the ASF dual-hosted git repository.
dataroaring 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 05696052cc4 [fix](cloud) Change the executor of the warm up job from
root to admin (#51297)
05696052cc4 is described below
commit 05696052cc4dc32e163f98cef85d97bbffba3cd1
Author: deardeng <[email protected]>
AuthorDate: Thu May 29 09:42:40 2025 +0800
[fix](cloud) Change the executor of the warm up job from root to admin
(#51297)
---
.../main/java/org/apache/doris/cloud/CacheHotspotManagerUtils.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/fe/fe-core/src/main/java/org/apache/doris/cloud/CacheHotspotManagerUtils.java
b/fe/fe-core/src/main/java/org/apache/doris/cloud/CacheHotspotManagerUtils.java
index 9ad853777f4..5f1efa77d20 100644
---
a/fe/fe-core/src/main/java/org/apache/doris/cloud/CacheHotspotManagerUtils.java
+++
b/fe/fe-core/src/main/java/org/apache/doris/cloud/CacheHotspotManagerUtils.java
@@ -240,8 +240,8 @@ public class CacheHotspotManagerUtils {
TUniqueId queryId = new TUniqueId(uuid.getMostSignificantBits(),
uuid.getLeastSignificantBits());
connectContext.setQueryId(queryId);
connectContext.setStartTime();
- connectContext.setCurrentUserIdentity(UserIdentity.ROOT);
- connectContext.setQualifiedUser(UserIdentity.ROOT.getQualifiedUser());
+ connectContext.setCurrentUserIdentity(UserIdentity.ADMIN);
+ connectContext.setQualifiedUser(UserIdentity.ADMIN.getQualifiedUser());
connectContext.setUserInsertTimeout(getCacheHotSpotInsertTimeoutInSecTimeout());
return new AutoCloseConnectContext(connectContext);
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]