[jira] [Commented] (IGNITE-11278) SQL: Extract query parsing into separate class

2019-02-10 Thread Vladimir Ozerov (JIRA)


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

Vladimir Ozerov commented on IGNITE-11278:
--

All is OK.

> SQL: Extract query parsing into separate class
> --
>
> Key: IGNITE-11278
> URL: https://issues.apache.org/jira/browse/IGNITE-11278
> Project: Ignite
>  Issue Type: Task
>  Components: sql
>Reporter: Vladimir Ozerov
>Assignee: Vladimir Ozerov
>Priority: Major
> Fix For: 2.8
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> # Introduce separate command types for SELECT, DML and others commands
> # Move parsing logic and query cache to separate class
> # Fix bug with query parallelism when "distributedQueries" flag is modified 
> not for newly created query, but globally.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (IGNITE-11281) Cache (Restarts) 1 flaky tests SEGMENTATION problem

2019-02-10 Thread Stepachev Maksim (JIRA)
Stepachev Maksim created IGNITE-11281:
-

 Summary: Cache (Restarts) 1 flaky tests SEGMENTATION problem
 Key: IGNITE-11281
 URL: https://issues.apache.org/jira/browse/IGNITE-11281
 Project: Ignite
  Issue Type: Test
Reporter: Stepachev Maksim
Assignee: Stepachev Maksim
 Fix For: 2.8


The cache restarts suite has interrupted with fail. One of the reason is:
{code:java}
Stopping local node on Ignite failure: [failureCtx=FailureContext 
[type=SEGMENTATION, err=null]]{code}
It happens because the suite has the property: 
System.setProperty(IgniteSystemProperties.IGNITE_ENABLE_FORCIBLE_NODE_KILL, 
"true"); 

There isn't a reason for it in this test.

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (IGNITE-11281) Cache (Restarts) 1 flaky tests SEGMENTATION problem

