[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-12-06 Thread Stamatis Zampetakis (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17793674#comment-17793674
 ] 

Stamatis Zampetakis commented on CALCITE-6123:
--

I can reproduce the problem consistently by performing the following steps:
 * Initialize Druid and index the foodmart dataset as per instructions in 
[calcite-druid-dataset|https://github.com/zabetak/calcite-druid-dataset/].
 * Open [Druid's SQL query 
client|http://localhost:/unified-console.html#query]
 * Run the following foodmart queries in the order they appear below.

+Q1+
{code:sql}
select "store_state", "brand_name", "A"
from (
  select "store_state", "brand_name", sum("store_sales") + sum("store_cost") as 
A
  from "foodmart" 
  group by "store_state", "brand_name")
order by "brand_name", "store_state"
limit 5
{code}
+RQ1+
{noformat}
"store_state","brand_name","A"
"CA","ADJ","222.1524"
"OR","ADJ","186.603597"
"WA","ADJ","216.9912"
"CA","Akron","250.349"
"OR","Akron","278.6972"
{noformat}
+Q2+
{code:sql}
select "store_state", "brand_name", "A"
from (
  select "store_state", "brand_name", sum("store_sales") - sum("store_cost") as 
A
  from "foodmart"
  group by "store_state", "brand_name")
order by "A" 
limit 5
{code}
+RAQ2: results of Q2, when the latter is executed after Q1+
{noformat}
"store_state","brand_name","A"
"OR","ADJ","83.8764"
"WA","Akron","85.840198"
"OR","American","86.789799"
"WA","ADJ","97.6488"
"CA","ADJ","98.007597"
{noformat}
+RBQ2: results of Q2, when the latter is executed before Q1+
{noformat}
"store_state","brand_name","A"
"CA","King","21.4632008"
"OR","Symphony","32.1760016"
"CA","Toretti","32.246499"
"WA","King","34.6104006"
"OR","Toretti","36.3"
{noformat}
The results in RAQ2 are wrong and this result set occurs only if Q1 has run 
before.

The queries above were taken from the [DruidAdapterIT 
class|https://github.com/apache/calcite/blob/d3ab0bc8e4d4c9ebc0fc4e33ce478d276f5d11e4/druid/src/test/java/org/apache/calcite/test/DruidAdapterIT.java]
 and in particular from the following methods:
 * Q1, testInterleaveBetweenAggregateAndGroupOrderByOnDimension
 * Q2, testInterleaveBetweenAggregateAndGroupOrderByOnMetrics

The problem can be reproduced also via Calcite by running the respective tests 
in sequence:
{noformat}
./gradlew :druid:test --tests 
DruidAdapterIT.testInterleaveBetweenAggregateAndGroupOrderByOnDimension 
-Dcalcite.test.druid
./gradlew :druid:test --tests 
DruidAdapterIT.testInterleaveBetweenAggregateAndGroupOrderByOnMetrics 
-Dcalcite.test.druid

FAILURE   2.0sec, org.apache.calcite.test.DruidAdapterIT > 
testInterleaveBetweenAggregateAndGroupOrderByOnMetrics()
java.lang.AssertionError: 
Expected: "store_state=CA; brand_name=King; A=21.4632\nstore_state=OR; 
brand_name=Symphony; A=32.176\nstore_state=CA; brand_name=Toretti; 
A=32.2465\nstore_state=WA; brand_name=King; A=34.6104\nstore_state=OR; 
brand_name=Toretti; A=36.3"
 but: was "store_state=OR; brand_name=ADJ; A=83.8764\nstore_state=WA; 
brand_name=Akron; A=85.8402\nstore_state=OR; brand_name=American; 
A=86.7898\nstore_state=WA; brand_name=ADJ; A=97.6488\nstore_state=CA; 
brand_name=ADJ; A=98.0076"
at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:18)
at org.hamcrest.MatcherAssert.assertThat(MatcherAssert.java:6)
at 
org.apache.calcite.test.CalciteAssert.lambda$checkResult$6(CalciteAssert.java:453)
at 
org.apache.calcite.test.CalciteAssert.assertQuery(CalciteAssert.java:582)
at 
org.apache.calcite.test.CalciteAssert$AssertQuery.lambda$returns$1(CalciteAssert.java:1495)
at 
org.apache.calcite.test.CalciteAssert$AssertQuery.withConnection(CalciteAssert.java:1434)
at 
org.apache.calcite.test.CalciteAssert$AssertQuery.returns(CalciteAssert.java:1493)
at 
org.apache.calcite.test.CalciteAssert$AssertQuery.returns(CalciteAssert.java:1483)
at 
org.apache.calcite.test.CalciteAssert$AssertQuery.returnsOrdered(CalciteAssert.java:1509)
at 
org.apache.calcite.test.DruidAdapterIT.testInterleaveBetweenAggregateAndGroupOrderByOnMetrics(DruidAdapterIT.java:2336)
Suppressed: org.apache.calcite.util.TestUtil$ExtraInformation: With 
materializationsEnabled=false, limit=-1, sql=select "store_state", 
"brand_name", "A" from (
  select sum("store_sales")-sum("store_cost") as a, "store_state", 
"brand_name"
  from "foodmart"
  group by "store_state", "brand_name" ) subq
order by "A" limit 5
at org.apache.calcite.util.TestUtil.rethrow(TestUtil.java:389)
at 
org.apache.calcite.test.CalciteAssert.assertQuery(CalciteAssert.java:598)
{noformat}
Druid has various level of caches for speeding up queries and some are on by 
default. It turns out that the problem observed here can be avoided by 
disabling the [query cache on the Historical 

[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-12-04 Thread Stamatis Zampetakis (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17792766#comment-17792766
 ] 

Stamatis Zampetakis commented on CALCITE-6123:
--

I don't think it is a JDK problem so bumping version will not help. I think its 
a caching issue at the Druid level and most likely the intermittent nature is 
affected by the order that the tests are run. It seems that it is reproducible 
locally so I will try to check a bit what's happening today.

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Major
>  Labels: pull-request-available
> Attachments: image-2023-11-19-15-17-53-699.png
>
>
> The test is all failing after 
> [https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6],
>  I'm not sure whether it's related.
> See following jobs:
>  * [https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605]
>  * [https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762]
>  * [https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776]
>  * [https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601]



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-12-03 Thread Benchao Li (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17792634#comment-17792634
 ] 

Benchao Li commented on CALCITE-6123:
-

There is no big difference between 24.0 vs 0.xx, it's just a version bump, 
see[1]. Druid says it's support for Java 17 is start from 25.0.0 as a 
experimental feature[2], and it's fully supported from 27.0.0[3]. Is it 
possible that we just move to 27.0.0, or the latest version 28.0.0?

[1] https://github.com/apache/druid/releases#24.0.0-major-version
[2] 
https://druid.apache.org/docs/25.0.0/operations/java.html#selecting-a-java-runtime
[3] https://github.com/apache/druid/releases#27.0.0-highlights-java-17-support


> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Major
>  Labels: pull-request-available
> Attachments: image-2023-11-19-15-17-53-699.png
>
>
> The test is all failing after 
> [https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6],
>  I'm not sure whether it's related.
> See following jobs:
>  * [https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605]
>  * [https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762]
>  * [https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776]
>  * [https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601]



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-12-03 Thread Jiajun Xie (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17792632#comment-17792632
 ] 

Jiajun Xie commented on CALCITE-6123:
-

Thank you for your suggestion, [~libenchao] 

 

Upgrading the druid is a good idea, I can solve the issue by using 0.23.0[1].

There are no 0.24.0 for druid, and it is 24.0[2]. 

There is a slight difference[3] in accuracy between 0.23.0 and 0.17.1

 

[1] https://hub.docker.com/r/apache/druid/tags?page=1=0.23

[2] [https://hub.docker.com/r/apache/druid/tags?page=1=24.0]

[3] https://github.com/apache/calcite/pull/3542/files

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Major
>  Labels: pull-request-available
> Attachments: image-2023-11-19-15-17-53-699.png
>
>
> The test is all failing after 
> [https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6],
>  I'm not sure whether it's related.
> See following jobs:
>  * [https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605]
>  * [https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762]
>  * [https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776]
>  * [https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601]



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-12-03 Thread Benchao Li (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17792542#comment-17792542
 ] 

Benchao Li commented on CALCITE-6123:
-

[~jiajunbernoulli] Thanks for your effort trying to solve this. I think it's ok 
and better to keep the discussion in one thread.

Since we're using Druid 0.17.1 which is released more 3 years ago, I couldn't 
find the supported Java versions in this version's document[1]. But's it's 
clear documented in it's latest version that JDK 17 is the suggested version to 
run Druid. So can we try to upgrade the Druid version to a higher one which 
clearly supports JDK 17?

Besides, JDK 8 may not be a choice since it's upgraded from 8 to 17 in 
CALCITE-5433, which solves a deadlock problem.

[1] https://druid.apache.org/docs/0.17.1/design/index.html
[2] https://druid.apache.org/docs/latest/operations/java/

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Major
>  Labels: pull-request-available
> Attachments: image-2023-11-19-15-17-53-699.png
>
>
> The test is all failing after 
> [https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6],
>  I'm not sure whether it's related.
> See following jobs:
>  * [https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605]
>  * [https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762]
>  * [https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776]
>  * [https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601]



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-12-03 Thread Jiajun Xie (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17792502#comment-17792502
 ] 

Jiajun Xie commented on CALCITE-6123:
-

calcite-druid-dataset is innocent.

The bug should be in JDK17 because Druid Test succeeded when I use JDK8: 
https://github.com/apache/calcite/pull/3559

 

This JIAR ticket is too messy because I made many wrong attempts.

I suggest going to another JIRA ticket to discuss a solution for JDK: 
https://issues.apache.org/jira/browse/CALCITE-6093

 

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Major
>  Labels: pull-request-available
> Attachments: image-2023-11-19-15-17-53-699.png
>
>
> The test is all failing after 
> [https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6],
>  I'm not sure whether it's related.
> See following jobs:
>  * [https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605]
>  * [https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762]
>  * [https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776]
>  * [https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601]



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-12-01 Thread Julian Hyde (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17792199#comment-17792199
 ] 

Julian Hyde commented on CALCITE-6123:
--

9 of 18 commits to main have failed in the last 3 weeks. With an intermittent 
failure of that nature, people are going to start ignoring CI failures in their 
PRs and adding more failures.

I propose that we close main branch until the problem is fixed.

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Major
>  Labels: pull-request-available
> Attachments: image-2023-11-19-15-17-53-699.png
>
>
> The test is all failing after 
> https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6,
>  I'm sure sure whether it's related.
> See following jobs:
> * https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605
> * https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762
> * https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776
> * https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-11-25 Thread Jiajun Xie (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17789626#comment-17789626
 ] 

Jiajun Xie commented on CALCITE-6123:
-

Oh, I found the issue:[https://github.com/apache/druid/issues/15427]

The test dataset is from druid.

Here is script to download data: 
[https://github.com/zabetak/calcite-druid-dataset/blob/master/index.sh]

 

BTW, no CI can success in the week: 
https://github.com/apache/calcite/actions/workflows/main.yml

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Major
> Attachments: image-2023-11-19-15-17-53-699.png
>
>
> The test is all failing after 
> https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6,
>  I'm sure sure whether it's related.
> See following jobs:
> * https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605
> * https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762
> * https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776
> * https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-11-19 Thread Benchao Li (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17787785#comment-17787785
 ] 

Benchao Li commented on CALCITE-6123:
-

[~hongyuguo][~jiajunbernoulli] Thanks for the confirmation, I also noticed that 
some test failed before the commit, and some succeeded after the commit, it 
should not be introduced by the commit.

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Blocker
> Attachments: image-2023-11-19-15-17-53-699.png
>
>
> The test is all failing after 
> https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6,
>  I'm sure sure whether it's related.
> See following jobs:
> * https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605
> * https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762
> * https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776
> * https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-11-19 Thread Jiajun Xie (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17787571#comment-17787571
 ] 

Jiajun Xie commented on CALCITE-6123:
-

It seems that there were many changes in the GitHub action at 10.30~11.2:

[https://github.blog/changelog/label/actions/]

 

But I can't see the impact.

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Blocker
> Attachments: image-2023-11-19-15-17-53-699.png
>
>
> The test is all failing after 
> https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6,
>  I'm sure sure whether it's related.
> See following jobs:
> * https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605
> * https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762
> * https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776
> * https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-11-18 Thread Jiajun Xie (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17787567#comment-17787567
 ] 

Jiajun Xie commented on CALCITE-6123:
-

The first failed in the main branch is 
https://github.com/apache/calcite/actions/runs/6716062315/job/18251737632

FYI: 
[https://github.com/apache/calcite/actions/workflows/main.yml?query=is%3Afailure+branch%3Amain]

 

 

The first failed in the PR is  
[https://github.com/apache/calcite/actions/runs/6759511612/job/18372237615|https://github.com/apache/calcite/actions/runs/6759511612/job/18372237615.]

FYI: 
https://github.com/apache/calcite/actions/workflows/main.yml?page=3=is%3Afailure+event%3Apull_request

!image-2023-11-19-15-17-53-699.png!

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Blocker
> Attachments: image-2023-11-19-15-17-53-699.png
>
>
> The test is all failing after 
> https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6,
>  I'm sure sure whether it's related.
> See following jobs:
> * https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605
> * https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762
> * https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776
> * https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-11-18 Thread Jiajun Xie (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17787559#comment-17787559
 ] 

Jiajun Xie commented on CALCITE-6123:
-

[~libenchao], I rerun *Druid Tests* in your PR: 
[https://github.com/apache/calcite/pull/3529]

And it failed: 
https://github.com/apache/calcite/actions/runs/6899741323/job/18821102845?pr=3529

 

So 
[https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6]
 is not the culprit.

 

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Blocker
>
> The test is all failing after 
> https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6,
>  I'm sure sure whether it's related.
> See following jobs:
> * https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605
> * https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762
> * https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776
> * https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-11-16 Thread hongyu guo (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17787067#comment-17787067
 ] 

hongyu guo commented on CALCITE-6123:
-

I opened [#2531|https://github.com/apache/calcite/pull/3531].

Even if I reverse the 
[commit|https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6],
 DruidAdapter2IT will still fail.

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Blocker
>
> The test is all failing after 
> https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6,
>  I'm sure sure whether it's related.
> See following jobs:
> * https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605
> * https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762
> * https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776
> * https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-11-16 Thread Benchao Li (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17787025#comment-17787025
 ] 

Benchao Li commented on CALCITE-6123:
-

FYI: after revert 
https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6,
 the druid tests pass on this PR: https://github.com/apache/calcite/pull/3529

I'll add another PR to add it back to see whether the druid test will fail 
always.

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Blocker
>
> The test is all failing after 
> https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6,
>  I'm sure sure whether it's related.
> See following jobs:
> * https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605
> * https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762
> * https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776
> * https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-11-16 Thread Benchao Li (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17787021#comment-17787021
 ] 

Benchao Li commented on CALCITE-6123:
-

[~hongyuguo] Thanks for spotting CALCITE-6093, I've added it as duplicated.

I'll try to revert the commit to see whether it fixes the problem.

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Blocker
>
> The test is all failing after 
> https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6,
>  I'm sure sure whether it's related.
> See following jobs:
> * https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605
> * https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762
> * https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776
> * https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-11-16 Thread hongyu guo (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17787016#comment-17787016
 ] 

hongyu guo commented on CALCITE-6123:
-

I think this problem already existed before November 4, you can check 
CALCITE-6093.

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Blocker
>
> The test is all failing after 
> https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6,
>  I'm sure sure whether it's related.
> See following jobs:
> * https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605
> * https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762
> * https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776
> * https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601



--
This message was sent by Atlassian Jira
(v8.20.10#820010)


[jira] [Commented] (CALCITE-6123) DruidAdapter2IT is failing

2023-11-16 Thread Benchao Li (Jira)


[ 
https://issues.apache.org/jira/browse/CALCITE-6123?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=17787008#comment-17787008
 ] 

Benchao Li commented on CALCITE-6123:
-

[~hongyuguo] What do you think about this?

> DruidAdapter2IT is failing 
> ---
>
> Key: CALCITE-6123
> URL: https://issues.apache.org/jira/browse/CALCITE-6123
> Project: Calcite
>  Issue Type: Bug
>  Components: tests
>Affects Versions: 1.36.0
>Reporter: Benchao Li
>Priority: Major
>
> The test is all failing after 
> https://github.com/apache/calcite/commit/55034513b463c938035e5d2436949bbf734b84b6,
>  I'm sure sure whether it's related.
> See following jobs:
> * https://github.com/apache/calcite/actions/runs/6886169664/job/18731435605
> * https://github.com/apache/calcite/actions/runs/6885301555/job/18729238762
> * https://github.com/apache/calcite/actions/runs/6871630651/job/18688793776
> * https://github.com/apache/calcite/actions/runs/6860287671/job/18653876601



--
This message was sent by Atlassian Jira
(v8.20.10#820010)