[
https://issues.apache.org/jira/browse/IGNITE-18974?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Evgeny Stanilovsky updated IGNITE-18974:
----------------------------------------
Description:
DistributedQueryManager#acknowledgeFragment silently skip proposed exception.
Fast reproducer is to hack implementation and write smth like:
{noformat}
private void acknowledgeFragment(String nodeName, long fragmentId,
@Nullable Throwable ex) {
Exception ex0 = new ...
if (ex0 != null) {
... and so on
{noformat}
The only problem we can observe looks like :
{noformat}
at
org.apache.ignite.internal.sql.engine.exec.ExecutionServiceImplTest.testCancelOnInitiator(ExecutionServiceImplTest.java:188)
at
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at
java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
{noformat}
was:
DistributedQueryManager#acknowledgeFragment silently skip proposed exception.
Fast reproducer is to hack implementation and write smth like:
{noformat}
private void acknowledgeFragment(String nodeName, long fragmentId,
@Nullable Throwable ex) {
Exception ex0 = new ...
if (ex0 != null) {
... and so on
{noformat}
> Sql. Exception silently skipped.
> --------------------------------
>
> Key: IGNITE-18974
> URL: https://issues.apache.org/jira/browse/IGNITE-18974
> Project: Ignite
> Issue Type: Improvement
> Components: sql
> Affects Versions: 3.0.0-beta1
> Reporter: Evgeny Stanilovsky
> Priority: Major
> Labels: calcite3-required, ignite-3
>
> DistributedQueryManager#acknowledgeFragment silently skip proposed exception.
> Fast reproducer is to hack implementation and write smth like:
> {noformat}
> private void acknowledgeFragment(String nodeName, long fragmentId,
> @Nullable Throwable ex) {
> Exception ex0 = new ...
> if (ex0 != null) {
> ... and so on
> {noformat}
> The only problem we can observe looks like :
> {noformat}
> at
> org.apache.ignite.internal.sql.engine.exec.ExecutionServiceImplTest.testCancelOnInitiator(ExecutionServiceImplTest.java:188)
> at
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
> at
> java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
> {noformat}
--
This message was sent by Atlassian Jira
(v8.20.10#820010)