You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by "caoliang-web (via GitHub)" <gi...@apache.org> on 2023/04/17 09:10:18 UTC

[GitHub] [doris] caoliang-web opened a new pull request, #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

caoliang-web opened a new pull request, #18743:
URL: https://github.com/apache/doris/pull/18743

   ## Problem summary
   
   1.Solve the problem of querying es catalog Unexpected exception: Index: 0, Size: 0
   
   ## Checklist(Required)
   
   * [ ] Does it affect the original behavior
   * [ ] Has unit tests been added
   * [ ] Has document been added or modified
   * [ ] Does it need to update dependencies
   * [ ] Is this PR support rollback (If NO, please explain WHY)
   
   ## Further comments
   
   If this is a relatively large or complex change, kick off the discussion at [dev@doris.apache.org](mailto:dev@doris.apache.org) by explaining why you chose the solution you did and what alternatives you considered, etc...
   
   


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1575415139

   run build all
   


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] stalary commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "stalary (via GitHub)" <gi...@apache.org>.
stalary commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1561125784

   run build all


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on a diff in pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on code in PR #18743:
URL: https://github.com/apache/doris/pull/18743#discussion_r1193256319


##########
fe/fe-core/src/main/java/org/apache/doris/planner/EsScanNode.java:
##########
@@ -257,11 +257,13 @@ private List<TScanRangeLocations> getShardLocations() throws UserException {
                 // Generate on es scan range
                 TEsScanRange esScanRange = new TEsScanRange();
                 esScanRange.setEsHosts(shardAllocations);
-                esScanRange.setIndex(shardRouting.get(0).getIndexName());
+                if (shardRouting.size() > 0 && shardRouting != null) {

Review Comment:
   The query will appear:
   java.lang.IndexOutOfBoundsException: Index: 0, Size: 0
    at java.util.ArrayList.rangeCheck(ArrayList.java:638) ~[?:1.8.0_11]
    at java.util.ArrayList.get(ArrayList.java:414) ~[?:1.8.0_11]
    at org.apache.doris.planner.EsScanNode.getShardLocations(EsScanNode.java:278) ~[doris-fe.jar:1.2-SNAPSHOT]
    at org.apache.doris.planner.EsScanNode.finalize(EsScanNode.java:131) ~[doris-fe.jar:1.2-SNAPSHOT]
    at org.apache.doris.planner.OriginalPlanner.createPlanFragments(OriginalPlanner.java:195) ~[doris-fe.jar:1.2-SNAPSHOT]
    at org.apache.doris.planner.OriginalPlanner.plan(OriginalPlanner.java:85) ~[doris-fe.jar:1.2-SNAPSHOT]
    at org.apache.doris.qe.StmtExecutor.analyzeAndGenerateQueryPlan(StmtExecutor.java:886) ~[doris-fe.jar:1.2-SNAPSHOT]
    at org.apache.doris.qe.StmtExecutor.analyze(StmtExecutor.java:721) ~[doris-fe.jar:1.2-SNAPSHOT]
    at org.apache.doris.qe.StmtExecutor.execute(StmtExecutor.java:446) ~[doris-fe.jar:1.2-SNAPSHOT]
    at org.apache.doris.qe.StmtExecutor.execute(StmtExecutor.java:409) ~[doris-fe.jar:1.2-SNAPSHOT]
    at org.apache.doris.qe.ConnectProcessor.handleQuery(ConnectProcessor.java:330) ~[doris-fe.jar:1.2-SNAPSHOT]
    at org.apache.doris.qe.ConnectProcessor.dispatch(ConnectProcessor.java:471) ~[doris-fe.jar:1.2-SNAPSHOT]
    at org.apache.doris.qe.ConnectProcessor.processOnce(ConnectProcessor.java:698) ~[doris-fe.jar:1.2-SNAPSHOT]
    at org.apache.doris.mysql.nio.ReadListener.lambda$handleEvent$0(ReadListener.java:52) ~[doris-fe.jar:1.2-SNAPSHOT]
    at org.apache.doris.mysql.nio.ReadListener$$Lambda$886/434633273.run(Unknown Source) ~[?:?]
    at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) ~[?:1.8.0_11]
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) ~[?:1.8.0_11]
    at java.lang.Thread.run(Thread.java:745) ~[?:1.8.0_11]
   2023-04-14 14:43:00,283 WARN (mysql-nio-pool-4034|191313) [StmtExecutor.execute():589] execute Exception. stmt[8664628, 273a03ebe5694b54-8b17ba4e02a3fba1], errCode = 2, detailMessage = Unexpected exception: Index: 0, Size: 0



