You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ignite.apache.org by "Ignite TC Bot (Jira)" <ji...@apache.org> on 2020/08/31 06:19:00 UTC

[jira] [Commented] (IGNITE-13389) Add possibility to obtain full stack trace on thin client side.

    [ https://issues.apache.org/jira/browse/IGNITE-13389?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17187462#comment-17187462 ] 

Ignite TC Bot commented on IGNITE-13389:
----------------------------------------

{panel:title=Branch: [pull/8195/head] Base: [master] : Possible Blockers (23)|borderStyle=dashed|borderColor=#ccc|titleBGColor=#F7D6C1}
{color:#d04437}SPI{color} [[tests 0 TIMEOUT , Exit Code |https://ci.ignite.apache.org/viewLog.html?buildId=5569279]]

{color:#d04437}MVCC Cache 7{color} [[tests 0 TIMEOUT , Exit Code |https://ci.ignite.apache.org/viewLog.html?buildId=5569351]]

{color:#d04437}RDD{color} [[tests 0 Exit Code |https://ci.ignite.apache.org/viewLog.html?buildId=5569273]]

{color:#d04437}Platform .NET (Core Linux){color} [[tests 10|https://ci.ignite.apache.org/viewLog.html?buildId=5569332]]
* dll: CreateCacheTest.TestCreateFromConfiguration - Test has low fail rate in base branch 0,0% and is not flaky
* dll: CreateCacheTest.TestCreateFromTemplate - Test has low fail rate in base branch 0,0% and is not flaky
* dll: ScanQueryTest.TestMultipleCursors - Test has low fail rate in base branch 0,0% and is not flaky
* dll: ClientClusterTests.TestInvalidCacheNameTriggersIgniteClientException - Test has low fail rate in base branch 0,0% and is not flaky
* dll: ComputeClientDisabledTests.TestComputeThrowsCorrectExceptionWhenNotEnabledOnServer - Test has low fail rate in base branch 0,0% and is not flaky
* dll: ComputeClientTests.TestExecuteJavaTaskWithExceededTaskLimit - Test has low fail rate in base branch 0,0% and is not flaky
* dll: ComputeClientTests.TestExecuteJavaTaskWithUnknownClass - Test has low fail rate in base branch 0,0% and is not flaky
* dll: ComputeClientTests.TestExecuteJavaTaskWithFailedResultDeserializationProducesBinaryObjectException - Test has low fail rate in base branch 0,0% and is not flaky
* dll: ComputeClientTests.TestExecuteJavaTaskWithDotnetOnlyArgClassThrowsCorrectException - Test has low fail rate in base branch 0,0% and is not flaky
* dll: ContinuousQueryTest.TestContinuousQueryCountIsLimitedByMaxCursors - Test has low fail rate in base branch 0,0% and is not flaky

{color:#d04437}ZooKeeper (Discovery) 3{color} [[tests 2|https://ci.ignite.apache.org/viewLog.html?buildId=5569339]]
* ZookeeperDiscoverySpiTestSuite3: GridCacheReplicatedNodeRestartSelfTest.testRestart - Test has low fail rate in base branch 0,0% and is not flaky
* ZookeeperDiscoverySpiTestSuite3: GridCacheReplicatedNodeRestartSelfTest.testRestartWithPutFourNodesOneBackupsOffheapEvict - Test has low fail rate in base branch 0,0% and is not flaky

{color:#d04437}Platform .NET{color} [[tests 7|https://ci.ignite.apache.org/viewLog.html?buildId=5569331]]
* exe: ClientClusterTests.TestInvalidCacheNameTriggersIgniteClientException - Test has low fail rate in base branch 0,0% and is not flaky
* exe: CreateCacheTest.TestCreateFromConfiguration - Test has low fail rate in base branch 0,0% and is not flaky
* exe: CreateCacheTest.TestCreateFromTemplate - Test has low fail rate in base branch 0,0% and is not flaky
* exe: ScanQueryTest.TestExceptionInFilter - Test has low fail rate in base branch 0,0% and is not flaky
* exe: ScanQueryTest.TestMultipleCursors - Test has low fail rate in base branch 0,0% and is not flaky
* exe: ComputeClientDisabledTests.TestComputeThrowsCorrectExceptionWhenNotEnabledOnServer - Test has low fail rate in base branch 0,0% and is not flaky
* exe: ContinuousQueryTest.TestContinuousQueryCountIsLimitedByMaxCursors - Test has low fail rate in base branch 0,0% and is not flaky

{color:#d04437}Cache 4{color} [[tests 1|https://ci.ignite.apache.org/viewLog.html?buildId=5569313]]
* IgniteCacheTestSuite4: IgniteCacheInvokeReadThroughTest.testInvokeReadThroughAtomic2 - Test has low fail rate in base branch 0,0% and is not flaky

{panel}
{panel:title=Branch: [pull/8195/head] Base: [master] : New Tests (1)|borderStyle=dashed|borderColor=#ccc|titleBGColor=#D6F7C1}
{color:#00008b}Thin Client: Java{color} [[tests 1|https://ci.ignite.apache.org/viewLog.html?buildId=5569270]]
* {color:#013220}ClientTestSuite: IgniteBinaryTest.testBinaryWithNotGenericInterceptor - PASSED{color}

{panel}
[TeamCity *--&gt; Run :: All* Results|https://ci.ignite.apache.org/viewLog.html?buildId=5569366&amp;buildTypeId=IgniteTests24Java8_RunAll]

> Add possibility to obtain full stack trace on thin client side.
> ---------------------------------------------------------------
>
>                 Key: IGNITE-13389
>                 URL: https://issues.apache.org/jira/browse/IGNITE-13389
>             Project: Ignite
>          Issue Type: Improvement
>          Components: thin client
>    Affects Versions: 2.8.1
>            Reporter: Stanilovsky Evgeny
>            Assignee: Stanilovsky Evgeny
>            Priority: Major
>          Time Spent: 10m
>  Remaining Estimate: 0h
>
> Some server side errors have deeply nested _suppressed_ or _caused by_ errors which contains informative messages for further problem recognition. Possible such mechanism need to be disabled on production environment. Example of non informative error on client side:
> {noformat}
> org.apache.ignite.internal.client.thin.ClientServerError: Ignite failed to process request [1]: Failed to update keys (retry update if possible).: [1] (server status code [1])
> {noformat}
> but full stack holds the root case:
> {noformat}
> Caused by: class org.apache.ignite.internal.processors.cache.CachePartialUpdateCheckedException: Failed to update keys (retry update if possible).: [1]
> 	at org.apache.ignite.internal.processors.cache.distributed.dht.atomic.GridNearAtomicAbstractUpdateFuture.onPrimaryError(GridNearAtomicAbstractUpdateFuture.java:397)
> 	at org.apache.ignite.internal.processors.cache.GridCacheAdapter.put(GridCacheAdapter.java:2567)
> 	at org.apache.ignite.internal.processors.cache.GridCacheAdapter.put(GridCacheAdapter.java:2544)
> 	at org.apache.ignite.internal.processors.cache.IgniteCacheProxyImpl.put(IgniteCacheProxyImpl.java:1316)
> 	... 13 more
> 	Suppressed: class org.apache.ignite.IgniteCheckedException: Failed to update keys.
> 		... 23 more
> 		Suppressed: class org.apache.ignite.IgniteCheckedException: Runtime failure on search row: SearchRow
> 			... 25 more
> 		Caused by: class org.apache.ignite.IgniteCheckedException: org.apache.ignite.internal.binary.BinaryObjectImpl cannot be cast to org.apache.ignite.client.IgniteBinaryTest$ThinBinaryValue <-- here !!!
> 			at org.apache.ignite.internal.processors.cache.GridCacheMapEntry$AtomicCacheUpdateClosure.update(GridCacheMapEntry.java:6379)
> 			... 30 more
> {noformat}
> looks like it would be useful to have additional setting in ThinClientConfiguration configured both as direct setting and through JMX (ClientProcessorMXBean).



--
This message was sent by Atlassian Jira
(v8.3.4#803005)