2019-02-10 Thread Stepachev Maksim (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-11281?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Stepachev Maksim resolved IGNITE-11281.
---
Resolution: Duplicate

> Cache (Restarts) 1 flaky tests SEGMENTATION problem
> ---
>
> Key: IGNITE-11281
> URL: https://issues.apache.org/jira/browse/IGNITE-11281
> Project: Ignite
>  Issue Type: Test
>Reporter: Stepachev Maksim
>Assignee: Stepachev Maksim
>Priority: Major
> Fix For: 2.8
>
>
> The cache restarts suite has interrupted with fail. One of the reason is:
> {code:java}
> Stopping local node on Ignite failure: [failureCtx=FailureContext 
> [type=SEGMENTATION, err=null]]{code}
> It happens because the suite has the property: 
> System.setProperty(IgniteSystemProperties.IGNITE_ENABLE_FORCIBLE_NODE_KILL, 
> "true"); 
> There isn't a reason for it in this test.
>  



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (IGNITE-11136) CacheContinuousQueryAsyncFailoverMvccTxSelfTest::testMultiThreadedFailover wait an hour if something wrong happens

2019-02-10 Thread Stepachev Maksim (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-11136?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Stepachev Maksim resolved IGNITE-11136.
---
Resolution: Fixed

> CacheContinuousQueryAsyncFailoverMvccTxSelfTest::testMultiThreadedFailover 
> wait an hour if something wrong happens
> --
>
> Key: IGNITE-11136
> URL: https://issues.apache.org/jira/browse/IGNITE-11136
> Project: Ignite
>  Issue Type: Improvement
>Reporter: Stepachev Maksim
>Assignee: Stepachev Maksim
>Priority: Major
> Fix For: 2.8
>
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> For example, if test blocked at a getAndPut,  it works one hour.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (IGNITE-11282) NullPointerException if transaction enabled and using byte[] for key/value

2019-02-10 Thread Courtney (JIRA)
Courtney created IGNITE-11282:
-

 Summary: NullPointerException if transaction enabled and using 
byte[] for key/value
 Key: IGNITE-11282
 URL: https://issues.apache.org/jira/browse/IGNITE-11282
 Project: Ignite
  Issue Type: Bug
  Components: cache
Affects Versions: 2.7
Reporter: Courtney
 Attachments: Screen Shot 2019-02-10 at 15.02.19.png

I have debugged this and found the problem is because of hashCode comparison 
failure. You can see in the screenshot below. 
{code:java}
txMap == null ? null : txMap.get(key)
{code}
this will fail to get the entry but they the key is in fact in the map, it's 
the only entry and if a proper array comparison is done e.g. using 
`Arrays.equals` as shown in the eval window then the key would match. !Screen 
Shot 2019-02-10 at 15.02.19.png!

If running without `-ea` then the exception is
{code:java}
java.util.concurrent.CompletionException: java.lang.NullPointerException
at 
java.base/java.util.concurrent.CompletableFuture.encodeThrowable(CompletableFuture.java:331)
at 
java.base/java.util.concurrent.CompletableFuture.completeThrowable(CompletableFuture.java:346)
at 
java.base/java.util.concurrent.CompletableFuture$UniApply.tryFire(CompletableFuture.java:632)
at 
java.base/java.util.concurrent.CompletableFuture.postComplete(CompletableFuture.java:506)
at 
java.base/java.util.concurrent.CompletableFuture.completeExceptionally(CompletableFuture.java:2088)
at 
io.hypi.arc.ignite.ArcIgniteUtils.lambda$asFuture$f0cf812f$1(ArcIgniteUtils.java:21)
at 
org.apache.ignite.internal.util.future.IgniteFutureImpl$InternalFutureListener.apply(IgniteFutureImpl.java:215)
at 
org.apache.ignite.internal.util.future.IgniteFutureImpl$InternalFutureListener.apply(IgniteFutureImpl.java:179)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.notifyListener(GridFutureAdapter.java:385)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.unblock(GridFutureAdapter.java:349)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.unblockAll(GridFutureAdapter.java:337)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.onDone(GridFutureAdapter.java:497)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.onDone(GridFutureAdapter.java:476)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.onDone(GridFutureAdapter.java:464)
at 
org.apache.ignite.internal.util.future.GridFutureChainListener.applyCallback(GridFutureChainListener.java:81)
at 
org.apache.ignite.internal.util.future.GridFutureChainListener.apply(GridFutureChainListener.java:70)
at 
org.apache.ignite.internal.util.future.GridFutureChainListener.apply(GridFutureChainListener.java:30)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.notifyListener(GridFutureAdapter.java:385)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.unblock(GridFutureAdapter.java:349)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.unblockAll(GridFutureAdapter.java:337)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.onDone(GridFutureAdapter.java:497)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.onDone(GridFutureAdapter.java:476)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.onDone(GridFutureAdapter.java:464)
at 
org.apache.ignite.internal.util.future.GridEmbeddedFuture$AsyncListener1.apply(GridEmbeddedFuture.java:300)
at 
org.apache.ignite.internal.util.future.GridEmbeddedFuture$AsyncListener1.apply(GridEmbeddedFuture.java:287)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.notifyListener(GridFutureAdapter.java:385)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.unblock(GridFutureAdapter.java:349)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.unblockAll(GridFutureAdapter.java:337)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.onDone(GridFutureAdapter.java:497)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.onDone(GridFutureAdapter.java:476)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.onDone(GridFutureAdapter.java:464)
at 
org.apache.ignite.internal.util.future.GridFutureChainListener.applyCallback(GridFutureChainListener.java:81)
at 
org.apache.ignite.internal.util.future.GridFutureChainListener.apply(GridFutureChainListener.java:70)
at 
org.apache.ignite.internal.util.future.GridFutureChainListener.apply(GridFutureChainListener.java:30)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.notifyListener(GridFutureAdapter.java:385)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.unblock(GridFutureAdapter.java:349)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.unblockAll(GridFutureAdapter.java:337)
at 
org.apache.ignite.internal.util.future.GridFutureAdapter.onDone(GridFutureAdapter.java:497)
at 
org.apache.ignite.internal.processors.cache.GridCacheFutureAdapter.onDone(GridCacheFutureAdapte

[jira] [Commented] (IGNITE-11149) Update default value for IGNITE_DISABLE_WAL_DURING_REBALANCING in javadoc

2019-02-10 Thread Ignite TC Bot (JIRA)


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

Ignite TC Bot commented on IGNITE-11149:


{panel:title=--> Run :: All: No blockers 
found!|borderStyle=dashed|borderColor=#ccc|titleBGColor=#D6F7C1}{panel}
[TeamCity *--> Run :: All* 
Results|https://ci.ignite.apache.org/viewLog.html?buildId=3046179&buildTypeId=IgniteTests24Java8_RunAll]

> Update default value for IGNITE_DISABLE_WAL_DURING_REBALANCING in javadoc
> -
>
> Key: IGNITE-11149
> URL: https://issues.apache.org/jira/browse/IGNITE-11149
> Project: Ignite
>  Issue Type: Bug
>  Components: documentation
>Reporter: Sergey Antonov
>Assignee: Andrey Kalinin
>Priority: Major
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> After IGNITE-10505 default value of IGNITE_DISABLE_WAL_DURING_REBALANCING was 
> changed from false to true. But javadoc wasn't updated.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Assigned] (IGNITE-11259) Web console: Actualize grid configurator BinaryTypeConfiguration

2019-02-10 Thread Vasiliy Sisko (JIRA)


 [ 
https://issues.apache.org/jira/browse/IGNITE-11259?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vasiliy Sisko reassigned IGNITE-11259:
--

Assignee: Pavel Konstantinov  (was: Vasiliy Sisko)

> Web console: Actualize grid configurator BinaryTypeConfiguration
> 
>
> Key: IGNITE-11259
> URL: https://issues.apache.org/jira/browse/IGNITE-11259
> Project: Ignite
>  Issue Type: Improvement
>  Components: wizards
>Reporter: Vasiliy Sisko
>Assignee: Pavel Konstantinov
>Priority: Major
>
> Result for class: org.apache.ignite.binary.BinaryTypeConfiguration
>   Missed
>     enumValues



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (IGNITE-11259) Web console: Actualize grid configurator BinaryTypeConfiguration

2019-02-10 Thread Vasiliy Sisko (JIRA)


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

Vasiliy Sisko commented on IGNITE-11259:


Actualised configuration of BinaryTypeConfiguration.

> Web console: Actualize grid configurator BinaryTypeConfiguration
> 
>
> Key: IGNITE-11259
> URL: https://issues.apache.org/jira/browse/IGNITE-11259
> Project: Ignite
>  Issue Type: Improvement
>  Components: wizards
>Reporter: Vasiliy Sisko
>Assignee: Vasiliy Sisko
>Priority: Major
>
> Result for class: org.apache.ignite.binary.BinaryTypeConfiguration
>   Missed
>     enumValues



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (IGNITE-11283) Web console: Actualize grid configuration. Check deprecated fields

2019-02-10 Thread Vasiliy Sisko (JIRA)
Vasiliy Sisko created IGNITE-11283:
--

 Summary: Web console: Actualize grid configuration. Check 
deprecated fields
 Key: IGNITE-11283
 URL: https://issues.apache.org/jira/browse/IGNITE-11283
 Project: Ignite
  Issue Type: Improvement
  Components: wizards
Reporter: Vasiliy Sisko
Assignee: Vasiliy Sisko


Result for class: 
org.apache.ignite.cache.affinity.rendezvous.RendezvousAffinityFunction
  Deprecated
    backupFilter

Result for class: org.apache.ignite.configuration.PersistentStoreConfiguration
  Deprecated
    walBufferSize
    writeThrottlingEnabled
    checkpointWriteOrder
    fileIOFactory
    walMode
    walAutoArchiveAfterInactivity

Result for class: org.apache.ignite.configuration.TransactionConfiguration
  Missed
    deadlockTimeout
    useJtaSynchronization
    txTimeoutOnPartitionMapExchange
  Deprecated
    txSerializableEnabled
    txManagerLookupClassName

Result for class: org.apache.ignite.configuration.ConnectorConfiguration
  Deprecated
    sslContextFactory



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Comment Edited] (IGNITE-11233) Ignite Build for Java 11 does not reuse ignite-tools from Build Apache Ignite for some configurations, Compilation error

2019-02-10 Thread Peter Ivanov (JIRA)


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

Peter Ivanov edited comment on IGNITE-11233 at 2/11/19 7:16 AM:


# 
_[Javadoc|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Javadoc&branch_IgniteTests24Java8=ignite-11213]_
 (/) This task requires full compilation: forced JDK 8 
([https://ci.ignite.apache.org/viewLog.html?buildId=3036542]).
 # _[SPI (URI 
Deploy)|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_SpiUriDeploy&branch_IgniteTests24Java8=ignite-11213]_
 (/) Some strange build step with "precompilation" existed: turned off 
([https://ci.ignite.apache.org/viewLog.html?buildId=3036506])
 # 
_[RDD|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Rdd&branch_IgniteTests24Java8=ignite-11213]_
 (x) This suite was setup to run {{test}} instead of {{surefire:test}} goal: 
reconfigured.
 ERROR: [java.lang.NoClassDefFoundError: 
scala/Product$class|https://www.google.com/search?client=safari&rls=en&q=java.lang.NoClassDefFoundError:+scala/Product$class&ie=UTF-8&oe=UTF-8]
 # _[JCache TCK 
1.1|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_JCacheTck11&branch_IgniteTests24Java8=ignite-11213]_
 (/) This suite was setup to run {{test}} instead of {{surefire:test}} goal: 
reconfigured ([https://ci.ignite.apache.org/viewLog.html?buildId=3036528])
 # _[Platform .NET 
(NuGet)*|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_PlatformNetNuGet]_
 (!) One of build's step requires project compilation. [~ptupitsyn] advice is 
needed on how to run {{build.ps1}} script to omit rebuild of project's java 
part.


was (Author: vveider):
# 
_[Javadoc|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Javadoc&branch_IgniteTests24Java8=ignite-11213]_
 (/) This task requires full compilation: forced JDK 8 
([https://ci.ignite.apache.org/viewLog.html?buildId=3036542]).
 # _[SPI (URI 
Deploy)|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_SpiUriDeploy&branch_IgniteTests24Java8=ignite-11213]_
 (/) Some strange build step with "precompilation" existed: turned off 
([https://ci.ignite.apache.org/viewLog.html?buildId=3036506])
 # 
_[RDD|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Rdd&branch_IgniteTests24Java8=ignite-11213]_
 (x) This suite was setup to run {{test}} instead of {{surefire:test}} goal: 
reconfigured.
 ERROR: [java.lang.NoClassDefFoundError: 
scala/Product$class|https://www.google.com/search?client=safari&rls=en&q=java.lang.NoClassDefFoundError:+scala/Product$class&ie=UTF-8&oe=UTF-8]
 # _[JCache TCK 
1.1|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_JCacheTck11&branch_IgniteTests24Java8=ignite-11213]_
 (/) This suite was setup to run {{test}} instead of {{surefire:test}} goal: 
reconfigured ([https://ci.ignite.apache.org/viewLog.html?buildId=3036528])
 # _[Platform .NET 
(NuGet)*|https://ci.ignite.apache.org/admin/editProject.html?init=1&projectId=IgniteTests24Java8&branch_IgniteTests24Java8=ignite-11213]_
 (!) One of build's step requires project compilation. [~ptupitsyn] advice is 
needed on how to run {{build.ps1}} script to omit rebuild of project's java 
part.

> Ignite Build for Java 11 does not reuse ignite-tools from Build Apache Ignite 
> for some configurations, Compilation error
> 
>
> Key: IGNITE-11233
> URL: https://issues.apache.org/jira/browse/IGNITE-11233
> Project: Ignite
>  Issue Type: Bug
>Reporter: Dmitriy Pavlov
>Assignee: Peter Ivanov
>Priority: Critical
>
>  _Javadoc_ [ tests 0 Exit Code , Compilation Error ]  
> https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Javadoc&branch=ignite-11213&tab=buildTypeStatusDiv
>  SPI (URI Deploy) [ tests 0 Exit Code , Compilation Error ]  
> https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_SpiUriDeploy&branch=ignite-11213&tab=buildTypeStatusDiv
>  RDD* [ tests 0 Exit Code , Compilation Error ] 
> https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Rdd&branch=ignite-11213&tab=buildTypeStatusDiv
>  JCache TCK 1.1 [ tests 0 Exit Code , Compilation Error ] 
> https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_JCacheTck11&branch=ignite-11213&tab=buildTypeStatusDiv
>  Platform .NET (NuGet)* [ tests 0 Exit Code ] 
> https://ci.ignite.apache.org/viewLog.html?tab=buildLog&logTab=tree&filter=debug&expand=all&buildId=3007897&_focus=904
> {noformat}
> [21:28:31][Step 1/1] [INFO] Compiling 9 source files to 
> /data/teamcity/work/9198da4c51c3e112/modules/tools

[jira] [Comment Edited] (IGNITE-11233) Ignite Build for Java 11 does not reuse ignite-tools from Build Apache Ignite for some configurations, Compilation error

2019-02-10 Thread Peter Ivanov (JIRA)


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

Peter Ivanov edited comment on IGNITE-11233 at 2/11/19 7:32 AM:


# 
_[Javadoc|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Javadoc&branch_IgniteTests24Java8=ignite-11213]_
 (/) This task requires full compilation: forced JDK 8 
([https://ci.ignite.apache.org/viewLog.html?buildId=3036542]).
 # _[SPI (URI 
Deploy)|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_SpiUriDeploy&branch_IgniteTests24Java8=ignite-11213]_
 (/) Some strange build step with "precompilation" existed: turned off 
([https://ci.ignite.apache.org/viewLog.html?buildId=3036506])
 # 
_[RDD|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Rdd&branch_IgniteTests24Java8=ignite-11213]_
 (x) This suite was setup to run {{test}} instead of {{surefire:test}} goal: 
reconfigured.
 ERROR: [java.lang.NoClassDefFoundError: 
scala/Product$class|https://www.google.com/search?client=safari&rls=en&q=java.lang.NoClassDefFoundError:+scala/Product$class&ie=UTF-8&oe=UTF-8]
 # _[JCache TCK 
1.1|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_JCacheTck11&branch_IgniteTests24Java8=ignite-11213]_
 (/) This suite was setup to run {{test}} instead of {{surefire:test}} goal: 
reconfigured ([https://ci.ignite.apache.org/viewLog.html?buildId=3036528])
 # _[Platform .NET 
(NuGet)*|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_PlatformNetNuGet]_
 -(!) One of build's step requires project compilation. [~ptupitsyn] advice is 
needed on how to run {{build.ps1}} script to omit rebuild of project's java 
part.-
(x) There is fail in running Nuget step 
(https://ci.ignite.apache.org/viewLog.html?tab=buildLog&logTab=tree&filter=debug&expand=all&buildId=3058036&_focus=1504),
 [~ptupitsyn], please advise.


was (Author: vveider):
# 
_[Javadoc|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Javadoc&branch_IgniteTests24Java8=ignite-11213]_
 (/) This task requires full compilation: forced JDK 8 
([https://ci.ignite.apache.org/viewLog.html?buildId=3036542]).
 # _[SPI (URI 
Deploy)|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_SpiUriDeploy&branch_IgniteTests24Java8=ignite-11213]_
 (/) Some strange build step with "precompilation" existed: turned off 
([https://ci.ignite.apache.org/viewLog.html?buildId=3036506])
 # 
_[RDD|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Rdd&branch_IgniteTests24Java8=ignite-11213]_
 (x) This suite was setup to run {{test}} instead of {{surefire:test}} goal: 
reconfigured.
 ERROR: [java.lang.NoClassDefFoundError: 
scala/Product$class|https://www.google.com/search?client=safari&rls=en&q=java.lang.NoClassDefFoundError:+scala/Product$class&ie=UTF-8&oe=UTF-8]
 # _[JCache TCK 
1.1|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_JCacheTck11&branch_IgniteTests24Java8=ignite-11213]_
 (/) This suite was setup to run {{test}} instead of {{surefire:test}} goal: 
reconfigured ([https://ci.ignite.apache.org/viewLog.html?buildId=3036528])
 # _[Platform .NET 
(NuGet)*|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_PlatformNetNuGet]_
 -(!) One of build's step requires project compilation. [~ptupitsyn] advice is 
needed on how to run {{build.ps1}} script to omit rebuild of project's java 
part.-
(x) There is fail in running Nuget step 
(https://ci.ignite.apache.org/viewLog.html?tab=buildLog&logTab=tree&filter=debug&expand=all&buildId=3058036&_focus=1504)

> Ignite Build for Java 11 does not reuse ignite-tools from Build Apache Ignite 
> for some configurations, Compilation error
> 
>
> Key: IGNITE-11233
> URL: https://issues.apache.org/jira/browse/IGNITE-11233
> Project: Ignite
>  Issue Type: Bug
>Reporter: Dmitriy Pavlov
>Assignee: Peter Ivanov
>Priority: Critical
>
>  _Javadoc_ [ tests 0 Exit Code , Compilation Error ]  
> https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Javadoc&branch=ignite-11213&tab=buildTypeStatusDiv
>  SPI (URI Deploy) [ tests 0 Exit Code , Compilation Error ]  
> https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_SpiUriDeploy&branch=ignite-11213&tab=buildTypeStatusDiv
>  RDD* [ tests 0 Exit Code , Compilation Error ] 
> https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Rdd&branch=ignite-11213&tab=buildTypeStatusDiv
>  JCache TCK 1.1 [ tests 0 Exit Code , Compilation Error ] 
> https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_JCacheTck11&branch=ignite

[jira] [Comment Edited] (IGNITE-11233) Ignite Build for Java 11 does not reuse ignite-tools from Build Apache Ignite for some configurations, Compilation error

2019-02-10 Thread Peter Ivanov (JIRA)


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

Peter Ivanov edited comment on IGNITE-11233 at 2/11/19 7:32 AM:


# 
_[Javadoc|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Javadoc&branch_IgniteTests24Java8=ignite-11213]_
 (/) This task requires full compilation: forced JDK 8 
([https://ci.ignite.apache.org/viewLog.html?buildId=3036542]).
 # _[SPI (URI 
Deploy)|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_SpiUriDeploy&branch_IgniteTests24Java8=ignite-11213]_
 (/) Some strange build step with "precompilation" existed: turned off 
([https://ci.ignite.apache.org/viewLog.html?buildId=3036506])
 # 
_[RDD|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Rdd&branch_IgniteTests24Java8=ignite-11213]_
 (x) This suite was setup to run {{test}} instead of {{surefire:test}} goal: 
reconfigured.
 ERROR: [java.lang.NoClassDefFoundError: 
scala/Product$class|https://www.google.com/search?client=safari&rls=en&q=java.lang.NoClassDefFoundError:+scala/Product$class&ie=UTF-8&oe=UTF-8]
 # _[JCache TCK 
1.1|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_JCacheTck11&branch_IgniteTests24Java8=ignite-11213]_
 (/) This suite was setup to run {{test}} instead of {{surefire:test}} goal: 
reconfigured ([https://ci.ignite.apache.org/viewLog.html?buildId=3036528])
 # _[Platform .NET 
(NuGet)*|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_PlatformNetNuGet]_
 -(!) One of build's step requires project compilation. [~ptupitsyn] advice is 
needed on how to run {{build.ps1}} script to omit rebuild of project's java 
part.-
(x) There is fail in running Nuget step 
(https://ci.ignite.apache.org/viewLog.html?tab=buildLog&logTab=tree&filter=debug&expand=all&buildId=3058036&_focus=1504)


was (Author: vveider):
# 
_[Javadoc|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Javadoc&branch_IgniteTests24Java8=ignite-11213]_
 (/) This task requires full compilation: forced JDK 8 
([https://ci.ignite.apache.org/viewLog.html?buildId=3036542]).
 # _[SPI (URI 
Deploy)|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_SpiUriDeploy&branch_IgniteTests24Java8=ignite-11213]_
 (/) Some strange build step with "precompilation" existed: turned off 
([https://ci.ignite.apache.org/viewLog.html?buildId=3036506])
 # 
_[RDD|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Rdd&branch_IgniteTests24Java8=ignite-11213]_
 (x) This suite was setup to run {{test}} instead of {{surefire:test}} goal: 
reconfigured.
 ERROR: [java.lang.NoClassDefFoundError: 
scala/Product$class|https://www.google.com/search?client=safari&rls=en&q=java.lang.NoClassDefFoundError:+scala/Product$class&ie=UTF-8&oe=UTF-8]
 # _[JCache TCK 
1.1|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_JCacheTck11&branch_IgniteTests24Java8=ignite-11213]_
 (/) This suite was setup to run {{test}} instead of {{surefire:test}} goal: 
reconfigured ([https://ci.ignite.apache.org/viewLog.html?buildId=3036528])
 # _[Platform .NET 
(NuGet)*|https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_PlatformNetNuGet]_
 (!) One of build's step requires project compilation. [~ptupitsyn] advice is 
needed on how to run {{build.ps1}} script to omit rebuild of project's java 
part.

> Ignite Build for Java 11 does not reuse ignite-tools from Build Apache Ignite 
> for some configurations, Compilation error
> 
>
> Key: IGNITE-11233
> URL: https://issues.apache.org/jira/browse/IGNITE-11233
> Project: Ignite
>  Issue Type: Bug
>Reporter: Dmitriy Pavlov
>Assignee: Peter Ivanov
>Priority: Critical
>
>  _Javadoc_ [ tests 0 Exit Code , Compilation Error ]  
> https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Javadoc&branch=ignite-11213&tab=buildTypeStatusDiv
>  SPI (URI Deploy) [ tests 0 Exit Code , Compilation Error ]  
> https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_SpiUriDeploy&branch=ignite-11213&tab=buildTypeStatusDiv
>  RDD* [ tests 0 Exit Code , Compilation Error ] 
> https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_Rdd&branch=ignite-11213&tab=buildTypeStatusDiv
>  JCache TCK 1.1 [ tests 0 Exit Code , Compilation Error ] 
> https://ci.ignite.apache.org/viewType.html?buildTypeId=IgniteTests24Java8_JCacheTck11&branch=ignite-11213&tab=buildTypeStatusDiv
>  Platform .NET (NuGet)* [ tests 0 Exit Code ] 
> https://ci.ignite.apache.org/viewLog.html?tab=buildLog&logTab=tree&filter=debug&expand=all&buildId=3007897&_focus=

[jira] [Commented] (IGNITE-11155) Add JVM options analysis to Ignition.start() or handle and comment exceptions

2019-02-10 Thread Ivan Bessonov (JIRA)


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

Ivan Bessonov commented on IGNITE-11155:


[~dpavlov] code looks good, I have no issues with it, please proceed with merge.

> Add JVM options analysis to Ignition.start() or handle and comment exceptions
> -
>
> Key: IGNITE-11155
> URL: https://issues.apache.org/jira/browse/IGNITE-11155
> Project: Ignite
>  Issue Type: Task
>Reporter: Dmitriy Pavlov
>Assignee: Dmitriy Pavlov
>Priority: Major
> Attachments: start-java11.png
>
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> In Ignite examples or using Ignite Embedded mode (using direct 
> Ignition.start() call from a user IDE), may fail with exceptions for JDKs 
> newer than 8.
> It may confuse the user. Instead of just logging an exception it is better to 
> output message with advice on how to fix it. E.g.
> {noformat}
> Please make sure --add-exports=java.base/sun.nio.ch=ALL-UNNAMED is enabled. 
> See 
> https://apacheignite.readme.io/docs/getting-started#section-running-ignite-with-java-9-10-11
>  for more info
> {noformat}
> Modern IDEs like IntelliJ will display the link as a clickable hyperlink and 
> Ignite in embedded mode will show how to set up Application configuration 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)