-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] stalary commented on a diff in pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "stalary (via GitHub)" <gi...@apache.org>.
stalary commented on code in PR #18743:
URL: https://github.com/apache/doris/pull/18743#discussion_r1194489220


##########
fe/fe-core/src/main/java/org/apache/doris/planner/EsScanNode.java:
##########
@@ -257,11 +257,13 @@ private List<TScanRangeLocations> getShardLocations() throws UserException {
                 // Generate on es scan range
                 TEsScanRange esScanRange = new TEsScanRange();
                 esScanRange.setEsHosts(shardAllocations);
-                esScanRange.setIndex(shardRouting.get(0).getIndexName());
+                if (shardRouting.size() > 0 && shardRouting != null) {

Review Comment:
   I mean is whether not to set index will cause subsequent query failure.



-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1579731437

   run buildall
   
   


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] morningman commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "morningman (via GitHub)" <gi...@apache.org>.
morningman commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1521316922

   run buildall


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1579832044

   run build all
   
   


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1559470640

   PR approved by at least one committer and no changes requested.


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] JNSimba merged pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "JNSimba (via GitHub)" <gi...@apache.org>.
JNSimba merged PR #18743:
URL: https://github.com/apache/doris/pull/18743


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on a diff in pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on code in PR #18743:
URL: https://github.com/apache/doris/pull/18743#discussion_r1193256319


##########
fe/fe-core/src/main/java/org/apache/doris/planner/EsScanNode.java:
##########
@@ -257,11 +257,13 @@ private List<TScanRangeLocations> getShardLocations() throws UserException {
                 // Generate on es scan range
                 TEsScanRange esScanRange = new TEsScanRange();
                 esScanRange.setEsHosts(shardAllocations);
-                esScanRange.setIndex(shardRouting.get(0).getIndexName());
+                if (shardRouting.size() > 0 && shardRouting != null) {

Review Comment:
   The query will appear: java.lang.IndexOutOfBoundsException: Index: 0, Size: 0



-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] stalary commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "stalary (via GitHub)" <gi...@apache.org>.
stalary commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1559467140

   run build all


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1585943953

   run buildall
   
   


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1578109324

   run build all
   
   


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1582093570

   run buildall
   
   


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] stalary commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "stalary (via GitHub)" <gi...@apache.org>.
stalary commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1552796785

   run build all


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1584028036

   run buildall
   
   


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1584258418

   run P0


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] github-actions[bot] commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "github-actions[bot] (via GitHub)" <gi...@apache.org>.
github-actions[bot] commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1559470799

   PR approved by anyone and no changes requested.


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] stalary commented on a diff in pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "stalary (via GitHub)" <gi...@apache.org>.
stalary commented on code in PR #18743:
URL: https://github.com/apache/doris/pull/18743#discussion_r1191839591


##########
fe/fe-core/src/main/java/org/apache/doris/planner/EsScanNode.java:
##########
@@ -257,11 +257,13 @@ private List<TScanRangeLocations> getShardLocations() throws UserException {
                 // Generate on es scan range
                 TEsScanRange esScanRange = new TEsScanRange();
                 esScanRange.setEsHosts(shardAllocations);
-                esScanRange.setIndex(shardRouting.get(0).getIndexName());
+                if (shardRouting.size() > 0 && shardRouting != null) {

Review Comment:
   Will this cause errors in query?



-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on a diff in pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on code in PR #18743:
URL: https://github.com/apache/doris/pull/18743#discussion_r1194680293


##########
fe/fe-core/src/main/java/org/apache/doris/planner/EsScanNode.java:
##########
@@ -257,11 +257,13 @@ private List<TScanRangeLocations> getShardLocations() throws UserException {
                 // Generate on es scan range
                 TEsScanRange esScanRange = new TEsScanRange();
                 esScanRange.setEsHosts(shardAllocations);
-                esScanRange.setIndex(shardRouting.get(0).getIndexName());
+                if (shardRouting.size() > 0 && shardRouting != null) {

Review Comment:
   I confirm



-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1583804064

   run buildall
   
   


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1581809114

   run buildall
   
   


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1585597297

   run buildall
   
   


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1581824996

   run clickbench


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1586438845

   run buildall


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org


[GitHub] [doris] caoliang-web commented on pull request #18743: [BUG](es_catalog)Solve the problem of querying es catalog Unexpected exception: Index:…

Posted by "caoliang-web (via GitHub)" <gi...@apache.org>.
caoliang-web commented on PR #18743:
URL: https://github.com/apache/doris/pull/18743#issuecomment-1585940113

   run P1


-- 
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-unsubscribe@doris.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org