Re: Apache Ignite 2.7. Last Mile

2018-12-03 Thread Ivan Fedotov
Vyacheslav, thank you for remark. I've tried to launch test on the 2.7
version and it is fine.

I changed priority of the ticket from "Blocker" to "Major" and fix version
to 2.8.



пн, 3 дек. 2018 г. в 13:53, Vladimir Ozerov :

> Confirming. Test never failed in AI 2.7 even though it contains mentioned
> MVCC commit.
>
> On Mon, Dec 3, 2018 at 1:36 PM Vyacheslav Daradur 
> wrote:
>
> > Guys, I checked that `testAtomicOnheapTwoBackupAsyncFullSync` failed
> > in the master (as described Ivan), but it passes in branch ignite-2.7
> > (tag 2.7.0-rc2), so this shouldn't block the release.
> >
> > Ivan, were you able to reproduce this issue in ignite-2.7 branch?
> >
> >
> > On Mon, Dec 3, 2018 at 1:03 PM Ivan Fedotov  wrote:
> > >
> > > Nikolay,
> > >
> > > I think that end-user may face the problem during call
> IgniteCache#invoke
> > > on a cache with registered continious query if cache's configuration is
> > as
> > > in the failed test: [PARTITIONED, ATOMIC, FULL_SYNCH, 2 backups].
> > >
> > > I've found that failure has been introduced by MVCC commit [1]. As I
> > > understand the issue relates to the process of updating metadata, when
> > the
> > > future of binary metadata registration hangs because of an unclear
> > reason.
> > >
> > > I don't know if the issue the blocker, but seems it's regression
> because
> > > the test has been passed on Ignite 2.6
> > >
> > > What do you think?
> > >
> > > [1]
> > >
> >
> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
> > >
> > > пн, 3 дек. 2018 г. в 11:14, Nikolay Izhikov :
> > >
> > > > Ivan, please, clarify.
> > > >
> > > > How your investigation are related to 2.7 release?
> > > > Do you think it's a release blocker?
> > > > If yes, please, describe impact to users and how users can reproduce
> > this
> > > > issue.
> > > >
> > > > пн, 3 дек. 2018 г., 9:30 Ivan Fedotov ivanan...@gmail.com:
> > > >
> > > > > I've created the PR 
> > which
> > > > > includes changes <
> > https://github.com/1vanan/ignite/commits/before-MVCC>
> > > > > just before integration MVCC with Continuous Query and from the
> > TeamCity
> > > > > <
> > > > >
> > > >
> >
> https://ci.ignite.apache.org/viewLog.html?buildId=2434057=buildResultsDiv=IgniteTests24Java8_ContinuousQuery1
> > > > > >
> > > > > it is clear that before this changes the
> > > > > test testAtomicOnheapTwoBackupAsyncFullSync is green.
> > > > >
> > > > > Also Roman Kondakov gave his view on this problem in the comments
> > > > > . Now the
> > problem
> > > > > becomes more understandable, but the root reason is still unclear.
> > > > >
> > > > > May be a few of you have any suggestions why hang of threads on the
> > > > binary
> > > > > metadata registration future appears?
> > > > >
> > > > > пт, 30 нояб. 2018 г. в 13:48, Ivan Fedotov :
> > > > >
> > > > > > Igor, thank you for explanation.
> > > > > >
> > > > > > Now it seems that when the one thread tries to invoke
> > > > > > GridCacheMapEntry#touch, the another one makes
> > > > > > GridCacheProcessor#stopCache. If I am wrong, please feel free to
> > > > correct
> > > > > me.
> > > > > >
> > > > > > But it still does not clear for me why this fail appears after
> > commit
> > > > > > <
> > > > >
> > > >
> >
> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
> > > > >
> > > > > which
> > > > > > is about MVCC. Moreover, NPE appears only with
> > BinaryObjectException,
> > > > and
> > > > > > when the test is green, I can not find NPE in the log.
> > > > > >
> > > > > > Now I tried to run test locally 1000 times on the version before
> > MVCC
> > > > and
> > > > > > could not find error on this concretely case (but it exists the
> > another
> > > > > > one
> > > > > > <
> > > > >
> > > >
> >
> https://github.com/apache/ignite/blob/master/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryOrderingEventTest.java#L426
> > > > >
> > > > > which
> > > > > > is about assertion on received events).
> > > > > >
> > > > > > пт, 30 нояб. 2018 г. в 13:37, Roman Kondakov
> > > >  > > > > >:
> > > > > >
> > > > > >> Nikolay,
> > > > > >>
> > > > > >> I couldn't quickly find the root cause of this problem because
> > I'm not
> > > > > >> an expert in the binary metadata flow. I think community should
> > decide
> > > > > >> whether this is a release blocker or not.
> > > > > >>
> > > > > >>
> > > > > >> --
> > > > > >> Kind Regards
> > > > > >> Roman Kondakov
> > > > > >>
> > > > > >> On 30.11.2018 13:23, Nikolay Izhikov wrote:
> > > > > >> > Hello, Roman.
> > > > > >> >
> > > > > >> > Is this issue blocks the 2.7 release?
> > > > > >> >
> > > > > >> > пт, 30 нояб. 2018 г., 13:19 Roman Kondakov
> > > > kondako...@mail.ru.invalid
> > > > > :
> > > > > >> >
> > > > > >> >> Hi all!
> > > > > >> >>
> > > > > >> >> I've reproduced this problem locally and attached the 

Re: Apache Ignite 2.7. Last Mile

2018-12-03 Thread Vladimir Ozerov
Confirming. Test never failed in AI 2.7 even though it contains mentioned
MVCC commit.

On Mon, Dec 3, 2018 at 1:36 PM Vyacheslav Daradur 
wrote:

> Guys, I checked that `testAtomicOnheapTwoBackupAsyncFullSync` failed
> in the master (as described Ivan), but it passes in branch ignite-2.7
> (tag 2.7.0-rc2), so this shouldn't block the release.
>
> Ivan, were you able to reproduce this issue in ignite-2.7 branch?
>
>
> On Mon, Dec 3, 2018 at 1:03 PM Ivan Fedotov  wrote:
> >
> > Nikolay,
> >
> > I think that end-user may face the problem during call IgniteCache#invoke
> > on a cache with registered continious query if cache's configuration is
> as
> > in the failed test: [PARTITIONED, ATOMIC, FULL_SYNCH, 2 backups].
> >
> > I've found that failure has been introduced by MVCC commit [1]. As I
> > understand the issue relates to the process of updating metadata, when
> the
> > future of binary metadata registration hangs because of an unclear
> reason.
> >
> > I don't know if the issue the blocker, but seems it's regression because
> > the test has been passed on Ignite 2.6
> >
> > What do you think?
> >
> > [1]
> >
> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
> >
> > пн, 3 дек. 2018 г. в 11:14, Nikolay Izhikov :
> >
> > > Ivan, please, clarify.
> > >
> > > How your investigation are related to 2.7 release?
> > > Do you think it's a release blocker?
> > > If yes, please, describe impact to users and how users can reproduce
> this
> > > issue.
> > >
> > > пн, 3 дек. 2018 г., 9:30 Ivan Fedotov ivanan...@gmail.com:
> > >
> > > > I've created the PR 
> which
> > > > includes changes <
> https://github.com/1vanan/ignite/commits/before-MVCC>
> > > > just before integration MVCC with Continuous Query and from the
> TeamCity
> > > > <
> > > >
> > >
> https://ci.ignite.apache.org/viewLog.html?buildId=2434057=buildResultsDiv=IgniteTests24Java8_ContinuousQuery1
> > > > >
> > > > it is clear that before this changes the
> > > > test testAtomicOnheapTwoBackupAsyncFullSync is green.
> > > >
> > > > Also Roman Kondakov gave his view on this problem in the comments
> > > > . Now the
> problem
> > > > becomes more understandable, but the root reason is still unclear.
> > > >
> > > > May be a few of you have any suggestions why hang of threads on the
> > > binary
> > > > metadata registration future appears?
> > > >
> > > > пт, 30 нояб. 2018 г. в 13:48, Ivan Fedotov :
> > > >
> > > > > Igor, thank you for explanation.
> > > > >
> > > > > Now it seems that when the one thread tries to invoke
> > > > > GridCacheMapEntry#touch, the another one makes
> > > > > GridCacheProcessor#stopCache. If I am wrong, please feel free to
> > > correct
> > > > me.
> > > > >
> > > > > But it still does not clear for me why this fail appears after
> commit
> > > > > <
> > > >
> > >
> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
> > > >
> > > > which
> > > > > is about MVCC. Moreover, NPE appears only with
> BinaryObjectException,
> > > and
> > > > > when the test is green, I can not find NPE in the log.
> > > > >
> > > > > Now I tried to run test locally 1000 times on the version before
> MVCC
> > > and
> > > > > could not find error on this concretely case (but it exists the
> another
> > > > > one
> > > > > <
> > > >
> > >
> https://github.com/apache/ignite/blob/master/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryOrderingEventTest.java#L426
> > > >
> > > > which
> > > > > is about assertion on received events).
> > > > >
> > > > > пт, 30 нояб. 2018 г. в 13:37, Roman Kondakov
> > >  > > > >:
> > > > >
> > > > >> Nikolay,
> > > > >>
> > > > >> I couldn't quickly find the root cause of this problem because
> I'm not
> > > > >> an expert in the binary metadata flow. I think community should
> decide
> > > > >> whether this is a release blocker or not.
> > > > >>
> > > > >>
> > > > >> --
> > > > >> Kind Regards
> > > > >> Roman Kondakov
> > > > >>
> > > > >> On 30.11.2018 13:23, Nikolay Izhikov wrote:
> > > > >> > Hello, Roman.
> > > > >> >
> > > > >> > Is this issue blocks the 2.7 release?
> > > > >> >
> > > > >> > пт, 30 нояб. 2018 г., 13:19 Roman Kondakov
> > > kondako...@mail.ru.invalid
> > > > :
> > > > >> >
> > > > >> >> Hi all!
> > > > >> >>
> > > > >> >> I've reproduced this problem locally and attached the log to
> the
> > > > ticket
> > > > >> >> in my comment [1].
> > > > >> >>
> > > > >> >> As Igor noted, NPE there is caused by node stop in the end of
> the
> > > > test.
> > > > >> >> The real problem here seems to be in the binary metadata
> > > registration
> > > > >> flow.
> > > > >> >>
> > > > >> >>
> > > > >> >> [1]
> > > > >> >>
> > > > >> >>
> > > > >>
> > > >
> > >
> 

Re: Apache Ignite 2.7. Last Mile

2018-12-03 Thread Vyacheslav Daradur
Guys, I checked that `testAtomicOnheapTwoBackupAsyncFullSync` failed
in the master (as described Ivan), but it passes in branch ignite-2.7
(tag 2.7.0-rc2), so this shouldn't block the release.

Ivan, were you able to reproduce this issue in ignite-2.7 branch?


On Mon, Dec 3, 2018 at 1:03 PM Ivan Fedotov  wrote:
>
> Nikolay,
>
> I think that end-user may face the problem during call IgniteCache#invoke
> on a cache with registered continious query if cache's configuration is as
> in the failed test: [PARTITIONED, ATOMIC, FULL_SYNCH, 2 backups].
>
> I've found that failure has been introduced by MVCC commit [1]. As I
> understand the issue relates to the process of updating metadata, when the
> future of binary metadata registration hangs because of an unclear reason.
>
> I don't know if the issue the blocker, but seems it's regression because
> the test has been passed on Ignite 2.6
>
> What do you think?
>
> [1]
> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
>
> пн, 3 дек. 2018 г. в 11:14, Nikolay Izhikov :
>
> > Ivan, please, clarify.
> >
> > How your investigation are related to 2.7 release?
> > Do you think it's a release blocker?
> > If yes, please, describe impact to users and how users can reproduce this
> > issue.
> >
> > пн, 3 дек. 2018 г., 9:30 Ivan Fedotov ivanan...@gmail.com:
> >
> > > I've created the PR  which
> > > includes changes 
> > > just before integration MVCC with Continuous Query and from the TeamCity
> > > <
> > >
> > https://ci.ignite.apache.org/viewLog.html?buildId=2434057=buildResultsDiv=IgniteTests24Java8_ContinuousQuery1
> > > >
> > > it is clear that before this changes the
> > > test testAtomicOnheapTwoBackupAsyncFullSync is green.
> > >
> > > Also Roman Kondakov gave his view on this problem in the comments
> > > . Now the problem
> > > becomes more understandable, but the root reason is still unclear.
> > >
> > > May be a few of you have any suggestions why hang of threads on the
> > binary
> > > metadata registration future appears?
> > >
> > > пт, 30 нояб. 2018 г. в 13:48, Ivan Fedotov :
> > >
> > > > Igor, thank you for explanation.
> > > >
> > > > Now it seems that when the one thread tries to invoke
> > > > GridCacheMapEntry#touch, the another one makes
> > > > GridCacheProcessor#stopCache. If I am wrong, please feel free to
> > correct
> > > me.
> > > >
> > > > But it still does not clear for me why this fail appears after commit
> > > > <
> > >
> > https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
> > >
> > > which
> > > > is about MVCC. Moreover, NPE appears only with BinaryObjectException,
> > and
> > > > when the test is green, I can not find NPE in the log.
> > > >
> > > > Now I tried to run test locally 1000 times on the version before MVCC
> > and
> > > > could not find error on this concretely case (but it exists the another
> > > > one
> > > > <
> > >
> > https://github.com/apache/ignite/blob/master/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryOrderingEventTest.java#L426
> > >
> > > which
> > > > is about assertion on received events).
> > > >
> > > > пт, 30 нояб. 2018 г. в 13:37, Roman Kondakov
> >  > > >:
> > > >
> > > >> Nikolay,
> > > >>
> > > >> I couldn't quickly find the root cause of this problem because I'm not
> > > >> an expert in the binary metadata flow. I think community should decide
> > > >> whether this is a release blocker or not.
> > > >>
> > > >>
> > > >> --
> > > >> Kind Regards
> > > >> Roman Kondakov
> > > >>
> > > >> On 30.11.2018 13:23, Nikolay Izhikov wrote:
> > > >> > Hello, Roman.
> > > >> >
> > > >> > Is this issue blocks the 2.7 release?
> > > >> >
> > > >> > пт, 30 нояб. 2018 г., 13:19 Roman Kondakov
> > kondako...@mail.ru.invalid
> > > :
> > > >> >
> > > >> >> Hi all!
> > > >> >>
> > > >> >> I've reproduced this problem locally and attached the log to the
> > > ticket
> > > >> >> in my comment [1].
> > > >> >>
> > > >> >> As Igor noted, NPE there is caused by node stop in the end of the
> > > test.
> > > >> >> The real problem here seems to be in the binary metadata
> > registration
> > > >> flow.
> > > >> >>
> > > >> >>
> > > >> >> [1]
> > > >> >>
> > > >> >>
> > > >>
> > >
> > https://issues.apache.org/jira/browse/IGNITE-10376?focusedCommentId=16704510=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-16704510
> > > >> >>
> > > >> >> --
> > > >> >> Kind Regards
> > > >> >> Roman Kondakov
> > > >> >>
> > > >> >> On 30.11.2018 11:56, Seliverstov Igor wrote:
> > > >> >>> Null pointer there due to cache stop. Look at
> > > GridCacheContext#cleanup
> > > >> >>> (GridCacheContext.java:2050)
> > > >> >>> which is called by GridCacheProcessor#stopCache
> > > >> >>> (GridCacheProcessor.java:1372)
> > > >> >>>
> > > >> >>> That's why 

Re: Apache Ignite 2.7. Last Mile

2018-12-03 Thread Ivan Fedotov
Nikolay,

I think that end-user may face the problem during call IgniteCache#invoke
on a cache with registered continious query if cache's configuration is as
in the failed test: [PARTITIONED, ATOMIC, FULL_SYNCH, 2 backups].

I've found that failure has been introduced by MVCC commit [1]. As I
understand the issue relates to the process of updating metadata, when the
future of binary metadata registration hangs because of an unclear reason.

I don't know if the issue the blocker, but seems it's regression because
the test has been passed on Ignite 2.6

What do you think?

[1]
https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8

пн, 3 дек. 2018 г. в 11:14, Nikolay Izhikov :

> Ivan, please, clarify.
>
> How your investigation are related to 2.7 release?
> Do you think it's a release blocker?
> If yes, please, describe impact to users and how users can reproduce this
> issue.
>
> пн, 3 дек. 2018 г., 9:30 Ivan Fedotov ivanan...@gmail.com:
>
> > I've created the PR  which
> > includes changes 
> > just before integration MVCC with Continuous Query and from the TeamCity
> > <
> >
> https://ci.ignite.apache.org/viewLog.html?buildId=2434057=buildResultsDiv=IgniteTests24Java8_ContinuousQuery1
> > >
> > it is clear that before this changes the
> > test testAtomicOnheapTwoBackupAsyncFullSync is green.
> >
> > Also Roman Kondakov gave his view on this problem in the comments
> > . Now the problem
> > becomes more understandable, but the root reason is still unclear.
> >
> > May be a few of you have any suggestions why hang of threads on the
> binary
> > metadata registration future appears?
> >
> > пт, 30 нояб. 2018 г. в 13:48, Ivan Fedotov :
> >
> > > Igor, thank you for explanation.
> > >
> > > Now it seems that when the one thread tries to invoke
> > > GridCacheMapEntry#touch, the another one makes
> > > GridCacheProcessor#stopCache. If I am wrong, please feel free to
> correct
> > me.
> > >
> > > But it still does not clear for me why this fail appears after commit
> > > <
> >
> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
> >
> > which
> > > is about MVCC. Moreover, NPE appears only with BinaryObjectException,
> and
> > > when the test is green, I can not find NPE in the log.
> > >
> > > Now I tried to run test locally 1000 times on the version before MVCC
> and
> > > could not find error on this concretely case (but it exists the another
> > > one
> > > <
> >
> https://github.com/apache/ignite/blob/master/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryOrderingEventTest.java#L426
> >
> > which
> > > is about assertion on received events).
> > >
> > > пт, 30 нояб. 2018 г. в 13:37, Roman Kondakov
>  > >:
> > >
> > >> Nikolay,
> > >>
> > >> I couldn't quickly find the root cause of this problem because I'm not
> > >> an expert in the binary metadata flow. I think community should decide
> > >> whether this is a release blocker or not.
> > >>
> > >>
> > >> --
> > >> Kind Regards
> > >> Roman Kondakov
> > >>
> > >> On 30.11.2018 13:23, Nikolay Izhikov wrote:
> > >> > Hello, Roman.
> > >> >
> > >> > Is this issue blocks the 2.7 release?
> > >> >
> > >> > пт, 30 нояб. 2018 г., 13:19 Roman Kondakov
> kondako...@mail.ru.invalid
> > :
> > >> >
> > >> >> Hi all!
> > >> >>
> > >> >> I've reproduced this problem locally and attached the log to the
> > ticket
> > >> >> in my comment [1].
> > >> >>
> > >> >> As Igor noted, NPE there is caused by node stop in the end of the
> > test.
> > >> >> The real problem here seems to be in the binary metadata
> registration
> > >> flow.
> > >> >>
> > >> >>
> > >> >> [1]
> > >> >>
> > >> >>
> > >>
> >
> https://issues.apache.org/jira/browse/IGNITE-10376?focusedCommentId=16704510=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-16704510
> > >> >>
> > >> >> --
> > >> >> Kind Regards
> > >> >> Roman Kondakov
> > >> >>
> > >> >> On 30.11.2018 11:56, Seliverstov Igor wrote:
> > >> >>> Null pointer there due to cache stop. Look at
> > GridCacheContext#cleanup
> > >> >>> (GridCacheContext.java:2050)
> > >> >>> which is called by GridCacheProcessor#stopCache
> > >> >>> (GridCacheProcessor.java:1372)
> > >> >>>
> > >> >>> That's why at the time GridCacheMapEntry#touch
> > >> >> (GridCacheMapEntry.java:5063)
> > >> >>>invoked there is no eviction manager.
> > >> >>>
> > >> >>> This is a result of "normal" flow because message processing
> doesn't
> > >> >> enter
> > >> >>> cache gate like user API does.
> > >> >>>
> > >> >>> пт, 30 нояб. 2018 г. в 10:26, Nikolay Izhikov <
> nizhi...@apache.org
> > >:
> > >> >>>
> > >>  Ivan. Please, provide a link for a ticket with NPE stack trace
> > >> attached.
> > >> 
> > >>  I've looked at IGNITE-10376 and can't see any attachments.
> > >> 
> 

Re: Apache Ignite 2.7. Last Mile

2018-12-03 Thread Nikolay Izhikov
Ivan, please, clarify.

How your investigation are related to 2.7 release?
Do you think it's a release blocker?
If yes, please, describe impact to users and how users can reproduce this
issue.

пн, 3 дек. 2018 г., 9:30 Ivan Fedotov ivanan...@gmail.com:

> I've created the PR  which
> includes changes 
> just before integration MVCC with Continuous Query and from the TeamCity
> <
> https://ci.ignite.apache.org/viewLog.html?buildId=2434057=buildResultsDiv=IgniteTests24Java8_ContinuousQuery1
> >
> it is clear that before this changes the
> test testAtomicOnheapTwoBackupAsyncFullSync is green.
>
> Also Roman Kondakov gave his view on this problem in the comments
> . Now the problem
> becomes more understandable, but the root reason is still unclear.
>
> May be a few of you have any suggestions why hang of threads on the binary
> metadata registration future appears?
>
> пт, 30 нояб. 2018 г. в 13:48, Ivan Fedotov :
>
> > Igor, thank you for explanation.
> >
> > Now it seems that when the one thread tries to invoke
> > GridCacheMapEntry#touch, the another one makes
> > GridCacheProcessor#stopCache. If I am wrong, please feel free to correct
> me.
> >
> > But it still does not clear for me why this fail appears after commit
> > <
> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8>
> which
> > is about MVCC. Moreover, NPE appears only with BinaryObjectException, and
> > when the test is green, I can not find NPE in the log.
> >
> > Now I tried to run test locally 1000 times on the version before MVCC and
> > could not find error on this concretely case (but it exists the another
> > one
> > <
> https://github.com/apache/ignite/blob/master/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/query/continuous/CacheContinuousQueryOrderingEventTest.java#L426>
> which
> > is about assertion on received events).
> >
> > пт, 30 нояб. 2018 г. в 13:37, Roman Kondakov  >:
> >
> >> Nikolay,
> >>
> >> I couldn't quickly find the root cause of this problem because I'm not
> >> an expert in the binary metadata flow. I think community should decide
> >> whether this is a release blocker or not.
> >>
> >>
> >> --
> >> Kind Regards
> >> Roman Kondakov
> >>
> >> On 30.11.2018 13:23, Nikolay Izhikov wrote:
> >> > Hello, Roman.
> >> >
> >> > Is this issue blocks the 2.7 release?
> >> >
> >> > пт, 30 нояб. 2018 г., 13:19 Roman Kondakov kondako...@mail.ru.invalid
> :
> >> >
> >> >> Hi all!
> >> >>
> >> >> I've reproduced this problem locally and attached the log to the
> ticket
> >> >> in my comment [1].
> >> >>
> >> >> As Igor noted, NPE there is caused by node stop in the end of the
> test.
> >> >> The real problem here seems to be in the binary metadata registration
> >> flow.
> >> >>
> >> >>
> >> >> [1]
> >> >>
> >> >>
> >>
> https://issues.apache.org/jira/browse/IGNITE-10376?focusedCommentId=16704510=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-16704510
> >> >>
> >> >> --
> >> >> Kind Regards
> >> >> Roman Kondakov
> >> >>
> >> >> On 30.11.2018 11:56, Seliverstov Igor wrote:
> >> >>> Null pointer there due to cache stop. Look at
> GridCacheContext#cleanup
> >> >>> (GridCacheContext.java:2050)
> >> >>> which is called by GridCacheProcessor#stopCache
> >> >>> (GridCacheProcessor.java:1372)
> >> >>>
> >> >>> That's why at the time GridCacheMapEntry#touch
> >> >> (GridCacheMapEntry.java:5063)
> >> >>>invoked there is no eviction manager.
> >> >>>
> >> >>> This is a result of "normal" flow because message processing doesn't
> >> >> enter
> >> >>> cache gate like user API does.
> >> >>>
> >> >>> пт, 30 нояб. 2018 г. в 10:26, Nikolay Izhikov  >:
> >> >>>
> >>  Ivan. Please, provide a link for a ticket with NPE stack trace
> >> attached.
> >> 
> >>  I've looked at IGNITE-10376 and can't see any attachments.
> >> 
> >>  пт, 30 нояб. 2018 г., 10:14 Ivan Fedotov ivanan...@gmail.com:
> >> 
> >> > Igor,
> >> > NPE is available in a full log, now I also attached it in the
> >> ticket.
> >> >
> >> > IGNITE-7953
> >> > <
> >> >
> >> >>
> >>
> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
> >> > was commited on the 15 October. I could not take a look on the
> >> > testAtomicOnheapTwoBackupAsyncFullSync before this date, because
> the
> >>  oldest
> >> > test in the history on TC dates 12 November.
> >> >
> >> > So, I tested it locally and could not reproduce mentioned error.
> >> >
> >> > чт, 29 нояб. 2018 г. в 20:07, Seliverstov Igor <
> >> gvvinbl...@gmail.com>:
> >> >
> >> >> Ivan,
> >> >>
> >> >> Could you provide a bit more details?
> >> >>
> >> >> I don't see any NPE among all available logs.
> >> >>
> >> >> I don't think the issue is caused by changes in scope of
> 

Re: Apache Ignite 2.7. Last Mile

2018-12-02 Thread Ivan Fedotov
I've created the PR  which
includes changes 
just before integration MVCC with Continuous Query and from the TeamCity

it is clear that before this changes the
test testAtomicOnheapTwoBackupAsyncFullSync is green.

Also Roman Kondakov gave his view on this problem in the comments
. Now the problem
becomes more understandable, but the root reason is still unclear.

May be a few of you have any suggestions why hang of threads on the binary
metadata registration future appears?

пт, 30 нояб. 2018 г. в 13:48, Ivan Fedotov :

> Igor, thank you for explanation.
>
> Now it seems that when the one thread tries to invoke
> GridCacheMapEntry#touch, the another one makes
> GridCacheProcessor#stopCache. If I am wrong, please feel free to correct me.
>
> But it still does not clear for me why this fail appears after commit
> 
>  which
> is about MVCC. Moreover, NPE appears only with BinaryObjectException, and
> when the test is green, I can not find NPE in the log.
>
> Now I tried to run test locally 1000 times on the version before MVCC and
> could not find error on this concretely case (but it exists the another
> one
> 
>  which
> is about assertion on received events).
>
> пт, 30 нояб. 2018 г. в 13:37, Roman Kondakov :
>
>> Nikolay,
>>
>> I couldn't quickly find the root cause of this problem because I'm not
>> an expert in the binary metadata flow. I think community should decide
>> whether this is a release blocker or not.
>>
>>
>> --
>> Kind Regards
>> Roman Kondakov
>>
>> On 30.11.2018 13:23, Nikolay Izhikov wrote:
>> > Hello, Roman.
>> >
>> > Is this issue blocks the 2.7 release?
>> >
>> > пт, 30 нояб. 2018 г., 13:19 Roman Kondakov kondako...@mail.ru.invalid:
>> >
>> >> Hi all!
>> >>
>> >> I've reproduced this problem locally and attached the log to the ticket
>> >> in my comment [1].
>> >>
>> >> As Igor noted, NPE there is caused by node stop in the end of the test.
>> >> The real problem here seems to be in the binary metadata registration
>> flow.
>> >>
>> >>
>> >> [1]
>> >>
>> >>
>> https://issues.apache.org/jira/browse/IGNITE-10376?focusedCommentId=16704510=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-16704510
>> >>
>> >> --
>> >> Kind Regards
>> >> Roman Kondakov
>> >>
>> >> On 30.11.2018 11:56, Seliverstov Igor wrote:
>> >>> Null pointer there due to cache stop. Look at GridCacheContext#cleanup
>> >>> (GridCacheContext.java:2050)
>> >>> which is called by GridCacheProcessor#stopCache
>> >>> (GridCacheProcessor.java:1372)
>> >>>
>> >>> That's why at the time GridCacheMapEntry#touch
>> >> (GridCacheMapEntry.java:5063)
>> >>>invoked there is no eviction manager.
>> >>>
>> >>> This is a result of "normal" flow because message processing doesn't
>> >> enter
>> >>> cache gate like user API does.
>> >>>
>> >>> пт, 30 нояб. 2018 г. в 10:26, Nikolay Izhikov :
>> >>>
>>  Ivan. Please, provide a link for a ticket with NPE stack trace
>> attached.
>> 
>>  I've looked at IGNITE-10376 and can't see any attachments.
>> 
>>  пт, 30 нояб. 2018 г., 10:14 Ivan Fedotov ivanan...@gmail.com:
>> 
>> > Igor,
>> > NPE is available in a full log, now I also attached it in the
>> ticket.
>> >
>> > IGNITE-7953
>> > <
>> >
>> >>
>> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
>> > was commited on the 15 October. I could not take a look on the
>> > testAtomicOnheapTwoBackupAsyncFullSync before this date, because the
>>  oldest
>> > test in the history on TC dates 12 November.
>> >
>> > So, I tested it locally and could not reproduce mentioned error.
>> >
>> > чт, 29 нояб. 2018 г. в 20:07, Seliverstov Igor <
>> gvvinbl...@gmail.com>:
>> >
>> >> Ivan,
>> >>
>> >> Could you provide a bit more details?
>> >>
>> >> I don't see any NPE among all available logs.
>> >>
>> >> I don't think the issue is caused by changes in scope of
>> IGNITE-7953.
>> >> The test fails both before
>> >> <
>> >>
>> >>
>> https://ci.ignite.apache.org/viewLog.html?buildId=2318582=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025
>> >>and after
>> >> <
>> >>
>> >>
>> https://ci.ignite.apache.org/viewLog.html?buildId=2345403=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025
>> >> the
>> >> commit was merged to master with almost the same stack trace.
>> >>
>> >> 

Re: Apache Ignite 2.7. Last Mile

2018-11-30 Thread Ivan Fedotov
Igor, thank you for explanation.

Now it seems that when the one thread tries to invoke
GridCacheMapEntry#touch, the another one makes
GridCacheProcessor#stopCache. If I am wrong, please feel free to correct me.

But it still does not clear for me why this fail appears after commit

which
is about MVCC. Moreover, NPE appears only with BinaryObjectException, and
when the test is green, I can not find NPE in the log.

Now I tried to run test locally 1000 times on the version before MVCC and
could not find error on this concretely case (but it exists the another one

which
is about assertion on received events).

пт, 30 нояб. 2018 г. в 13:37, Roman Kondakov :

> Nikolay,
>
> I couldn't quickly find the root cause of this problem because I'm not
> an expert in the binary metadata flow. I think community should decide
> whether this is a release blocker or not.
>
>
> --
> Kind Regards
> Roman Kondakov
>
> On 30.11.2018 13:23, Nikolay Izhikov wrote:
> > Hello, Roman.
> >
> > Is this issue blocks the 2.7 release?
> >
> > пт, 30 нояб. 2018 г., 13:19 Roman Kondakov kondako...@mail.ru.invalid:
> >
> >> Hi all!
> >>
> >> I've reproduced this problem locally and attached the log to the ticket
> >> in my comment [1].
> >>
> >> As Igor noted, NPE there is caused by node stop in the end of the test.
> >> The real problem here seems to be in the binary metadata registration
> flow.
> >>
> >>
> >> [1]
> >>
> >>
> https://issues.apache.org/jira/browse/IGNITE-10376?focusedCommentId=16704510=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-16704510
> >>
> >> --
> >> Kind Regards
> >> Roman Kondakov
> >>
> >> On 30.11.2018 11:56, Seliverstov Igor wrote:
> >>> Null pointer there due to cache stop. Look at GridCacheContext#cleanup
> >>> (GridCacheContext.java:2050)
> >>> which is called by GridCacheProcessor#stopCache
> >>> (GridCacheProcessor.java:1372)
> >>>
> >>> That's why at the time GridCacheMapEntry#touch
> >> (GridCacheMapEntry.java:5063)
> >>>invoked there is no eviction manager.
> >>>
> >>> This is a result of "normal" flow because message processing doesn't
> >> enter
> >>> cache gate like user API does.
> >>>
> >>> пт, 30 нояб. 2018 г. в 10:26, Nikolay Izhikov :
> >>>
>  Ivan. Please, provide a link for a ticket with NPE stack trace
> attached.
> 
>  I've looked at IGNITE-10376 and can't see any attachments.
> 
>  пт, 30 нояб. 2018 г., 10:14 Ivan Fedotov ivanan...@gmail.com:
> 
> > Igor,
> > NPE is available in a full log, now I also attached it in the ticket.
> >
> > IGNITE-7953
> > <
> >
> >>
> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
> > was commited on the 15 October. I could not take a look on the
> > testAtomicOnheapTwoBackupAsyncFullSync before this date, because the
>  oldest
> > test in the history on TC dates 12 November.
> >
> > So, I tested it locally and could not reproduce mentioned error.
> >
> > чт, 29 нояб. 2018 г. в 20:07, Seliverstov Igor  >:
> >
> >> Ivan,
> >>
> >> Could you provide a bit more details?
> >>
> >> I don't see any NPE among all available logs.
> >>
> >> I don't think the issue is caused by changes in scope of
> IGNITE-7953.
> >> The test fails both before
> >> <
> >>
> >>
> https://ci.ignite.apache.org/viewLog.html?buildId=2318582=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025
> >>and after
> >> <
> >>
> >>
> https://ci.ignite.apache.org/viewLog.html?buildId=2345403=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025
> >> the
> >> commit was merged to master with almost the same stack trace.
> >>
> >> Regards,
> >> Igor
> >>
> >> чт, 29 нояб. 2018 г. в 18:43, Yakov Zhdanov :
> >>
> >>> Vladimir, can you please take a look at
> >>> https://issues.apache.org/jira/browse/IGNITE-10376?
> >>>
> >>> --Yakov
> >>>
> > --
> > Ivan Fedotov.
> >
> > ivanan...@gmail.com
> >
>


-- 
Ivan Fedotov.

ivanan...@gmail.com


Re: Apache Ignite 2.7. Last Mile

2018-11-30 Thread Roman Kondakov

Nikolay,

I couldn't quickly find the root cause of this problem because I'm not 
an expert in the binary metadata flow. I think community should decide 
whether this is a release blocker or not.



--
Kind Regards
Roman Kondakov

On 30.11.2018 13:23, Nikolay Izhikov wrote:

Hello, Roman.

Is this issue blocks the 2.7 release?

пт, 30 нояб. 2018 г., 13:19 Roman Kondakov kondako...@mail.ru.invalid:


Hi all!

I've reproduced this problem locally and attached the log to the ticket
in my comment [1].

As Igor noted, NPE there is caused by node stop in the end of the test.
The real problem here seems to be in the binary metadata registration flow.


[1]

https://issues.apache.org/jira/browse/IGNITE-10376?focusedCommentId=16704510=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-16704510

--
Kind Regards
Roman Kondakov

On 30.11.2018 11:56, Seliverstov Igor wrote:

Null pointer there due to cache stop. Look at GridCacheContext#cleanup
(GridCacheContext.java:2050)
which is called by GridCacheProcessor#stopCache
(GridCacheProcessor.java:1372)

That's why at the time GridCacheMapEntry#touch

(GridCacheMapEntry.java:5063)

   invoked there is no eviction manager.

This is a result of "normal" flow because message processing doesn't

enter

cache gate like user API does.

пт, 30 нояб. 2018 г. в 10:26, Nikolay Izhikov :


Ivan. Please, provide a link for a ticket with NPE stack trace attached.

I've looked at IGNITE-10376 and can't see any attachments.

пт, 30 нояб. 2018 г., 10:14 Ivan Fedotov ivanan...@gmail.com:


Igor,
NPE is available in a full log, now I also attached it in the ticket.

IGNITE-7953
<


https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8

was commited on the 15 October. I could not take a look on the
testAtomicOnheapTwoBackupAsyncFullSync before this date, because the

oldest

test in the history on TC dates 12 November.

So, I tested it locally and could not reproduce mentioned error.

чт, 29 нояб. 2018 г. в 20:07, Seliverstov Igor :


Ivan,

Could you provide a bit more details?

I don't see any NPE among all available logs.

I don't think the issue is caused by changes in scope of IGNITE-7953.
The test fails both before
<


https://ci.ignite.apache.org/viewLog.html?buildId=2318582=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025

   and after
<


https://ci.ignite.apache.org/viewLog.html?buildId=2345403=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025

the
commit was merged to master with almost the same stack trace.

Regards,
Igor

чт, 29 нояб. 2018 г. в 18:43, Yakov Zhdanov :


Vladimir, can you please take a look at
https://issues.apache.org/jira/browse/IGNITE-10376?

--Yakov


--
Ivan Fedotov.

ivanan...@gmail.com



Re: Apache Ignite 2.7. Last Mile

2018-11-30 Thread Nikolay Izhikov
Hello, Roman.

Is this issue blocks the 2.7 release?

пт, 30 нояб. 2018 г., 13:19 Roman Kondakov kondako...@mail.ru.invalid:

> Hi all!
>
> I've reproduced this problem locally and attached the log to the ticket
> in my comment [1].
>
> As Igor noted, NPE there is caused by node stop in the end of the test.
> The real problem here seems to be in the binary metadata registration flow.
>
>
> [1]
>
> https://issues.apache.org/jira/browse/IGNITE-10376?focusedCommentId=16704510=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-16704510
>
> --
> Kind Regards
> Roman Kondakov
>
> On 30.11.2018 11:56, Seliverstov Igor wrote:
> > Null pointer there due to cache stop. Look at GridCacheContext#cleanup
> > (GridCacheContext.java:2050)
> > which is called by GridCacheProcessor#stopCache
> > (GridCacheProcessor.java:1372)
> >
> > That's why at the time GridCacheMapEntry#touch
> (GridCacheMapEntry.java:5063)
> >   invoked there is no eviction manager.
> >
> > This is a result of "normal" flow because message processing doesn't
> enter
> > cache gate like user API does.
> >
> > пт, 30 нояб. 2018 г. в 10:26, Nikolay Izhikov :
> >
> >> Ivan. Please, provide a link for a ticket with NPE stack trace attached.
> >>
> >> I've looked at IGNITE-10376 and can't see any attachments.
> >>
> >> пт, 30 нояб. 2018 г., 10:14 Ivan Fedotov ivanan...@gmail.com:
> >>
> >>> Igor,
> >>> NPE is available in a full log, now I also attached it in the ticket.
> >>>
> >>> IGNITE-7953
> >>> <
> >>>
> >>
> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
> >>> was commited on the 15 October. I could not take a look on the
> >>> testAtomicOnheapTwoBackupAsyncFullSync before this date, because the
> >> oldest
> >>> test in the history on TC dates 12 November.
> >>>
> >>> So, I tested it locally and could not reproduce mentioned error.
> >>>
> >>> чт, 29 нояб. 2018 г. в 20:07, Seliverstov Igor :
> >>>
>  Ivan,
> 
>  Could you provide a bit more details?
> 
>  I don't see any NPE among all available logs.
> 
>  I don't think the issue is caused by changes in scope of IGNITE-7953.
>  The test fails both before
>  <
> 
> >>
> https://ci.ignite.apache.org/viewLog.html?buildId=2318582=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025
>    and after
>  <
> 
> >>
> https://ci.ignite.apache.org/viewLog.html?buildId=2345403=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025
>  the
>  commit was merged to master with almost the same stack trace.
> 
>  Regards,
>  Igor
> 
>  чт, 29 нояб. 2018 г. в 18:43, Yakov Zhdanov :
> 
> > Vladimir, can you please take a look at
> > https://issues.apache.org/jira/browse/IGNITE-10376?
> >
> > --Yakov
> >
> >>>
> >>> --
> >>> Ivan Fedotov.
> >>>
> >>> ivanan...@gmail.com
> >>>
>


Re: Apache Ignite 2.7. Last Mile

2018-11-30 Thread Roman Kondakov

Hi all!

I've reproduced this problem locally and attached the log to the ticket 
in my comment [1].


As Igor noted, NPE there is caused by node stop in the end of the test. 
The real problem here seems to be in the binary metadata registration flow.



[1] 
https://issues.apache.org/jira/browse/IGNITE-10376?focusedCommentId=16704510=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#comment-16704510


--
Kind Regards
Roman Kondakov

On 30.11.2018 11:56, Seliverstov Igor wrote:

Null pointer there due to cache stop. Look at GridCacheContext#cleanup
(GridCacheContext.java:2050)
which is called by GridCacheProcessor#stopCache
(GridCacheProcessor.java:1372)

That's why at the time GridCacheMapEntry#touch (GridCacheMapEntry.java:5063)
  invoked there is no eviction manager.

This is a result of "normal" flow because message processing doesn't enter
cache gate like user API does.

пт, 30 нояб. 2018 г. в 10:26, Nikolay Izhikov :


Ivan. Please, provide a link for a ticket with NPE stack trace attached.

I've looked at IGNITE-10376 and can't see any attachments.

пт, 30 нояб. 2018 г., 10:14 Ivan Fedotov ivanan...@gmail.com:


Igor,
NPE is available in a full log, now I also attached it in the ticket.

IGNITE-7953
<


https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8

was commited on the 15 October. I could not take a look on the
testAtomicOnheapTwoBackupAsyncFullSync before this date, because the

oldest

test in the history on TC dates 12 November.

So, I tested it locally and could not reproduce mentioned error.

чт, 29 нояб. 2018 г. в 20:07, Seliverstov Igor :


Ivan,

Could you provide a bit more details?

I don't see any NPE among all available logs.

I don't think the issue is caused by changes in scope of IGNITE-7953.
The test fails both before
<


https://ci.ignite.apache.org/viewLog.html?buildId=2318582=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025

  and after
<


https://ci.ignite.apache.org/viewLog.html?buildId=2345403=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025

the
commit was merged to master with almost the same stack trace.

Regards,
Igor

чт, 29 нояб. 2018 г. в 18:43, Yakov Zhdanov :


Vladimir, can you please take a look at
https://issues.apache.org/jira/browse/IGNITE-10376?

--Yakov



--
Ivan Fedotov.

ivanan...@gmail.com



Re: Apache Ignite 2.7. Last Mile

2018-11-30 Thread Seliverstov Igor
Null pointer there due to cache stop. Look at GridCacheContext#cleanup
(GridCacheContext.java:2050)
which is called by GridCacheProcessor#stopCache
(GridCacheProcessor.java:1372)

That's why at the time GridCacheMapEntry#touch (GridCacheMapEntry.java:5063)
 invoked there is no eviction manager.

This is a result of "normal" flow because message processing doesn't enter
cache gate like user API does.

пт, 30 нояб. 2018 г. в 10:26, Nikolay Izhikov :

> Ivan. Please, provide a link for a ticket with NPE stack trace attached.
>
> I've looked at IGNITE-10376 and can't see any attachments.
>
> пт, 30 нояб. 2018 г., 10:14 Ivan Fedotov ivanan...@gmail.com:
>
> > Igor,
> > NPE is available in a full log, now I also attached it in the ticket.
> >
> > IGNITE-7953
> > <
> >
> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
> > >
> > was commited on the 15 October. I could not take a look on the
> > testAtomicOnheapTwoBackupAsyncFullSync before this date, because the
> oldest
> > test in the history on TC dates 12 November.
> >
> > So, I tested it locally and could not reproduce mentioned error.
> >
> > чт, 29 нояб. 2018 г. в 20:07, Seliverstov Igor :
> >
> > > Ivan,
> > >
> > > Could you provide a bit more details?
> > >
> > > I don't see any NPE among all available logs.
> > >
> > > I don't think the issue is caused by changes in scope of IGNITE-7953.
> > > The test fails both before
> > > <
> > >
> >
> https://ci.ignite.apache.org/viewLog.html?buildId=2318582=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025
> > > >
> > >  and after
> > > <
> > >
> >
> https://ci.ignite.apache.org/viewLog.html?buildId=2345403=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025
> > > >
> > > the
> > > commit was merged to master with almost the same stack trace.
> > >
> > > Regards,
> > > Igor
> > >
> > > чт, 29 нояб. 2018 г. в 18:43, Yakov Zhdanov :
> > >
> > > > Vladimir, can you please take a look at
> > > > https://issues.apache.org/jira/browse/IGNITE-10376?
> > > >
> > > > --Yakov
> > > >
> > >
> >
> >
> > --
> > Ivan Fedotov.
> >
> > ivanan...@gmail.com
> >
>


Re: Apache Ignite 2.7. Last Mile

2018-11-29 Thread Nikolay Izhikov
Ivan. Please, provide a link for a ticket with NPE stack trace attached.

I've looked at IGNITE-10376 and can't see any attachments.

пт, 30 нояб. 2018 г., 10:14 Ivan Fedotov ivanan...@gmail.com:

> Igor,
> NPE is available in a full log, now I also attached it in the ticket.
>
> IGNITE-7953
> <
> https://github.com/apache/ignite/commit/51a202a4c48220fa919f47147bd4889033cd35a8
> >
> was commited on the 15 October. I could not take a look on the
> testAtomicOnheapTwoBackupAsyncFullSync before this date, because the oldest
> test in the history on TC dates 12 November.
>
> So, I tested it locally and could not reproduce mentioned error.
>
> чт, 29 нояб. 2018 г. в 20:07, Seliverstov Igor :
>
> > Ivan,
> >
> > Could you provide a bit more details?
> >
> > I don't see any NPE among all available logs.
> >
> > I don't think the issue is caused by changes in scope of IGNITE-7953.
> > The test fails both before
> > <
> >
> https://ci.ignite.apache.org/viewLog.html?buildId=2318582=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025
> > >
> >  and after
> > <
> >
> https://ci.ignite.apache.org/viewLog.html?buildId=2345403=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025
> > >
> > the
> > commit was merged to master with almost the same stack trace.
> >
> > Regards,
> > Igor
> >
> > чт, 29 нояб. 2018 г. в 18:43, Yakov Zhdanov :
> >
> > > Vladimir, can you please take a look at
> > > https://issues.apache.org/jira/browse/IGNITE-10376?
> > >
> > > --Yakov
> > >
> >
>
>
> --
> Ivan Fedotov.
>
> ivanan...@gmail.com
>


Re: Apache Ignite 2.7. Last Mile

2018-11-29 Thread Ivan Fedotov
Igor,
NPE is available in a full log, now I also attached it in the ticket.

IGNITE-7953

was commited on the 15 October. I could not take a look on the
testAtomicOnheapTwoBackupAsyncFullSync before this date, because the oldest
test in the history on TC dates 12 November.

So, I tested it locally and could not reproduce mentioned error.

чт, 29 нояб. 2018 г. в 20:07, Seliverstov Igor :

> Ivan,
>
> Could you provide a bit more details?
>
> I don't see any NPE among all available logs.
>
> I don't think the issue is caused by changes in scope of IGNITE-7953.
> The test fails both before
> <
> https://ci.ignite.apache.org/viewLog.html?buildId=2318582=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025
> >
>  and after
> <
> https://ci.ignite.apache.org/viewLog.html?buildId=2345403=buildResultsDiv=IgniteTests24Java8_ContinuousQuery4#testNameId3300126853696550025
> >
> the
> commit was merged to master with almost the same stack trace.
>
> Regards,
> Igor
>
> чт, 29 нояб. 2018 г. в 18:43, Yakov Zhdanov :
>
> > Vladimir, can you please take a look at
> > https://issues.apache.org/jira/browse/IGNITE-10376?
> >
> > --Yakov
> >
>


-- 
Ivan Fedotov.

ivanan...@gmail.com


Re: Apache Ignite 2.7. Last Mile

2018-11-29 Thread Seliverstov Igor
Ivan,

Could you provide a bit more details?

I don't see any NPE among all available logs.

I don't think the issue is caused by changes in scope of IGNITE-7953.
The test fails both before

 and after

the
commit was merged to master with almost the same stack trace.

Regards,
Igor

чт, 29 нояб. 2018 г. в 18:43, Yakov Zhdanov :

> Vladimir, can you please take a look at
> https://issues.apache.org/jira/browse/IGNITE-10376?
>
> --Yakov
>


Re: Apache Ignite 2.7. Last Mile

2018-11-29 Thread Alexey Goncharuk
Denis,

It looks like the failing test is related to existing ATOMIC caches but it
was broken by the MVCC commit, so it is a regression. Let's wait for
Vladimir Ozerov or Igor Seliverstov to comment.

чт, 29 нояб. 2018 г. в 19:32, Nikolay Izhikov :

> Hello, Denis.
>
> Nothing blocks now.
> I preparing vote artifacts right now.
> There are some issues with TC tasks.
> I think I resolve them in a couple of hours.
>
> чт, 29 нояб. 2018 г., 19:30 Denis Magda dma...@apache.org:
>
> > I think that it's not a blocker since MVCC is in the beta state and some
> of
> > the APIs might not work well with it yet.
> >
> > Apart from that, are we done with the stabilization and ready to start
> the
> > vote? What blocks us from that?
> >
> > --
> > Denis
> >
> >
> > On Thu, Nov 29, 2018 at 7:43 AM Yakov Zhdanov 
> wrote:
> >
> > > Vladimir, can you please take a look at
> > > https://issues.apache.org/jira/browse/IGNITE-10376?
> > >
> > > --Yakov
> > >
> >
>


Re: Apache Ignite 2.7. Last Mile

2018-11-29 Thread Nikolay Izhikov
Hello, Denis.

Nothing blocks now.
I preparing vote artifacts right now.
There are some issues with TC tasks.
I think I resolve them in a couple of hours.

чт, 29 нояб. 2018 г., 19:30 Denis Magda dma...@apache.org:

> I think that it's not a blocker since MVCC is in the beta state and some of
> the APIs might not work well with it yet.
>
> Apart from that, are we done with the stabilization and ready to start the
> vote? What blocks us from that?
>
> --
> Denis
>
>
> On Thu, Nov 29, 2018 at 7:43 AM Yakov Zhdanov  wrote:
>
> > Vladimir, can you please take a look at
> > https://issues.apache.org/jira/browse/IGNITE-10376?
> >
> > --Yakov
> >
>


Re: Apache Ignite 2.7. Last Mile

2018-11-29 Thread Denis Magda
I think that it's not a blocker since MVCC is in the beta state and some of
the APIs might not work well with it yet.

Apart from that, are we done with the stabilization and ready to start the
vote? What blocks us from that?

--
Denis


On Thu, Nov 29, 2018 at 7:43 AM Yakov Zhdanov  wrote:

> Vladimir, can you please take a look at
> https://issues.apache.org/jira/browse/IGNITE-10376?
>
> --Yakov
>


Re: Apache Ignite 2.7. Last Mile

2018-11-29 Thread Yakov Zhdanov
Vladimir, can you please take a look at
https://issues.apache.org/jira/browse/IGNITE-10376?

--Yakov


Re: Apache Ignite 2.7. Last Mile

2018-11-29 Thread Ivan Fedotov
Hello Igniters.

During my work at the ticket IGNITE-10376
 I found that it
started to fail after integration Continuous Query with MVCC.

I launched 
CacheContinuousQueryOrderingEventTest.testAtomicOnheapTwoBackupAsyncFullSync
before corresponding commit

and it works correctly more that 500 times. So, I think it is regression
test, because in testAtomicOnheapTwoBackupAsyncFullSync atomic cache mode
is used.

What do you think, how does such problem relate with MVCC?
What could be a possible way to resolve it?

ср, 28 нояб. 2018 г. в 12:19, Vladimir Ozerov :

> Fixed. Thank you for noting it.
>
> On Wed, Nov 28, 2018 at 6:22 AM Alexey Kuznetsov 
> wrote:
>
> > Hi,
> >
> > We found a regression https://issues.apache.org/jira/browse/IGNITE-10432
> >
> > Please take a look.
> >
> > --
> > Alexey Kuznetsov
> >
>


-- 
Ivan Fedotov.

ivanan...@gmail.com


Re: Apache Ignite 2.7. Last Mile

2018-11-28 Thread Vladimir Ozerov
Fixed. Thank you for noting it.

On Wed, Nov 28, 2018 at 6:22 AM Alexey Kuznetsov 
wrote:

> Hi,
>
> We found a regression https://issues.apache.org/jira/browse/IGNITE-10432
>
> Please take a look.
>
> --
> Alexey Kuznetsov
>


Re: Apache Ignite 2.7. Last Mile

2018-11-27 Thread Alexey Kuznetsov
Hi,

We found a regression https://issues.apache.org/jira/browse/IGNITE-10432

Please take a look.

-- 
Alexey Kuznetsov


Re: Apache Ignite 2.7. Last Mile

2018-11-23 Thread Nikolay Izhikov
Hello, Igniters.

Changes regarding to GridToStringBuilder reverted in ignite-2.7 branch:

* IGNITE-8493
* IGNITE-9209
* IGNITE-602

We have 1 ticket for 2.7:

IGNITE-10393: DataStreamer failed with NPE for MVCC caches

which is unassigned.

Who can fix it?

В Вт, 20/11/2018 в 12:38 +0300, Dmitrii Ryabov пишет:
> Yes, revert both.
> 
> вт, 20 нояб. 2018 г., 11:52 Vladimir Ozerov voze...@gridgain.com:
> 
> > +1 for reverting both.
> > 
> > On Tue, Nov 20, 2018 at 9:43 AM Nikolay Izhikov 
> > wrote:
> > 
> > > Hello, Dmitrii.
> > > 
> > > I see 2 tickets for this improvement:
> > > 
> > > IGNITE-602 - [Test] GridToStringBuilder is vulnerable for
> > > StackOverflowError caused by infinite recursion [1]
> > > IGNITE-9209 - GridDistributedTxMapping.toString() returns broken string
> > 
> > [2]
> > > 
> > > Should we revert both commits?
> > > 
> > > [1] https://github.com/apache/ignite/commit/d67c5bf
> > > [2] https://github.com/apache/ignite/commit/9bb9c04
> > > 
> > > 
> > > В Пн, 19/11/2018 в 13:36 +0300, Dmitrii Ryabov пишет:
> > > > I agree to revert and make fix for 2.8. So, we will have more time to
> > > 
> > > test
> > > > it.
> > > > 
> > > > пн, 19 нояб. 2018 г., 10:53 Vladimir Ozerov voze...@gridgain.com:
> > > > 
> > > > > +1 for revert.
> > > > > 
> > > > > On Sun, Nov 18, 2018 at 11:31 PM Dmitriy Pavlov 
> > > > > wrote:
> > > > > 
> > > > > > I personally don't mind.
> > > > > > 
> > > > > > But I would like Dmitry Ryabov and Alexey Goncharuck share their
> > > > > 
> > > > > opinions.
> > > > > > 
> > > > > > вс, 18 нояб. 2018 г., 20:43 Nikolay Izhikov :
> > > > > > 
> > > > > > > Yes, I think so.
> > > > > > > 
> > > > > > > вс, 18 нояб. 2018 г., 20:34 Denis Magda dma...@apache.org:
> > > > > > > 
> > > > > > > > Sounds good to me. Are we starting the vote then?
> > > > > > > > 
> > > > > > > > Denis
> > > > > > > > 
> > > > > > > > 
> > > > > > > > 
> > > > > > > > On Sun, Nov 18, 2018 at 8:25 AM Nikolay Izhikov <
> > > 
> > > nizhi...@apache.org
> > > > > > > > wrote:
> > > > > > > > 
> > > > > > > > > Hello, Igniters.
> > > > > > > > > 
> > > > > > > > > This issue is the only ticket that blocks 2.7 release.
> > > > > > > > > 
> > > > > > > > > I looked at IGNITE-602 PR and GridToStringBuilder.
> > > > > > > > > The code looks complicated for me.
> > > > > > > > > And it's not obvious for me how to fix this issue in a short
> > > 
> > > period
> > > > > > 
> > > > > > of
> > > > > > > > > time.
> > > > > > > > > Especially, code deals with recursion and other things that
> > 
> > can
> > > > > 
> > > > > lead
> > > > > > to
> > > > > > > > > very dangerous errors.
> > > > > > > > > 
> > > > > > > > > Let's revert this patch and fix it in calmly.
> > > > > > > > > Also, we need additional tests for it.
> > > > > > > > > 
> > > > > > > > > В Пт, 16/11/2018 в 17:57 +0300, Dmitrii Ryabov пишет:
> > > > > > > > > > Ok, I'll check the issue.
> > > > > > > > > > пт, 16 нояб. 2018 г. в 17:52, Alexey Goncharuk <
> > > > > > > > > 
> > > > > > > > > alexey.goncha...@gmail.com>:
> > > > > > > > > > > 
> > > > > > > > > > > Igniters,
> > > > > > > > > > > 
> > > > > > > > > > > I've just found that S.toString() implementation is
> > 
> > broken
> > > in
> > > > > > > > > 
> > > > > > > > > ignite-2.7 and master [1]. It leads to a message
> > > > > > > > > > > Wrapper [p=Parent [a=0]Child [b=0, super=]]
> > > > > > > > > > > being formed instead of
> > > > > > > > > > > Wrapper [p=Child [b=0, super=Parent [a=0]]]
> > > > > > > > > > > for classes with inheritance that use
> > > > > 
> > > > > S.toString(SomeClass.class,
> > > > > > > > > this, super.toString()) embedded to some other object.
> > > > > > > > > > > 
> > > > > > > > > > > Dmitrii Ryabov, I've reverted two commits related to
> > > 
> > > IGNITE-602
> > > > > > 
> > > > > > and
> > > > > > > > > IGNITE-9209 tickets locally and it fixes the issue. Can you
> > > 
> > > take a
> > > > > > 
> > > > > > look
> > > > > > > > at
> > > > > > > > > the issue?
> > > > > > > > > > > 
> > > > > > > > > > > I think this regression essentially makes our logs
> > > 
> > > unreadable
> > > > > 
> > > > > in
> > > > > > > some
> > > > > > > > > cases and I would like to get it fixed in ignite-2.7 or
> > 
> > revert
> > > both
> > > > > > > > 
> > > > > > > > commits
> > > > > > > > > from the release.
> > > > > > > > > > > 
> > > > > > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10301
> > > > > > > > > > > 
> > > > > > > > > > > пт, 9 нояб. 2018 г. в 09:22, Nikolay Izhikov <
> > > > > > 
> > > > > > nizhi...@apache.org
> > > > > > > > :
> > > > > > > > > > > > 
> > > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > > 
> > > > > > > > > > > > We still have 5 tickets for 2.7:
> > > > > > > > > > > > 
> > > > > > > > > > > > IGNITE-10052Andrew Mashenkov Restart node during TX
> > > > > 
> > > > > causes
> > > > > > > > > vacuum error.
> > > > > > > > > > > > IGNITE-10170Unassigned   .NET:
> > > > > > 
> > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-11-20 Thread Dmitrii Ryabov
Yes, revert both.

вт, 20 нояб. 2018 г., 11:52 Vladimir Ozerov voze...@gridgain.com:

> +1 for reverting both.
>
> On Tue, Nov 20, 2018 at 9:43 AM Nikolay Izhikov 
> wrote:
>
> > Hello, Dmitrii.
> >
> > I see 2 tickets for this improvement:
> >
> > IGNITE-602 - [Test] GridToStringBuilder is vulnerable for
> > StackOverflowError caused by infinite recursion [1]
> > IGNITE-9209 - GridDistributedTxMapping.toString() returns broken string
> [2]
> >
> > Should we revert both commits?
> >
> > [1] https://github.com/apache/ignite/commit/d67c5bf
> > [2] https://github.com/apache/ignite/commit/9bb9c04
> >
> >
> > В Пн, 19/11/2018 в 13:36 +0300, Dmitrii Ryabov пишет:
> > > I agree to revert and make fix for 2.8. So, we will have more time to
> > test
> > > it.
> > >
> > > пн, 19 нояб. 2018 г., 10:53 Vladimir Ozerov voze...@gridgain.com:
> > >
> > > > +1 for revert.
> > > >
> > > > On Sun, Nov 18, 2018 at 11:31 PM Dmitriy Pavlov 
> > > > wrote:
> > > >
> > > > > I personally don't mind.
> > > > >
> > > > > But I would like Dmitry Ryabov and Alexey Goncharuck share their
> > > >
> > > > opinions.
> > > > >
> > > > > вс, 18 нояб. 2018 г., 20:43 Nikolay Izhikov :
> > > > >
> > > > > > Yes, I think so.
> > > > > >
> > > > > > вс, 18 нояб. 2018 г., 20:34 Denis Magda dma...@apache.org:
> > > > > >
> > > > > > > Sounds good to me. Are we starting the vote then?
> > > > > > >
> > > > > > > Denis
> > > > > > >
> > > > > > >
> > > > > > >
> > > > > > > On Sun, Nov 18, 2018 at 8:25 AM Nikolay Izhikov <
> > nizhi...@apache.org
> > > > > > > wrote:
> > > > > > >
> > > > > > > > Hello, Igniters.
> > > > > > > >
> > > > > > > > This issue is the only ticket that blocks 2.7 release.
> > > > > > > >
> > > > > > > > I looked at IGNITE-602 PR and GridToStringBuilder.
> > > > > > > > The code looks complicated for me.
> > > > > > > > And it's not obvious for me how to fix this issue in a short
> > period
> > > > >
> > > > > of
> > > > > > > > time.
> > > > > > > > Especially, code deals with recursion and other things that
> can
> > > >
> > > > lead
> > > > > to
> > > > > > > > very dangerous errors.
> > > > > > > >
> > > > > > > > Let's revert this patch and fix it in calmly.
> > > > > > > > Also, we need additional tests for it.
> > > > > > > >
> > > > > > > > В Пт, 16/11/2018 в 17:57 +0300, Dmitrii Ryabov пишет:
> > > > > > > > > Ok, I'll check the issue.
> > > > > > > > > пт, 16 нояб. 2018 г. в 17:52, Alexey Goncharuk <
> > > > > > > >
> > > > > > > > alexey.goncha...@gmail.com>:
> > > > > > > > > >
> > > > > > > > > > Igniters,
> > > > > > > > > >
> > > > > > > > > > I've just found that S.toString() implementation is
> broken
> > in
> > > > > > > >
> > > > > > > > ignite-2.7 and master [1]. It leads to a message
> > > > > > > > > > Wrapper [p=Parent [a=0]Child [b=0, super=]]
> > > > > > > > > > being formed instead of
> > > > > > > > > > Wrapper [p=Child [b=0, super=Parent [a=0]]]
> > > > > > > > > > for classes with inheritance that use
> > > >
> > > > S.toString(SomeClass.class,
> > > > > > > > this, super.toString()) embedded to some other object.
> > > > > > > > > >
> > > > > > > > > > Dmitrii Ryabov, I've reverted two commits related to
> > IGNITE-602
> > > > >
> > > > > and
> > > > > > > > IGNITE-9209 tickets locally and it fixes the issue. Can you
> > take a
> > > > >
> > > > > look
> > > > > > > at
> > > > > > > > the issue?
> > > > > > > > > >
> > > > > > > > > > I think this regression essentially makes our logs
> > unreadable
> > > >
> > > > in
> > > > > > some
> > > > > > > > cases and I would like to get it fixed in ignite-2.7 or
> revert
> > both
> > > > > > >
> > > > > > > commits
> > > > > > > > from the release.
> > > > > > > > > >
> > > > > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10301
> > > > > > > > > >
> > > > > > > > > > пт, 9 нояб. 2018 г. в 09:22, Nikolay Izhikov <
> > > > >
> > > > > nizhi...@apache.org
> > > > > > > :
> > > > > > > > > > >
> > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > >
> > > > > > > > > > > We still have 5 tickets for 2.7:
> > > > > > > > > > >
> > > > > > > > > > > IGNITE-10052Andrew Mashenkov Restart node during TX
> > > >
> > > > causes
> > > > > > > > vacuum error.
> > > > > > > > > > > IGNITE-10170Unassigned   .NET:
> > > > >
> > > > > Services.ServicesTestAsync
> > > > > > > > fails
> > > > > > > > > > > IGNITE-10196Maxim Pudov  Remove
> > kafka-clients-*-test
> > > > > > > >
> > > > > > > > dependency
> > > > > > > > > > > IGNITE-10154Andrey Gura  Critical worker
> liveness
> > > >
> > > > check
> > > > > > > > configuration is non-trivial and inconsistent
> > > > > > > > > > > IGNITE-9996 Nikolay Izhikov  Investigate possible
> > > > >
> > > > > performance
> > > > > > > > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > В Чт, 08/11/2018 в 14:25 +0300, Nikolay Izhikov пишет:
> > > > > > > > > > > > I'm OK with this.
> > > > > > > > > > > >
> > 

Re: Apache Ignite 2.7. Last Mile

2018-11-20 Thread Vladimir Ozerov
+1 for reverting both.

On Tue, Nov 20, 2018 at 9:43 AM Nikolay Izhikov  wrote:

> Hello, Dmitrii.
>
> I see 2 tickets for this improvement:
>
> IGNITE-602 - [Test] GridToStringBuilder is vulnerable for
> StackOverflowError caused by infinite recursion [1]
> IGNITE-9209 - GridDistributedTxMapping.toString() returns broken string [2]
>
> Should we revert both commits?
>
> [1] https://github.com/apache/ignite/commit/d67c5bf
> [2] https://github.com/apache/ignite/commit/9bb9c04
>
>
> В Пн, 19/11/2018 в 13:36 +0300, Dmitrii Ryabov пишет:
> > I agree to revert and make fix for 2.8. So, we will have more time to
> test
> > it.
> >
> > пн, 19 нояб. 2018 г., 10:53 Vladimir Ozerov voze...@gridgain.com:
> >
> > > +1 for revert.
> > >
> > > On Sun, Nov 18, 2018 at 11:31 PM Dmitriy Pavlov 
> > > wrote:
> > >
> > > > I personally don't mind.
> > > >
> > > > But I would like Dmitry Ryabov and Alexey Goncharuck share their
> > >
> > > opinions.
> > > >
> > > > вс, 18 нояб. 2018 г., 20:43 Nikolay Izhikov :
> > > >
> > > > > Yes, I think so.
> > > > >
> > > > > вс, 18 нояб. 2018 г., 20:34 Denis Magda dma...@apache.org:
> > > > >
> > > > > > Sounds good to me. Are we starting the vote then?
> > > > > >
> > > > > > Denis
> > > > > >
> > > > > >
> > > > > >
> > > > > > On Sun, Nov 18, 2018 at 8:25 AM Nikolay Izhikov <
> nizhi...@apache.org
> > > > > > wrote:
> > > > > >
> > > > > > > Hello, Igniters.
> > > > > > >
> > > > > > > This issue is the only ticket that blocks 2.7 release.
> > > > > > >
> > > > > > > I looked at IGNITE-602 PR and GridToStringBuilder.
> > > > > > > The code looks complicated for me.
> > > > > > > And it's not obvious for me how to fix this issue in a short
> period
> > > >
> > > > of
> > > > > > > time.
> > > > > > > Especially, code deals with recursion and other things that can
> > >
> > > lead
> > > > to
> > > > > > > very dangerous errors.
> > > > > > >
> > > > > > > Let's revert this patch and fix it in calmly.
> > > > > > > Also, we need additional tests for it.
> > > > > > >
> > > > > > > В Пт, 16/11/2018 в 17:57 +0300, Dmitrii Ryabov пишет:
> > > > > > > > Ok, I'll check the issue.
> > > > > > > > пт, 16 нояб. 2018 г. в 17:52, Alexey Goncharuk <
> > > > > > >
> > > > > > > alexey.goncha...@gmail.com>:
> > > > > > > > >
> > > > > > > > > Igniters,
> > > > > > > > >
> > > > > > > > > I've just found that S.toString() implementation is broken
> in
> > > > > > >
> > > > > > > ignite-2.7 and master [1]. It leads to a message
> > > > > > > > > Wrapper [p=Parent [a=0]Child [b=0, super=]]
> > > > > > > > > being formed instead of
> > > > > > > > > Wrapper [p=Child [b=0, super=Parent [a=0]]]
> > > > > > > > > for classes with inheritance that use
> > >
> > > S.toString(SomeClass.class,
> > > > > > > this, super.toString()) embedded to some other object.
> > > > > > > > >
> > > > > > > > > Dmitrii Ryabov, I've reverted two commits related to
> IGNITE-602
> > > >
> > > > and
> > > > > > > IGNITE-9209 tickets locally and it fixes the issue. Can you
> take a
> > > >
> > > > look
> > > > > > at
> > > > > > > the issue?
> > > > > > > > >
> > > > > > > > > I think this regression essentially makes our logs
> unreadable
> > >
> > > in
> > > > > some
> > > > > > > cases and I would like to get it fixed in ignite-2.7 or revert
> both
> > > > > >
> > > > > > commits
> > > > > > > from the release.
> > > > > > > > >
> > > > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10301
> > > > > > > > >
> > > > > > > > > пт, 9 нояб. 2018 г. в 09:22, Nikolay Izhikov <
> > > >
> > > > nizhi...@apache.org
> > > > > > :
> > > > > > > > > >
> > > > > > > > > > Hello, Igniters.
> > > > > > > > > >
> > > > > > > > > > We still have 5 tickets for 2.7:
> > > > > > > > > >
> > > > > > > > > > IGNITE-10052Andrew Mashenkov Restart node during TX
> > >
> > > causes
> > > > > > > vacuum error.
> > > > > > > > > > IGNITE-10170Unassigned   .NET:
> > > >
> > > > Services.ServicesTestAsync
> > > > > > > fails
> > > > > > > > > > IGNITE-10196Maxim Pudov  Remove
> kafka-clients-*-test
> > > > > > >
> > > > > > > dependency
> > > > > > > > > > IGNITE-10154Andrey Gura  Critical worker liveness
> > >
> > > check
> > > > > > > configuration is non-trivial and inconsistent
> > > > > > > > > > IGNITE-9996 Nikolay Izhikov  Investigate possible
> > > >
> > > > performance
> > > > > > > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > В Чт, 08/11/2018 в 14:25 +0300, Nikolay Izhikov пишет:
> > > > > > > > > > > I'm OK with this.
> > > > > > > > > > >
> > > > > > > > > > > чт, 8 нояб. 2018 г., 13:44 Andrey Gura
> ag...@apache.org:
> > > > > > > > > > > > Long, long way to release :)
> > > > > > > > > > > >
> > > > > > > > > > > > Guys, we have a breaking change in Ignite 2.7 so we
> must
> > > >
> > > > add
> > > > > > > > > > > > IGNITE-10154 [1] fix to the release.
> > > > > > > > > > > >
> > > > > > > > > > > > [1]
> 

Re: Apache Ignite 2.7. Last Mile

2018-11-19 Thread Nikolay Izhikov
Hello, Dmitrii.

I see 2 tickets for this improvement:

IGNITE-602 - [Test] GridToStringBuilder is vulnerable for StackOverflowError 
caused by infinite recursion [1]
IGNITE-9209 - GridDistributedTxMapping.toString() returns broken string [2]

Should we revert both commits?

[1] https://github.com/apache/ignite/commit/d67c5bf
[2] https://github.com/apache/ignite/commit/9bb9c04


В Пн, 19/11/2018 в 13:36 +0300, Dmitrii Ryabov пишет:
> I agree to revert and make fix for 2.8. So, we will have more time to test
> it.
> 
> пн, 19 нояб. 2018 г., 10:53 Vladimir Ozerov voze...@gridgain.com:
> 
> > +1 for revert.
> > 
> > On Sun, Nov 18, 2018 at 11:31 PM Dmitriy Pavlov 
> > wrote:
> > 
> > > I personally don't mind.
> > > 
> > > But I would like Dmitry Ryabov and Alexey Goncharuck share their
> > 
> > opinions.
> > > 
> > > вс, 18 нояб. 2018 г., 20:43 Nikolay Izhikov :
> > > 
> > > > Yes, I think so.
> > > > 
> > > > вс, 18 нояб. 2018 г., 20:34 Denis Magda dma...@apache.org:
> > > > 
> > > > > Sounds good to me. Are we starting the vote then?
> > > > > 
> > > > > Denis
> > > > > 
> > > > > 
> > > > > 
> > > > > On Sun, Nov 18, 2018 at 8:25 AM Nikolay Izhikov  > > > > wrote:
> > > > > 
> > > > > > Hello, Igniters.
> > > > > > 
> > > > > > This issue is the only ticket that blocks 2.7 release.
> > > > > > 
> > > > > > I looked at IGNITE-602 PR and GridToStringBuilder.
> > > > > > The code looks complicated for me.
> > > > > > And it's not obvious for me how to fix this issue in a short period
> > > 
> > > of
> > > > > > time.
> > > > > > Especially, code deals with recursion and other things that can
> > 
> > lead
> > > to
> > > > > > very dangerous errors.
> > > > > > 
> > > > > > Let's revert this patch and fix it in calmly.
> > > > > > Also, we need additional tests for it.
> > > > > > 
> > > > > > В Пт, 16/11/2018 в 17:57 +0300, Dmitrii Ryabov пишет:
> > > > > > > Ok, I'll check the issue.
> > > > > > > пт, 16 нояб. 2018 г. в 17:52, Alexey Goncharuk <
> > > > > > 
> > > > > > alexey.goncha...@gmail.com>:
> > > > > > > > 
> > > > > > > > Igniters,
> > > > > > > > 
> > > > > > > > I've just found that S.toString() implementation is broken in
> > > > > > 
> > > > > > ignite-2.7 and master [1]. It leads to a message
> > > > > > > > Wrapper [p=Parent [a=0]Child [b=0, super=]]
> > > > > > > > being formed instead of
> > > > > > > > Wrapper [p=Child [b=0, super=Parent [a=0]]]
> > > > > > > > for classes with inheritance that use
> > 
> > S.toString(SomeClass.class,
> > > > > > this, super.toString()) embedded to some other object.
> > > > > > > > 
> > > > > > > > Dmitrii Ryabov, I've reverted two commits related to IGNITE-602
> > > 
> > > and
> > > > > > IGNITE-9209 tickets locally and it fixes the issue. Can you take a
> > > 
> > > look
> > > > > at
> > > > > > the issue?
> > > > > > > > 
> > > > > > > > I think this regression essentially makes our logs unreadable
> > 
> > in
> > > > some
> > > > > > cases and I would like to get it fixed in ignite-2.7 or revert both
> > > > > 
> > > > > commits
> > > > > > from the release.
> > > > > > > > 
> > > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10301
> > > > > > > > 
> > > > > > > > пт, 9 нояб. 2018 г. в 09:22, Nikolay Izhikov <
> > > 
> > > nizhi...@apache.org
> > > > > :
> > > > > > > > > 
> > > > > > > > > Hello, Igniters.
> > > > > > > > > 
> > > > > > > > > We still have 5 tickets for 2.7:
> > > > > > > > > 
> > > > > > > > > IGNITE-10052Andrew Mashenkov Restart node during TX
> > 
> > causes
> > > > > > vacuum error.
> > > > > > > > > IGNITE-10170Unassigned   .NET:
> > > 
> > > Services.ServicesTestAsync
> > > > > > fails
> > > > > > > > > IGNITE-10196Maxim Pudov  Remove kafka-clients-*-test
> > > > > > 
> > > > > > dependency
> > > > > > > > > IGNITE-10154Andrey Gura  Critical worker liveness
> > 
> > check
> > > > > > configuration is non-trivial and inconsistent
> > > > > > > > > IGNITE-9996 Nikolay Izhikov  Investigate possible
> > > 
> > > performance
> > > > > > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > В Чт, 08/11/2018 в 14:25 +0300, Nikolay Izhikov пишет:
> > > > > > > > > > I'm OK with this.
> > > > > > > > > > 
> > > > > > > > > > чт, 8 нояб. 2018 г., 13:44 Andrey Gura ag...@apache.org:
> > > > > > > > > > > Long, long way to release :)
> > > > > > > > > > > 
> > > > > > > > > > > Guys, we have a breaking change in Ignite 2.7 so we must
> > > 
> > > add
> > > > > > > > > > > IGNITE-10154 [1] fix to the release.
> > > > > > > > > > > 
> > > > > > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10154
> > > > > > > > > > > On Tue, Nov 6, 2018 at 6:30 PM Igor Sapego <
> > > > 
> > > > isap...@apache.org
> > > > > > 
> > > > > > wrote:
> > > > > > > > > > > > 
> > > > > > > > > > > > Guys,
> > > > > > > > > > > > 
> > > > > > > > > > > > I've found the following issue: [1]. It is quite local
> > > > 
> > > > (only
> > > > > > affects

Re: Apache Ignite 2.7. Last Mile

2018-11-19 Thread Dmitrii Ryabov
I agree to revert and make fix for 2.8. So, we will have more time to test
it.

пн, 19 нояб. 2018 г., 10:53 Vladimir Ozerov voze...@gridgain.com:

> +1 for revert.
>
> On Sun, Nov 18, 2018 at 11:31 PM Dmitriy Pavlov 
> wrote:
>
> > I personally don't mind.
> >
> > But I would like Dmitry Ryabov and Alexey Goncharuck share their
> opinions.
> >
> > вс, 18 нояб. 2018 г., 20:43 Nikolay Izhikov :
> >
> > > Yes, I think so.
> > >
> > > вс, 18 нояб. 2018 г., 20:34 Denis Magda dma...@apache.org:
> > >
> > > > Sounds good to me. Are we starting the vote then?
> > > >
> > > > Denis
> > > >
> > > >
> > > >
> > > > On Sun, Nov 18, 2018 at 8:25 AM Nikolay Izhikov  >
> > > > wrote:
> > > >
> > > > > Hello, Igniters.
> > > > >
> > > > > This issue is the only ticket that blocks 2.7 release.
> > > > >
> > > > > I looked at IGNITE-602 PR and GridToStringBuilder.
> > > > > The code looks complicated for me.
> > > > > And it's not obvious for me how to fix this issue in a short period
> > of
> > > > > time.
> > > > > Especially, code deals with recursion and other things that can
> lead
> > to
> > > > > very dangerous errors.
> > > > >
> > > > > Let's revert this patch and fix it in calmly.
> > > > > Also, we need additional tests for it.
> > > > >
> > > > > В Пт, 16/11/2018 в 17:57 +0300, Dmitrii Ryabov пишет:
> > > > > > Ok, I'll check the issue.
> > > > > > пт, 16 нояб. 2018 г. в 17:52, Alexey Goncharuk <
> > > > > alexey.goncha...@gmail.com>:
> > > > > > >
> > > > > > > Igniters,
> > > > > > >
> > > > > > > I've just found that S.toString() implementation is broken in
> > > > > ignite-2.7 and master [1]. It leads to a message
> > > > > > > Wrapper [p=Parent [a=0]Child [b=0, super=]]
> > > > > > > being formed instead of
> > > > > > > Wrapper [p=Child [b=0, super=Parent [a=0]]]
> > > > > > > for classes with inheritance that use
> S.toString(SomeClass.class,
> > > > > this, super.toString()) embedded to some other object.
> > > > > > >
> > > > > > > Dmitrii Ryabov, I've reverted two commits related to IGNITE-602
> > and
> > > > > IGNITE-9209 tickets locally and it fixes the issue. Can you take a
> > look
> > > > at
> > > > > the issue?
> > > > > > >
> > > > > > > I think this regression essentially makes our logs unreadable
> in
> > > some
> > > > > cases and I would like to get it fixed in ignite-2.7 or revert both
> > > > commits
> > > > > from the release.
> > > > > > >
> > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10301
> > > > > > >
> > > > > > > пт, 9 нояб. 2018 г. в 09:22, Nikolay Izhikov <
> > nizhi...@apache.org
> > > >:
> > > > > > > >
> > > > > > > > Hello, Igniters.
> > > > > > > >
> > > > > > > > We still have 5 tickets for 2.7:
> > > > > > > >
> > > > > > > > IGNITE-10052Andrew Mashenkov Restart node during TX
> causes
> > > > > vacuum error.
> > > > > > > > IGNITE-10170Unassigned   .NET:
> > Services.ServicesTestAsync
> > > > > fails
> > > > > > > > IGNITE-10196Maxim Pudov  Remove kafka-clients-*-test
> > > > > dependency
> > > > > > > > IGNITE-10154Andrey Gura  Critical worker liveness
> check
> > > > > configuration is non-trivial and inconsistent
> > > > > > > > IGNITE-9996 Nikolay Izhikov  Investigate possible
> > performance
> > > > > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > > > > > >
> > > > > > > >
> > > > > > > > В Чт, 08/11/2018 в 14:25 +0300, Nikolay Izhikov пишет:
> > > > > > > > > I'm OK with this.
> > > > > > > > >
> > > > > > > > > чт, 8 нояб. 2018 г., 13:44 Andrey Gura ag...@apache.org:
> > > > > > > > > > Long, long way to release :)
> > > > > > > > > >
> > > > > > > > > > Guys, we have a breaking change in Ignite 2.7 so we must
> > add
> > > > > > > > > > IGNITE-10154 [1] fix to the release.
> > > > > > > > > >
> > > > > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10154
> > > > > > > > > > On Tue, Nov 6, 2018 at 6:30 PM Igor Sapego <
> > > isap...@apache.org
> > > > >
> > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > Guys,
> > > > > > > > > > >
> > > > > > > > > > > I've found the following issue: [1]. It is quite local
> > > (only
> > > > > affects
> > > > > > > > > > > Ignite C++ Linux build system) but quite critical too.
> I
> > > > think
> > > > > it
> > > > > > > > > > > should be included in 2.7.
> > > > > > > > > > >
> > > > > > > > > > > What do you think?
> > > > > > > > > > >
> > > > > > > > > > > [1] -
> https://issues.apache.org/jira/browse/IGNITE-10147
> > > > > > > > > > >
> > > > > > > > > > > Best Regards,
> > > > > > > > > > > Igor
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > On Tue, Oct 30, 2018 at 4:35 PM Вячеслав Коптилин <
> > > > > slava.kopti...@gmail.com>
> > > > > > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > > Hello Nikolay, Igniters,
> > > > > > > > > > > >
> > > > > > > > > > > > It seems that we lost the following commit that
> should
> > be
> > > > > included in
> > > > > > > > > > > > 'ignite-2.7' branch
> > > > > > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-11-18 Thread Vladimir Ozerov
+1 for revert.

On Sun, Nov 18, 2018 at 11:31 PM Dmitriy Pavlov  wrote:

> I personally don't mind.
>
> But I would like Dmitry Ryabov and Alexey Goncharuck share their opinions.
>
> вс, 18 нояб. 2018 г., 20:43 Nikolay Izhikov :
>
> > Yes, I think so.
> >
> > вс, 18 нояб. 2018 г., 20:34 Denis Magda dma...@apache.org:
> >
> > > Sounds good to me. Are we starting the vote then?
> > >
> > > Denis
> > >
> > >
> > >
> > > On Sun, Nov 18, 2018 at 8:25 AM Nikolay Izhikov 
> > > wrote:
> > >
> > > > Hello, Igniters.
> > > >
> > > > This issue is the only ticket that blocks 2.7 release.
> > > >
> > > > I looked at IGNITE-602 PR and GridToStringBuilder.
> > > > The code looks complicated for me.
> > > > And it's not obvious for me how to fix this issue in a short period
> of
> > > > time.
> > > > Especially, code deals with recursion and other things that can lead
> to
> > > > very dangerous errors.
> > > >
> > > > Let's revert this patch and fix it in calmly.
> > > > Also, we need additional tests for it.
> > > >
> > > > В Пт, 16/11/2018 в 17:57 +0300, Dmitrii Ryabov пишет:
> > > > > Ok, I'll check the issue.
> > > > > пт, 16 нояб. 2018 г. в 17:52, Alexey Goncharuk <
> > > > alexey.goncha...@gmail.com>:
> > > > > >
> > > > > > Igniters,
> > > > > >
> > > > > > I've just found that S.toString() implementation is broken in
> > > > ignite-2.7 and master [1]. It leads to a message
> > > > > > Wrapper [p=Parent [a=0]Child [b=0, super=]]
> > > > > > being formed instead of
> > > > > > Wrapper [p=Child [b=0, super=Parent [a=0]]]
> > > > > > for classes with inheritance that use S.toString(SomeClass.class,
> > > > this, super.toString()) embedded to some other object.
> > > > > >
> > > > > > Dmitrii Ryabov, I've reverted two commits related to IGNITE-602
> and
> > > > IGNITE-9209 tickets locally and it fixes the issue. Can you take a
> look
> > > at
> > > > the issue?
> > > > > >
> > > > > > I think this regression essentially makes our logs unreadable in
> > some
> > > > cases and I would like to get it fixed in ignite-2.7 or revert both
> > > commits
> > > > from the release.
> > > > > >
> > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10301
> > > > > >
> > > > > > пт, 9 нояб. 2018 г. в 09:22, Nikolay Izhikov <
> nizhi...@apache.org
> > >:
> > > > > > >
> > > > > > > Hello, Igniters.
> > > > > > >
> > > > > > > We still have 5 tickets for 2.7:
> > > > > > >
> > > > > > > IGNITE-10052Andrew Mashenkov Restart node during TX causes
> > > > vacuum error.
> > > > > > > IGNITE-10170Unassigned   .NET:
> Services.ServicesTestAsync
> > > > fails
> > > > > > > IGNITE-10196Maxim Pudov  Remove kafka-clients-*-test
> > > > dependency
> > > > > > > IGNITE-10154Andrey Gura  Critical worker liveness check
> > > > configuration is non-trivial and inconsistent
> > > > > > > IGNITE-9996 Nikolay Izhikov  Investigate possible
> performance
> > > > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > > > > >
> > > > > > >
> > > > > > > В Чт, 08/11/2018 в 14:25 +0300, Nikolay Izhikov пишет:
> > > > > > > > I'm OK with this.
> > > > > > > >
> > > > > > > > чт, 8 нояб. 2018 г., 13:44 Andrey Gura ag...@apache.org:
> > > > > > > > > Long, long way to release :)
> > > > > > > > >
> > > > > > > > > Guys, we have a breaking change in Ignite 2.7 so we must
> add
> > > > > > > > > IGNITE-10154 [1] fix to the release.
> > > > > > > > >
> > > > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10154
> > > > > > > > > On Tue, Nov 6, 2018 at 6:30 PM Igor Sapego <
> > isap...@apache.org
> > > >
> > > > wrote:
> > > > > > > > > >
> > > > > > > > > > Guys,
> > > > > > > > > >
> > > > > > > > > > I've found the following issue: [1]. It is quite local
> > (only
> > > > affects
> > > > > > > > > > Ignite C++ Linux build system) but quite critical too. I
> > > think
> > > > it
> > > > > > > > > > should be included in 2.7.
> > > > > > > > > >
> > > > > > > > > > What do you think?
> > > > > > > > > >
> > > > > > > > > > [1] - https://issues.apache.org/jira/browse/IGNITE-10147
> > > > > > > > > >
> > > > > > > > > > Best Regards,
> > > > > > > > > > Igor
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > On Tue, Oct 30, 2018 at 4:35 PM Вячеслав Коптилин <
> > > > slava.kopti...@gmail.com>
> > > > > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > > Hello Nikolay, Igniters,
> > > > > > > > > > >
> > > > > > > > > > > It seems that we lost the following commit that should
> be
> > > > included in
> > > > > > > > > > > 'ignite-2.7' branch
> > > > > > > > > > > (It looks like the change was not accidentally
> > > cherry-picked
> > > > from 'master'
> > > > > > > > > > > to 'ignite-2.7')
> > > > > > > > > > >  -
> > > > > > > > > > >
> > > > > > > > > > >
> > > >
> > >
> >
> https://github.com/apache/ignite/commit/6e0ff06f8e309657a16c94da605348d9c3b804ad
> > > > > > > > > > >
> > > > > > > > > > > The most important part is the change introduced into
> > > > GridDhtAtomicCache,
> > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-11-18 Thread Dmitriy Pavlov
I personally don't mind.

But I would like Dmitry Ryabov and Alexey Goncharuck share their opinions.

вс, 18 нояб. 2018 г., 20:43 Nikolay Izhikov :

> Yes, I think so.
>
> вс, 18 нояб. 2018 г., 20:34 Denis Magda dma...@apache.org:
>
> > Sounds good to me. Are we starting the vote then?
> >
> > Denis
> >
> >
> >
> > On Sun, Nov 18, 2018 at 8:25 AM Nikolay Izhikov 
> > wrote:
> >
> > > Hello, Igniters.
> > >
> > > This issue is the only ticket that blocks 2.7 release.
> > >
> > > I looked at IGNITE-602 PR and GridToStringBuilder.
> > > The code looks complicated for me.
> > > And it's not obvious for me how to fix this issue in a short period of
> > > time.
> > > Especially, code deals with recursion and other things that can lead to
> > > very dangerous errors.
> > >
> > > Let's revert this patch and fix it in calmly.
> > > Also, we need additional tests for it.
> > >
> > > В Пт, 16/11/2018 в 17:57 +0300, Dmitrii Ryabov пишет:
> > > > Ok, I'll check the issue.
> > > > пт, 16 нояб. 2018 г. в 17:52, Alexey Goncharuk <
> > > alexey.goncha...@gmail.com>:
> > > > >
> > > > > Igniters,
> > > > >
> > > > > I've just found that S.toString() implementation is broken in
> > > ignite-2.7 and master [1]. It leads to a message
> > > > > Wrapper [p=Parent [a=0]Child [b=0, super=]]
> > > > > being formed instead of
> > > > > Wrapper [p=Child [b=0, super=Parent [a=0]]]
> > > > > for classes with inheritance that use S.toString(SomeClass.class,
> > > this, super.toString()) embedded to some other object.
> > > > >
> > > > > Dmitrii Ryabov, I've reverted two commits related to IGNITE-602 and
> > > IGNITE-9209 tickets locally and it fixes the issue. Can you take a look
> > at
> > > the issue?
> > > > >
> > > > > I think this regression essentially makes our logs unreadable in
> some
> > > cases and I would like to get it fixed in ignite-2.7 or revert both
> > commits
> > > from the release.
> > > > >
> > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10301
> > > > >
> > > > > пт, 9 нояб. 2018 г. в 09:22, Nikolay Izhikov  >:
> > > > > >
> > > > > > Hello, Igniters.
> > > > > >
> > > > > > We still have 5 tickets for 2.7:
> > > > > >
> > > > > > IGNITE-10052Andrew Mashenkov Restart node during TX causes
> > > vacuum error.
> > > > > > IGNITE-10170Unassigned   .NET: Services.ServicesTestAsync
> > > fails
> > > > > > IGNITE-10196Maxim Pudov  Remove kafka-clients-*-test
> > > dependency
> > > > > > IGNITE-10154Andrey Gura  Critical worker liveness check
> > > configuration is non-trivial and inconsistent
> > > > > > IGNITE-9996 Nikolay Izhikov  Investigate possible performance
> > > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > > > >
> > > > > >
> > > > > > В Чт, 08/11/2018 в 14:25 +0300, Nikolay Izhikov пишет:
> > > > > > > I'm OK with this.
> > > > > > >
> > > > > > > чт, 8 нояб. 2018 г., 13:44 Andrey Gura ag...@apache.org:
> > > > > > > > Long, long way to release :)
> > > > > > > >
> > > > > > > > Guys, we have a breaking change in Ignite 2.7 so we must add
> > > > > > > > IGNITE-10154 [1] fix to the release.
> > > > > > > >
> > > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10154
> > > > > > > > On Tue, Nov 6, 2018 at 6:30 PM Igor Sapego <
> isap...@apache.org
> > >
> > > wrote:
> > > > > > > > >
> > > > > > > > > Guys,
> > > > > > > > >
> > > > > > > > > I've found the following issue: [1]. It is quite local
> (only
> > > affects
> > > > > > > > > Ignite C++ Linux build system) but quite critical too. I
> > think
> > > it
> > > > > > > > > should be included in 2.7.
> > > > > > > > >
> > > > > > > > > What do you think?
> > > > > > > > >
> > > > > > > > > [1] - https://issues.apache.org/jira/browse/IGNITE-10147
> > > > > > > > >
> > > > > > > > > Best Regards,
> > > > > > > > > Igor
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > On Tue, Oct 30, 2018 at 4:35 PM Вячеслав Коптилин <
> > > slava.kopti...@gmail.com>
> > > > > > > > > wrote:
> > > > > > > > >
> > > > > > > > > > Hello Nikolay, Igniters,
> > > > > > > > > >
> > > > > > > > > > It seems that we lost the following commit that should be
> > > included in
> > > > > > > > > > 'ignite-2.7' branch
> > > > > > > > > > (It looks like the change was not accidentally
> > cherry-picked
> > > from 'master'
> > > > > > > > > > to 'ignite-2.7')
> > > > > > > > > >  -
> > > > > > > > > >
> > > > > > > > > >
> > >
> >
> https://github.com/apache/ignite/commit/6e0ff06f8e309657a16c94da605348d9c3b804ad
> > > > > > > > > >
> > > > > > > > > > The most important part is the change introduced into
> > > GridDhtAtomicCache,
> > > > > > > > > > the fix prevents NullPointerException during cache
> updates
> > > under some
> > > > > > > > > > circumstances.
> > > > > > > > > > So, I propose including the fix into ignite-2.7, at least
> > > the change of
> > > > > > > > > > GridDhtAtomicCache.
> > > > > > > > > >
> > > > > > > > > > Thanks,
> > > > > > > > > > Slava.
> > > > > > > > > >
> > > > > > > > > > пн, 29 

Re: Apache Ignite 2.7. Last Mile

2018-11-18 Thread Nikolay Izhikov
Yes, I think so.

вс, 18 нояб. 2018 г., 20:34 Denis Magda dma...@apache.org:

> Sounds good to me. Are we starting the vote then?
>
> Denis
>
>
>
> On Sun, Nov 18, 2018 at 8:25 AM Nikolay Izhikov 
> wrote:
>
> > Hello, Igniters.
> >
> > This issue is the only ticket that blocks 2.7 release.
> >
> > I looked at IGNITE-602 PR and GridToStringBuilder.
> > The code looks complicated for me.
> > And it's not obvious for me how to fix this issue in a short period of
> > time.
> > Especially, code deals with recursion and other things that can lead to
> > very dangerous errors.
> >
> > Let's revert this patch and fix it in calmly.
> > Also, we need additional tests for it.
> >
> > В Пт, 16/11/2018 в 17:57 +0300, Dmitrii Ryabov пишет:
> > > Ok, I'll check the issue.
> > > пт, 16 нояб. 2018 г. в 17:52, Alexey Goncharuk <
> > alexey.goncha...@gmail.com>:
> > > >
> > > > Igniters,
> > > >
> > > > I've just found that S.toString() implementation is broken in
> > ignite-2.7 and master [1]. It leads to a message
> > > > Wrapper [p=Parent [a=0]Child [b=0, super=]]
> > > > being formed instead of
> > > > Wrapper [p=Child [b=0, super=Parent [a=0]]]
> > > > for classes with inheritance that use S.toString(SomeClass.class,
> > this, super.toString()) embedded to some other object.
> > > >
> > > > Dmitrii Ryabov, I've reverted two commits related to IGNITE-602 and
> > IGNITE-9209 tickets locally and it fixes the issue. Can you take a look
> at
> > the issue?
> > > >
> > > > I think this regression essentially makes our logs unreadable in some
> > cases and I would like to get it fixed in ignite-2.7 or revert both
> commits
> > from the release.
> > > >
> > > > [1] https://issues.apache.org/jira/browse/IGNITE-10301
> > > >
> > > > пт, 9 нояб. 2018 г. в 09:22, Nikolay Izhikov :
> > > > >
> > > > > Hello, Igniters.
> > > > >
> > > > > We still have 5 tickets for 2.7:
> > > > >
> > > > > IGNITE-10052Andrew Mashenkov Restart node during TX causes
> > vacuum error.
> > > > > IGNITE-10170Unassigned   .NET: Services.ServicesTestAsync
> > fails
> > > > > IGNITE-10196Maxim Pudov  Remove kafka-clients-*-test
> > dependency
> > > > > IGNITE-10154Andrey Gura  Critical worker liveness check
> > configuration is non-trivial and inconsistent
> > > > > IGNITE-9996 Nikolay Izhikov  Investigate possible performance
> > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > > >
> > > > >
> > > > > В Чт, 08/11/2018 в 14:25 +0300, Nikolay Izhikov пишет:
> > > > > > I'm OK with this.
> > > > > >
> > > > > > чт, 8 нояб. 2018 г., 13:44 Andrey Gura ag...@apache.org:
> > > > > > > Long, long way to release :)
> > > > > > >
> > > > > > > Guys, we have a breaking change in Ignite 2.7 so we must add
> > > > > > > IGNITE-10154 [1] fix to the release.
> > > > > > >
> > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10154
> > > > > > > On Tue, Nov 6, 2018 at 6:30 PM Igor Sapego  >
> > wrote:
> > > > > > > >
> > > > > > > > Guys,
> > > > > > > >
> > > > > > > > I've found the following issue: [1]. It is quite local (only
> > affects
> > > > > > > > Ignite C++ Linux build system) but quite critical too. I
> think
> > it
> > > > > > > > should be included in 2.7.
> > > > > > > >
> > > > > > > > What do you think?
> > > > > > > >
> > > > > > > > [1] - https://issues.apache.org/jira/browse/IGNITE-10147
> > > > > > > >
> > > > > > > > Best Regards,
> > > > > > > > Igor
> > > > > > > >
> > > > > > > >
> > > > > > > > On Tue, Oct 30, 2018 at 4:35 PM Вячеслав Коптилин <
> > slava.kopti...@gmail.com>
> > > > > > > > wrote:
> > > > > > > >
> > > > > > > > > Hello Nikolay, Igniters,
> > > > > > > > >
> > > > > > > > > It seems that we lost the following commit that should be
> > included in
> > > > > > > > > 'ignite-2.7' branch
> > > > > > > > > (It looks like the change was not accidentally
> cherry-picked
> > from 'master'
> > > > > > > > > to 'ignite-2.7')
> > > > > > > > >  -
> > > > > > > > >
> > > > > > > > >
> >
> https://github.com/apache/ignite/commit/6e0ff06f8e309657a16c94da605348d9c3b804ad
> > > > > > > > >
> > > > > > > > > The most important part is the change introduced into
> > GridDhtAtomicCache,
> > > > > > > > > the fix prevents NullPointerException during cache updates
> > under some
> > > > > > > > > circumstances.
> > > > > > > > > So, I propose including the fix into ignite-2.7, at least
> > the change of
> > > > > > > > > GridDhtAtomicCache.
> > > > > > > > >
> > > > > > > > > Thanks,
> > > > > > > > > Slava.
> > > > > > > > >
> > > > > > > > > пн, 29 окт. 2018 г. в 11:20, Nikolay Izhikov <
> > nizhi...@apache.org>:
> > > > > > > > >
> > > > > > > > > > Hello, guys.
> > > > > > > > > >
> > > > > > > > > > For today we have 11 tickets mapped to 2.7
> > > > > > > > > >
> > > > > > > > > > IGNITE-10010 Alexey Goncharuk Node halted if second node
> > was stopped,
> > > > > > > > >
> > > > > > > > > then
> > > > > > > > > > cache destroyed, then second node returned
> > > > > > > > > > IGNITE-10015 

Re: Apache Ignite 2.7. Last Mile

2018-11-18 Thread Denis Magda
Sounds good to me. Are we starting the vote then?

Denis



On Sun, Nov 18, 2018 at 8:25 AM Nikolay Izhikov  wrote:

> Hello, Igniters.
>
> This issue is the only ticket that blocks 2.7 release.
>
> I looked at IGNITE-602 PR and GridToStringBuilder.
> The code looks complicated for me.
> And it's not obvious for me how to fix this issue in a short period of
> time.
> Especially, code deals with recursion and other things that can lead to
> very dangerous errors.
>
> Let's revert this patch and fix it in calmly.
> Also, we need additional tests for it.
>
> В Пт, 16/11/2018 в 17:57 +0300, Dmitrii Ryabov пишет:
> > Ok, I'll check the issue.
> > пт, 16 нояб. 2018 г. в 17:52, Alexey Goncharuk <
> alexey.goncha...@gmail.com>:
> > >
> > > Igniters,
> > >
> > > I've just found that S.toString() implementation is broken in
> ignite-2.7 and master [1]. It leads to a message
> > > Wrapper [p=Parent [a=0]Child [b=0, super=]]
> > > being formed instead of
> > > Wrapper [p=Child [b=0, super=Parent [a=0]]]
> > > for classes with inheritance that use S.toString(SomeClass.class,
> this, super.toString()) embedded to some other object.
> > >
> > > Dmitrii Ryabov, I've reverted two commits related to IGNITE-602 and
> IGNITE-9209 tickets locally and it fixes the issue. Can you take a look at
> the issue?
> > >
> > > I think this regression essentially makes our logs unreadable in some
> cases and I would like to get it fixed in ignite-2.7 or revert both commits
> from the release.
> > >
> > > [1] https://issues.apache.org/jira/browse/IGNITE-10301
> > >
> > > пт, 9 нояб. 2018 г. в 09:22, Nikolay Izhikov :
> > > >
> > > > Hello, Igniters.
> > > >
> > > > We still have 5 tickets for 2.7:
> > > >
> > > > IGNITE-10052Andrew Mashenkov Restart node during TX causes
> vacuum error.
> > > > IGNITE-10170Unassigned   .NET: Services.ServicesTestAsync
> fails
> > > > IGNITE-10196Maxim Pudov  Remove kafka-clients-*-test
> dependency
> > > > IGNITE-10154Andrey Gura  Critical worker liveness check
> configuration is non-trivial and inconsistent
> > > > IGNITE-9996 Nikolay Izhikov  Investigate possible performance
> drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > >
> > > >
> > > > В Чт, 08/11/2018 в 14:25 +0300, Nikolay Izhikov пишет:
> > > > > I'm OK with this.
> > > > >
> > > > > чт, 8 нояб. 2018 г., 13:44 Andrey Gura ag...@apache.org:
> > > > > > Long, long way to release :)
> > > > > >
> > > > > > Guys, we have a breaking change in Ignite 2.7 so we must add
> > > > > > IGNITE-10154 [1] fix to the release.
> > > > > >
> > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-10154
> > > > > > On Tue, Nov 6, 2018 at 6:30 PM Igor Sapego 
> wrote:
> > > > > > >
> > > > > > > Guys,
> > > > > > >
> > > > > > > I've found the following issue: [1]. It is quite local (only
> affects
> > > > > > > Ignite C++ Linux build system) but quite critical too. I think
> it
> > > > > > > should be included in 2.7.
> > > > > > >
> > > > > > > What do you think?
> > > > > > >
> > > > > > > [1] - https://issues.apache.org/jira/browse/IGNITE-10147
> > > > > > >
> > > > > > > Best Regards,
> > > > > > > Igor
> > > > > > >
> > > > > > >
> > > > > > > On Tue, Oct 30, 2018 at 4:35 PM Вячеслав Коптилин <
> slava.kopti...@gmail.com>
> > > > > > > wrote:
> > > > > > >
> > > > > > > > Hello Nikolay, Igniters,
> > > > > > > >
> > > > > > > > It seems that we lost the following commit that should be
> included in
> > > > > > > > 'ignite-2.7' branch
> > > > > > > > (It looks like the change was not accidentally cherry-picked
> from 'master'
> > > > > > > > to 'ignite-2.7')
> > > > > > > >  -
> > > > > > > >
> > > > > > > >
> https://github.com/apache/ignite/commit/6e0ff06f8e309657a16c94da605348d9c3b804ad
> > > > > > > >
> > > > > > > > The most important part is the change introduced into
> GridDhtAtomicCache,
> > > > > > > > the fix prevents NullPointerException during cache updates
> under some
> > > > > > > > circumstances.
> > > > > > > > So, I propose including the fix into ignite-2.7, at least
> the change of
> > > > > > > > GridDhtAtomicCache.
> > > > > > > >
> > > > > > > > Thanks,
> > > > > > > > Slava.
> > > > > > > >
> > > > > > > > пн, 29 окт. 2018 г. в 11:20, Nikolay Izhikov <
> nizhi...@apache.org>:
> > > > > > > >
> > > > > > > > > Hello, guys.
> > > > > > > > >
> > > > > > > > > For today we have 11 tickets mapped to 2.7
> > > > > > > > >
> > > > > > > > > IGNITE-10010 Alexey Goncharuk Node halted if second node
> was stopped,
> > > > > > > >
> > > > > > > > then
> > > > > > > > > cache destroyed, then second node returned
> > > > > > > > > IGNITE-10015 Alexey Goncharuk Sporadic JVM crash due to
> restart nodes
> > > > > > > > > IGNITE-10013 Unassigned Node restart may lead to NPE in
> > > > > > > > > GridDhtPartitionsExchangeFuture
> > > > > > > > > IGNITE-9928 Igor Seliverstov MVCC TX: Late affinity
> assignment support.
> > > > > > > > > IGNITE-9985 Igor Seliverstov MVCC TX: fix backup mappings
> > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-11-16 Thread Dmitrii Ryabov
Ok, I'll check the issue.
пт, 16 нояб. 2018 г. в 17:52, Alexey Goncharuk :
>
> Igniters,
>
> I've just found that S.toString() implementation is broken in ignite-2.7 and 
> master [1]. It leads to a message
> Wrapper [p=Parent [a=0]Child [b=0, super=]]
> being formed instead of
> Wrapper [p=Child [b=0, super=Parent [a=0]]]
> for classes with inheritance that use S.toString(SomeClass.class, this, 
> super.toString()) embedded to some other object.
>
> Dmitrii Ryabov, I've reverted two commits related to IGNITE-602 and 
> IGNITE-9209 tickets locally and it fixes the issue. Can you take a look at 
> the issue?
>
> I think this regression essentially makes our logs unreadable in some cases 
> and I would like to get it fixed in ignite-2.7 or revert both commits from 
> the release.
>
> [1] https://issues.apache.org/jira/browse/IGNITE-10301
>
> пт, 9 нояб. 2018 г. в 09:22, Nikolay Izhikov :
>>
>> Hello, Igniters.
>>
>> We still have 5 tickets for 2.7:
>>
>> IGNITE-10052Andrew Mashenkov Restart node during TX causes vacuum error.
>> IGNITE-10170Unassigned   .NET: Services.ServicesTestAsync fails
>> IGNITE-10196Maxim Pudov  Remove kafka-clients-*-test dependency
>> IGNITE-10154Andrey Gura  Critical worker liveness check 
>> configuration is non-trivial and inconsistent
>> IGNITE-9996 Nikolay Izhikov  Investigate possible performance drop in 
>> FSYNC mode for ignite-2.7 compared to ignite-2.6
>>
>>
>> В Чт, 08/11/2018 в 14:25 +0300, Nikolay Izhikov пишет:
>> > I'm OK with this.
>> >
>> > чт, 8 нояб. 2018 г., 13:44 Andrey Gura ag...@apache.org:
>> > > Long, long way to release :)
>> > >
>> > > Guys, we have a breaking change in Ignite 2.7 so we must add
>> > > IGNITE-10154 [1] fix to the release.
>> > >
>> > > [1] https://issues.apache.org/jira/browse/IGNITE-10154
>> > > On Tue, Nov 6, 2018 at 6:30 PM Igor Sapego  wrote:
>> > > >
>> > > > Guys,
>> > > >
>> > > > I've found the following issue: [1]. It is quite local (only affects
>> > > > Ignite C++ Linux build system) but quite critical too. I think it
>> > > > should be included in 2.7.
>> > > >
>> > > > What do you think?
>> > > >
>> > > > [1] - https://issues.apache.org/jira/browse/IGNITE-10147
>> > > >
>> > > > Best Regards,
>> > > > Igor
>> > > >
>> > > >
>> > > > On Tue, Oct 30, 2018 at 4:35 PM Вячеслав Коптилин 
>> > > > 
>> > > > wrote:
>> > > >
>> > > > > Hello Nikolay, Igniters,
>> > > > >
>> > > > > It seems that we lost the following commit that should be included in
>> > > > > 'ignite-2.7' branch
>> > > > > (It looks like the change was not accidentally cherry-picked from 
>> > > > > 'master'
>> > > > > to 'ignite-2.7')
>> > > > >  -
>> > > > >
>> > > > > https://github.com/apache/ignite/commit/6e0ff06f8e309657a16c94da605348d9c3b804ad
>> > > > >
>> > > > > The most important part is the change introduced into 
>> > > > > GridDhtAtomicCache,
>> > > > > the fix prevents NullPointerException during cache updates under some
>> > > > > circumstances.
>> > > > > So, I propose including the fix into ignite-2.7, at least the change 
>> > > > > of
>> > > > > GridDhtAtomicCache.
>> > > > >
>> > > > > Thanks,
>> > > > > Slava.
>> > > > >
>> > > > > пн, 29 окт. 2018 г. в 11:20, Nikolay Izhikov :
>> > > > >
>> > > > > > Hello, guys.
>> > > > > >
>> > > > > > For today we have 11 tickets mapped to 2.7
>> > > > > >
>> > > > > > IGNITE-10010 Alexey Goncharuk Node halted if second node was 
>> > > > > > stopped,
>> > > > > then
>> > > > > > cache destroyed, then second node returned
>> > > > > > IGNITE-10015 Alexey Goncharuk Sporadic JVM crash due to restart 
>> > > > > > nodes
>> > > > > > IGNITE-10013 Unassigned Node restart may lead to NPE in
>> > > > > > GridDhtPartitionsExchangeFuture
>> > > > > > IGNITE-9928 Igor Seliverstov MVCC TX: Late affinity assignment 
>> > > > > > support.
>> > > > > > IGNITE-9985 Igor Seliverstov MVCC TX: fix backup mappings
>> > > > > > IGNITE-10007 Sergey Kozlov Deactivation hangs if an open 
>> > > > > > transaction
>> > > > > exists
>> > > > > > IGNITE-10004 Andrew Mashenkov Parse error leads to leave the 
>> > > > > > transaction
>> > > > > > IGNITE-10024 Ivan Pavlukhin MVCC TX: Stackoverflow during 
>> > > > > > DhtEnlistFuture
>> > > > > > mapping
>> > > > > > IGNITE-9996 Alexey Goncharuk Investigate possible performance drop 
>> > > > > > in
>> > > > > FSYNC
>> > > > > > mode for ignite-2.7 compared to ignite-2.6
>> > > > > > IGNITE-9982 Ivan Pavlukhin SQLLine: can't run with option
>> > > > > > --autoCommit=false or true
>> > > > > > IGNITE-9828 Roman Kondakov MVCC: Continuous query failover.
>> > > > > >
>> > > > > >
>> > > > > > пт, 26 окт. 2018 г. в 9:59, Vladimir Ozerov :
>> > > > > >
>> > > > > > > Hi Nikolay,
>> > > > > > >
>> > > > > > > I do not know. We need to investigate them first. These are all
>> > > > > > > regressions, so decision about impact and urgency should be made
>> > > > > > separately
>> > > > > > > for every ticket.
>> > > > > > >
>> > > > > > > On Fri, Oct 26, 2018 at 

Re: Apache Ignite 2.7. Last Mile

2018-11-16 Thread Alexey Goncharuk
Igniters,

I've just found that S.toString() implementation is broken in ignite-2.7
and master [1]. It leads to a message
*Wrapper [p=Parent [a=0]Child [b=0, super=]]*
being formed instead of
*Wrapper [p=Child [b=0, super=Parent [a=0]]]*
for classes with inheritance that use S.toString(SomeClass.class, this,
super.toString()) embedded to some other object.

Dmitrii Ryabov, I've reverted two commits related to IGNITE-602 and
IGNITE-9209 tickets locally and it fixes the issue. Can you take a look at
the issue?

I think this regression essentially makes our logs unreadable in some cases
and I would like to get it fixed in ignite-2.7 or revert both commits from
the release.

[1] https://issues.apache.org/jira/browse/IGNITE-10301

пт, 9 нояб. 2018 г. в 09:22, Nikolay Izhikov :

> Hello, Igniters.
>
> We still have 5 tickets for 2.7:
>
> IGNITE-10052Andrew Mashenkov Restart node during TX causes vacuum
> error.
> IGNITE-10170Unassigned   .NET: Services.ServicesTestAsync fails
> IGNITE-10196Maxim Pudov  Remove kafka-clients-*-test dependency
> IGNITE-10154Andrey Gura  Critical worker liveness check
> configuration is non-trivial and inconsistent
> IGNITE-9996 Nikolay Izhikov  Investigate possible performance drop in
> FSYNC mode for ignite-2.7 compared to ignite-2.6
>
>
> В Чт, 08/11/2018 в 14:25 +0300, Nikolay Izhikov пишет:
> > I'm OK with this.
> >
> > чт, 8 нояб. 2018 г., 13:44 Andrey Gura ag...@apache.org:
> > > Long, long way to release :)
> > >
> > > Guys, we have a breaking change in Ignite 2.7 so we must add
> > > IGNITE-10154 [1] fix to the release.
> > >
> > > [1] https://issues.apache.org/jira/browse/IGNITE-10154
> > > On Tue, Nov 6, 2018 at 6:30 PM Igor Sapego  wrote:
> > > >
> > > > Guys,
> > > >
> > > > I've found the following issue: [1]. It is quite local (only affects
> > > > Ignite C++ Linux build system) but quite critical too. I think it
> > > > should be included in 2.7.
> > > >
> > > > What do you think?
> > > >
> > > > [1] - https://issues.apache.org/jira/browse/IGNITE-10147
> > > >
> > > > Best Regards,
> > > > Igor
> > > >
> > > >
> > > > On Tue, Oct 30, 2018 at 4:35 PM Вячеслав Коптилин <
> slava.kopti...@gmail.com>
> > > > wrote:
> > > >
> > > > > Hello Nikolay, Igniters,
> > > > >
> > > > > It seems that we lost the following commit that should be included
> in
> > > > > 'ignite-2.7' branch
> > > > > (It looks like the change was not accidentally cherry-picked from
> 'master'
> > > > > to 'ignite-2.7')
> > > > >  -
> > > > >
> > > > >
> https://github.com/apache/ignite/commit/6e0ff06f8e309657a16c94da605348d9c3b804ad
> > > > >
> > > > > The most important part is the change introduced into
> GridDhtAtomicCache,
> > > > > the fix prevents NullPointerException during cache updates under
> some
> > > > > circumstances.
> > > > > So, I propose including the fix into ignite-2.7, at least the
> change of
> > > > > GridDhtAtomicCache.
> > > > >
> > > > > Thanks,
> > > > > Slava.
> > > > >
> > > > > пн, 29 окт. 2018 г. в 11:20, Nikolay Izhikov  >:
> > > > >
> > > > > > Hello, guys.
> > > > > >
> > > > > > For today we have 11 tickets mapped to 2.7
> > > > > >
> > > > > > IGNITE-10010 Alexey Goncharuk Node halted if second node was
> stopped,
> > > > > then
> > > > > > cache destroyed, then second node returned
> > > > > > IGNITE-10015 Alexey Goncharuk Sporadic JVM crash due to restart
> nodes
> > > > > > IGNITE-10013 Unassigned Node restart may lead to NPE in
> > > > > > GridDhtPartitionsExchangeFuture
> > > > > > IGNITE-9928 Igor Seliverstov MVCC TX: Late affinity assignment
> support.
> > > > > > IGNITE-9985 Igor Seliverstov MVCC TX: fix backup mappings
> > > > > > IGNITE-10007 Sergey Kozlov Deactivation hangs if an open
> transaction
> > > > > exists
> > > > > > IGNITE-10004 Andrew Mashenkov Parse error leads to leave the
> transaction
> > > > > > IGNITE-10024 Ivan Pavlukhin MVCC TX: Stackoverflow during
> DhtEnlistFuture
> > > > > > mapping
> > > > > > IGNITE-9996 Alexey Goncharuk Investigate possible performance
> drop in
> > > > > FSYNC
> > > > > > mode for ignite-2.7 compared to ignite-2.6
> > > > > > IGNITE-9982 Ivan Pavlukhin SQLLine: can't run with option
> > > > > > --autoCommit=false or true
> > > > > > IGNITE-9828 Roman Kondakov MVCC: Continuous query failover.
> > > > > >
> > > > > >
> > > > > > пт, 26 окт. 2018 г. в 9:59, Vladimir Ozerov <
> voze...@gridgain.com>:
> > > > > >
> > > > > > > Hi Nikolay,
> > > > > > >
> > > > > > > I do not know. We need to investigate them first. These are all
> > > > > > > regressions, so decision about impact and urgency should be
> made
> > > > > > separately
> > > > > > > for every ticket.
> > > > > > >
> > > > > > > On Fri, Oct 26, 2018 at 9:57 AM Nikolay Izhikov <
> nizhi...@apache.org>
> > > > > > > wrote:
> > > > > > >
> > > > > > > > Hello, Igniters.
> > > > > > > >
> > > > > > > > We have *9* tickets mapped to 2.7 today
> > > > > > > >
> > > > > > > > Vladimir, do you think 1 week delay will be enough to

Re: Apache Ignite 2.7. Last Mile

2018-11-08 Thread Nikolay Izhikov
Hello, Igniters.

We still have 5 tickets for 2.7:

IGNITE-10052Andrew Mashenkov Restart node during TX causes vacuum error.
IGNITE-10170Unassigned   .NET: Services.ServicesTestAsync fails
IGNITE-10196Maxim Pudov  Remove kafka-clients-*-test dependency
IGNITE-10154Andrey Gura  Critical worker liveness check configuration 
is non-trivial and inconsistent
IGNITE-9996 Nikolay Izhikov  Investigate possible performance drop in FSYNC 
mode for ignite-2.7 compared to ignite-2.6


В Чт, 08/11/2018 в 14:25 +0300, Nikolay Izhikov пишет:
> I'm OK with this.
> 
> чт, 8 нояб. 2018 г., 13:44 Andrey Gura ag...@apache.org:
> > Long, long way to release :)
> > 
> > Guys, we have a breaking change in Ignite 2.7 so we must add
> > IGNITE-10154 [1] fix to the release.
> > 
> > [1] https://issues.apache.org/jira/browse/IGNITE-10154
> > On Tue, Nov 6, 2018 at 6:30 PM Igor Sapego  wrote:
> > >
> > > Guys,
> > >
> > > I've found the following issue: [1]. It is quite local (only affects
> > > Ignite C++ Linux build system) but quite critical too. I think it
> > > should be included in 2.7.
> > >
> > > What do you think?
> > >
> > > [1] - https://issues.apache.org/jira/browse/IGNITE-10147
> > >
> > > Best Regards,
> > > Igor
> > >
> > >
> > > On Tue, Oct 30, 2018 at 4:35 PM Вячеслав Коптилин 
> > > 
> > > wrote:
> > >
> > > > Hello Nikolay, Igniters,
> > > >
> > > > It seems that we lost the following commit that should be included in
> > > > 'ignite-2.7' branch
> > > > (It looks like the change was not accidentally cherry-picked from 
> > > > 'master'
> > > > to 'ignite-2.7')
> > > >  -
> > > >
> > > > https://github.com/apache/ignite/commit/6e0ff06f8e309657a16c94da605348d9c3b804ad
> > > >
> > > > The most important part is the change introduced into 
> > > > GridDhtAtomicCache,
> > > > the fix prevents NullPointerException during cache updates under some
> > > > circumstances.
> > > > So, I propose including the fix into ignite-2.7, at least the change of
> > > > GridDhtAtomicCache.
> > > >
> > > > Thanks,
> > > > Slava.
> > > >
> > > > пн, 29 окт. 2018 г. в 11:20, Nikolay Izhikov :
> > > >
> > > > > Hello, guys.
> > > > >
> > > > > For today we have 11 tickets mapped to 2.7
> > > > >
> > > > > IGNITE-10010 Alexey Goncharuk Node halted if second node was stopped,
> > > > then
> > > > > cache destroyed, then second node returned
> > > > > IGNITE-10015 Alexey Goncharuk Sporadic JVM crash due to restart nodes
> > > > > IGNITE-10013 Unassigned Node restart may lead to NPE in
> > > > > GridDhtPartitionsExchangeFuture
> > > > > IGNITE-9928 Igor Seliverstov MVCC TX: Late affinity assignment 
> > > > > support.
> > > > > IGNITE-9985 Igor Seliverstov MVCC TX: fix backup mappings
> > > > > IGNITE-10007 Sergey Kozlov Deactivation hangs if an open transaction
> > > > exists
> > > > > IGNITE-10004 Andrew Mashenkov Parse error leads to leave the 
> > > > > transaction
> > > > > IGNITE-10024 Ivan Pavlukhin MVCC TX: Stackoverflow during 
> > > > > DhtEnlistFuture
> > > > > mapping
> > > > > IGNITE-9996 Alexey Goncharuk Investigate possible performance drop in
> > > > FSYNC
> > > > > mode for ignite-2.7 compared to ignite-2.6
> > > > > IGNITE-9982 Ivan Pavlukhin SQLLine: can't run with option
> > > > > --autoCommit=false or true
> > > > > IGNITE-9828 Roman Kondakov MVCC: Continuous query failover.
> > > > >
> > > > >
> > > > > пт, 26 окт. 2018 г. в 9:59, Vladimir Ozerov :
> > > > >
> > > > > > Hi Nikolay,
> > > > > >
> > > > > > I do not know. We need to investigate them first. These are all
> > > > > > regressions, so decision about impact and urgency should be made
> > > > > separately
> > > > > > for every ticket.
> > > > > >
> > > > > > On Fri, Oct 26, 2018 at 9:57 AM Nikolay Izhikov 
> > > > > > 
> > > > > > wrote:
> > > > > >
> > > > > > > Hello, Igniters.
> > > > > > >
> > > > > > > We have *9* tickets mapped to 2.7 today
> > > > > > >
> > > > > > > Vladimir, do you think 1 week delay will be enough to resolve all
> > > > this
> > > > > > > tickets?
> > > > > > >
> > > > > > > IGNITE-9828 Roman Kondakov  MVCC: Continuous query
> > > > > failover.
> > > > > > > IGNITE-9928 Igor SeliverstovMVCC TX: Late affinity
> > > > > assignment
> > > > > > > support.
> > > > > > > IGNITE-9985 Igor SeliverstovMVCC TX: fix backup 
> > > > > > > mappings
> > > > > > > IGNITE-9982 Ivan Pavlukhin  SQLLine: can't run with
> > > > option
> > > > > > > --autoCommit=false or true
> > > > > > > IGNITE-10010Unassigned  Node halted if table was
> > > > > dropped
> > > > > > > IGNITE-10013Unassigned  Node restart may lead to 
> > > > > > > NPE
> > > > in
> > > > > > > GridDhtPartitionsExchangeFuture
> > > > > > > IGNITE-9996 Unassigned  Investigate possible
> > > > > performance
> > > > > > > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > > > > > IGNITE-10007Unassigned  Deactivation hangs if an 
> > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-11-08 Thread Nikolay Izhikov
I'm OK with this.

чт, 8 нояб. 2018 г., 13:44 Andrey Gura ag...@apache.org:

> Long, long way to release :)
>
> Guys, we have a breaking change in Ignite 2.7 so we must add
> IGNITE-10154 [1] fix to the release.
>
> [1] https://issues.apache.org/jira/browse/IGNITE-10154
> On Tue, Nov 6, 2018 at 6:30 PM Igor Sapego  wrote:
> >
> > Guys,
> >
> > I've found the following issue: [1]. It is quite local (only affects
> > Ignite C++ Linux build system) but quite critical too. I think it
> > should be included in 2.7.
> >
> > What do you think?
> >
> > [1] - https://issues.apache.org/jira/browse/IGNITE-10147
> >
> > Best Regards,
> > Igor
> >
> >
> > On Tue, Oct 30, 2018 at 4:35 PM Вячеслав Коптилин <
> slava.kopti...@gmail.com>
> > wrote:
> >
> > > Hello Nikolay, Igniters,
> > >
> > > It seems that we lost the following commit that should be included in
> > > 'ignite-2.7' branch
> > > (It looks like the change was not accidentally cherry-picked from
> 'master'
> > > to 'ignite-2.7')
> > >  -
> > >
> > >
> https://github.com/apache/ignite/commit/6e0ff06f8e309657a16c94da605348d9c3b804ad
> > >
> > > The most important part is the change introduced into
> GridDhtAtomicCache,
> > > the fix prevents NullPointerException during cache updates under some
> > > circumstances.
> > > So, I propose including the fix into ignite-2.7, at least the change of
> > > GridDhtAtomicCache.
> > >
> > > Thanks,
> > > Slava.
> > >
> > > пн, 29 окт. 2018 г. в 11:20, Nikolay Izhikov :
> > >
> > > > Hello, guys.
> > > >
> > > > For today we have 11 tickets mapped to 2.7
> > > >
> > > > IGNITE-10010 Alexey Goncharuk Node halted if second node was stopped,
> > > then
> > > > cache destroyed, then second node returned
> > > > IGNITE-10015 Alexey Goncharuk Sporadic JVM crash due to restart nodes
> > > > IGNITE-10013 Unassigned Node restart may lead to NPE in
> > > > GridDhtPartitionsExchangeFuture
> > > > IGNITE-9928 Igor Seliverstov MVCC TX: Late affinity assignment
> support.
> > > > IGNITE-9985 Igor Seliverstov MVCC TX: fix backup mappings
> > > > IGNITE-10007 Sergey Kozlov Deactivation hangs if an open transaction
> > > exists
> > > > IGNITE-10004 Andrew Mashenkov Parse error leads to leave the
> transaction
> > > > IGNITE-10024 Ivan Pavlukhin MVCC TX: Stackoverflow during
> DhtEnlistFuture
> > > > mapping
> > > > IGNITE-9996 Alexey Goncharuk Investigate possible performance drop in
> > > FSYNC
> > > > mode for ignite-2.7 compared to ignite-2.6
> > > > IGNITE-9982 Ivan Pavlukhin SQLLine: can't run with option
> > > > --autoCommit=false or true
> > > > IGNITE-9828 Roman Kondakov MVCC: Continuous query failover.
> > > >
> > > >
> > > > пт, 26 окт. 2018 г. в 9:59, Vladimir Ozerov :
> > > >
> > > > > Hi Nikolay,
> > > > >
> > > > > I do not know. We need to investigate them first. These are all
> > > > > regressions, so decision about impact and urgency should be made
> > > > separately
> > > > > for every ticket.
> > > > >
> > > > > On Fri, Oct 26, 2018 at 9:57 AM Nikolay Izhikov <
> nizhi...@apache.org>
> > > > > wrote:
> > > > >
> > > > > > Hello, Igniters.
> > > > > >
> > > > > > We have *9* tickets mapped to 2.7 today
> > > > > >
> > > > > > Vladimir, do you think 1 week delay will be enough to resolve all
> > > this
> > > > > > tickets?
> > > > > >
> > > > > > IGNITE-9828 Roman Kondakov  MVCC: Continuous query
> > > > failover.
> > > > > > IGNITE-9928 Igor SeliverstovMVCC TX: Late affinity
> > > > assignment
> > > > > > support.
> > > > > > IGNITE-9985 Igor SeliverstovMVCC TX: fix backup
> mappings
> > > > > > IGNITE-9982 Ivan Pavlukhin  SQLLine: can't run with
> > > option
> > > > > > --autoCommit=false or true
> > > > > > IGNITE-10010Unassigned  Node halted if table was
> > > > dropped
> > > > > > IGNITE-10013Unassigned  Node restart may lead to
> NPE
> > > in
> > > > > > GridDhtPartitionsExchangeFuture
> > > > > > IGNITE-9996 Unassigned  Investigate possible
> > > > performance
> > > > > > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > > > > IGNITE-10007Unassigned  Deactivation hangs if an
> open
> > > > > > transaction exists
> > > > > > IGNITE-10004Unassigned  Parse error leads to
> leave
> > > the
> > > > > > transaction
> > > > > >
> > > > > > В Ср, 24/10/2018 в 12:30 +0300, Nikolay Izhikov пишет:
> > > > > > > Hello, Igniters.
> > > > > > >
> > > > > > > We have 3 ticket mapped to 2.7 today:
> > > > > > >
> > > > > > > Igor Seliverstov - IGNITE-9892 - MVCC: Exchange hangs on mvcc
> > > > > > coordinator fail
> > > > > > > Roman Kondakov   - IGNITE-9828 - MVCC: Continuous query
> failover.
> > > > > > > Roman Kondakov   - IGNITE-9928 - MVCC TX: Bug in SQL query
> mapping.
> > > > > > >
> > > > > > > В Вт, 23/10/2018 в 15:01 +0300, Nikolay Izhikov пишет:
> > > > > > > > Hello, Dmitriy.
> > > > > > > >
> > > > > > > > I'm OK with including this patch to 2.7.
> > > > > > > >
> > > > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-11-08 Thread Andrey Gura
Long, long way to release :)

Guys, we have a breaking change in Ignite 2.7 so we must add
IGNITE-10154 [1] fix to the release.

[1] https://issues.apache.org/jira/browse/IGNITE-10154
On Tue, Nov 6, 2018 at 6:30 PM Igor Sapego  wrote:
>
> Guys,
>
> I've found the following issue: [1]. It is quite local (only affects
> Ignite C++ Linux build system) but quite critical too. I think it
> should be included in 2.7.
>
> What do you think?
>
> [1] - https://issues.apache.org/jira/browse/IGNITE-10147
>
> Best Regards,
> Igor
>
>
> On Tue, Oct 30, 2018 at 4:35 PM Вячеслав Коптилин 
> wrote:
>
> > Hello Nikolay, Igniters,
> >
> > It seems that we lost the following commit that should be included in
> > 'ignite-2.7' branch
> > (It looks like the change was not accidentally cherry-picked from 'master'
> > to 'ignite-2.7')
> >  -
> >
> > https://github.com/apache/ignite/commit/6e0ff06f8e309657a16c94da605348d9c3b804ad
> >
> > The most important part is the change introduced into GridDhtAtomicCache,
> > the fix prevents NullPointerException during cache updates under some
> > circumstances.
> > So, I propose including the fix into ignite-2.7, at least the change of
> > GridDhtAtomicCache.
> >
> > Thanks,
> > Slava.
> >
> > пн, 29 окт. 2018 г. в 11:20, Nikolay Izhikov :
> >
> > > Hello, guys.
> > >
> > > For today we have 11 tickets mapped to 2.7
> > >
> > > IGNITE-10010 Alexey Goncharuk Node halted if second node was stopped,
> > then
> > > cache destroyed, then second node returned
> > > IGNITE-10015 Alexey Goncharuk Sporadic JVM crash due to restart nodes
> > > IGNITE-10013 Unassigned Node restart may lead to NPE in
> > > GridDhtPartitionsExchangeFuture
> > > IGNITE-9928 Igor Seliverstov MVCC TX: Late affinity assignment support.
> > > IGNITE-9985 Igor Seliverstov MVCC TX: fix backup mappings
> > > IGNITE-10007 Sergey Kozlov Deactivation hangs if an open transaction
> > exists
> > > IGNITE-10004 Andrew Mashenkov Parse error leads to leave the transaction
> > > IGNITE-10024 Ivan Pavlukhin MVCC TX: Stackoverflow during DhtEnlistFuture
> > > mapping
> > > IGNITE-9996 Alexey Goncharuk Investigate possible performance drop in
> > FSYNC
> > > mode for ignite-2.7 compared to ignite-2.6
> > > IGNITE-9982 Ivan Pavlukhin SQLLine: can't run with option
> > > --autoCommit=false or true
> > > IGNITE-9828 Roman Kondakov MVCC: Continuous query failover.
> > >
> > >
> > > пт, 26 окт. 2018 г. в 9:59, Vladimir Ozerov :
> > >
> > > > Hi Nikolay,
> > > >
> > > > I do not know. We need to investigate them first. These are all
> > > > regressions, so decision about impact and urgency should be made
> > > separately
> > > > for every ticket.
> > > >
> > > > On Fri, Oct 26, 2018 at 9:57 AM Nikolay Izhikov 
> > > > wrote:
> > > >
> > > > > Hello, Igniters.
> > > > >
> > > > > We have *9* tickets mapped to 2.7 today
> > > > >
> > > > > Vladimir, do you think 1 week delay will be enough to resolve all
> > this
> > > > > tickets?
> > > > >
> > > > > IGNITE-9828 Roman Kondakov  MVCC: Continuous query
> > > failover.
> > > > > IGNITE-9928 Igor SeliverstovMVCC TX: Late affinity
> > > assignment
> > > > > support.
> > > > > IGNITE-9985 Igor SeliverstovMVCC TX: fix backup mappings
> > > > > IGNITE-9982 Ivan Pavlukhin  SQLLine: can't run with
> > option
> > > > > --autoCommit=false or true
> > > > > IGNITE-10010Unassigned  Node halted if table was
> > > dropped
> > > > > IGNITE-10013Unassigned  Node restart may lead to NPE
> > in
> > > > > GridDhtPartitionsExchangeFuture
> > > > > IGNITE-9996 Unassigned  Investigate possible
> > > performance
> > > > > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > > > IGNITE-10007Unassigned  Deactivation hangs if an open
> > > > > transaction exists
> > > > > IGNITE-10004Unassigned  Parse error leads to leave
> > the
> > > > > transaction
> > > > >
> > > > > В Ср, 24/10/2018 в 12:30 +0300, Nikolay Izhikov пишет:
> > > > > > Hello, Igniters.
> > > > > >
> > > > > > We have 3 ticket mapped to 2.7 today:
> > > > > >
> > > > > > Igor Seliverstov - IGNITE-9892 - MVCC: Exchange hangs on mvcc
> > > > > coordinator fail
> > > > > > Roman Kondakov   - IGNITE-9828 - MVCC: Continuous query failover.
> > > > > > Roman Kondakov   - IGNITE-9928 - MVCC TX: Bug in SQL query mapping.
> > > > > >
> > > > > > В Вт, 23/10/2018 в 15:01 +0300, Nikolay Izhikov пишет:
> > > > > > > Hello, Dmitriy.
> > > > > > >
> > > > > > > I'm OK with including this patch to 2.7.
> > > > > > >
> > > > > > > Can you ensure it completely fix the issue?
> > > > > > > I left comment in ticket.
> > > > > > >
> > > > > > >
> > > > >
> > > >
> > >
> > https://issues.apache.org/jira/browse/IGNITE-9854?focusedCommentId=16660516=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16660516
> > > > > > >
> > > > > > >
> > > > > > > В Вт, 23/10/2018 в 13:10 +0300, Dmitriy Govorukhin пишет:
> > > > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-11-06 Thread Igor Sapego
Guys,

I've found the following issue: [1]. It is quite local (only affects
Ignite C++ Linux build system) but quite critical too. I think it
should be included in 2.7.

What do you think?

[1] - https://issues.apache.org/jira/browse/IGNITE-10147

Best Regards,
Igor


On Tue, Oct 30, 2018 at 4:35 PM Вячеслав Коптилин 
wrote:

> Hello Nikolay, Igniters,
>
> It seems that we lost the following commit that should be included in
> 'ignite-2.7' branch
> (It looks like the change was not accidentally cherry-picked from 'master'
> to 'ignite-2.7')
>  -
>
> https://github.com/apache/ignite/commit/6e0ff06f8e309657a16c94da605348d9c3b804ad
>
> The most important part is the change introduced into GridDhtAtomicCache,
> the fix prevents NullPointerException during cache updates under some
> circumstances.
> So, I propose including the fix into ignite-2.7, at least the change of
> GridDhtAtomicCache.
>
> Thanks,
> Slava.
>
> пн, 29 окт. 2018 г. в 11:20, Nikolay Izhikov :
>
> > Hello, guys.
> >
> > For today we have 11 tickets mapped to 2.7
> >
> > IGNITE-10010 Alexey Goncharuk Node halted if second node was stopped,
> then
> > cache destroyed, then second node returned
> > IGNITE-10015 Alexey Goncharuk Sporadic JVM crash due to restart nodes
> > IGNITE-10013 Unassigned Node restart may lead to NPE in
> > GridDhtPartitionsExchangeFuture
> > IGNITE-9928 Igor Seliverstov MVCC TX: Late affinity assignment support.
> > IGNITE-9985 Igor Seliverstov MVCC TX: fix backup mappings
> > IGNITE-10007 Sergey Kozlov Deactivation hangs if an open transaction
> exists
> > IGNITE-10004 Andrew Mashenkov Parse error leads to leave the transaction
> > IGNITE-10024 Ivan Pavlukhin MVCC TX: Stackoverflow during DhtEnlistFuture
> > mapping
> > IGNITE-9996 Alexey Goncharuk Investigate possible performance drop in
> FSYNC
> > mode for ignite-2.7 compared to ignite-2.6
> > IGNITE-9982 Ivan Pavlukhin SQLLine: can't run with option
> > --autoCommit=false or true
> > IGNITE-9828 Roman Kondakov MVCC: Continuous query failover.
> >
> >
> > пт, 26 окт. 2018 г. в 9:59, Vladimir Ozerov :
> >
> > > Hi Nikolay,
> > >
> > > I do not know. We need to investigate them first. These are all
> > > regressions, so decision about impact and urgency should be made
> > separately
> > > for every ticket.
> > >
> > > On Fri, Oct 26, 2018 at 9:57 AM Nikolay Izhikov 
> > > wrote:
> > >
> > > > Hello, Igniters.
> > > >
> > > > We have *9* tickets mapped to 2.7 today
> > > >
> > > > Vladimir, do you think 1 week delay will be enough to resolve all
> this
> > > > tickets?
> > > >
> > > > IGNITE-9828 Roman Kondakov  MVCC: Continuous query
> > failover.
> > > > IGNITE-9928 Igor SeliverstovMVCC TX: Late affinity
> > assignment
> > > > support.
> > > > IGNITE-9985 Igor SeliverstovMVCC TX: fix backup mappings
> > > > IGNITE-9982 Ivan Pavlukhin  SQLLine: can't run with
> option
> > > > --autoCommit=false or true
> > > > IGNITE-10010Unassigned  Node halted if table was
> > dropped
> > > > IGNITE-10013Unassigned  Node restart may lead to NPE
> in
> > > > GridDhtPartitionsExchangeFuture
> > > > IGNITE-9996 Unassigned  Investigate possible
> > performance
> > > > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > > IGNITE-10007Unassigned  Deactivation hangs if an open
> > > > transaction exists
> > > > IGNITE-10004Unassigned  Parse error leads to leave
> the
> > > > transaction
> > > >
> > > > В Ср, 24/10/2018 в 12:30 +0300, Nikolay Izhikov пишет:
> > > > > Hello, Igniters.
> > > > >
> > > > > We have 3 ticket mapped to 2.7 today:
> > > > >
> > > > > Igor Seliverstov - IGNITE-9892 - MVCC: Exchange hangs on mvcc
> > > > coordinator fail
> > > > > Roman Kondakov   - IGNITE-9828 - MVCC: Continuous query failover.
> > > > > Roman Kondakov   - IGNITE-9928 - MVCC TX: Bug in SQL query mapping.
> > > > >
> > > > > В Вт, 23/10/2018 в 15:01 +0300, Nikolay Izhikov пишет:
> > > > > > Hello, Dmitriy.
> > > > > >
> > > > > > I'm OK with including this patch to 2.7.
> > > > > >
> > > > > > Can you ensure it completely fix the issue?
> > > > > > I left comment in ticket.
> > > > > >
> > > > > >
> > > >
> > >
> >
> https://issues.apache.org/jira/browse/IGNITE-9854?focusedCommentId=16660516=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16660516
> > > > > >
> > > > > >
> > > > > > В Вт, 23/10/2018 в 13:10 +0300, Dmitriy Govorukhin пишет:
> > > > > > > Nikolay,
> > > > > > >
> > > > > > > I have an issue which I want to include in 2.7 release,
> > > > > > > https://issues.apache.org/jira/browse/IGNITE-9854
> > > > > > > It is a very small fix but very important, it protects us from
> > NPE
> > > > in some
> > > > > > > race scenario.
> > > > > > > Changes already in master, but the issue still not resolve,
> need
> > > your
> > > > > > > approval for cherry-picking changes to ignite-2.7.
> > > > > > >
> > > > > > > On Tue, Oct 23, 2018 at 

Re: Apache Ignite 2.7. Last Mile

2018-10-30 Thread Вячеслав Коптилин
Hello Nikolay, Igniters,

It seems that we lost the following commit that should be included in
'ignite-2.7' branch
(It looks like the change was not accidentally cherry-picked from 'master'
to 'ignite-2.7')
 -
https://github.com/apache/ignite/commit/6e0ff06f8e309657a16c94da605348d9c3b804ad

The most important part is the change introduced into GridDhtAtomicCache,
the fix prevents NullPointerException during cache updates under some
circumstances.
So, I propose including the fix into ignite-2.7, at least the change of
GridDhtAtomicCache.

Thanks,
Slava.

пн, 29 окт. 2018 г. в 11:20, Nikolay Izhikov :

> Hello, guys.
>
> For today we have 11 tickets mapped to 2.7
>
> IGNITE-10010 Alexey Goncharuk Node halted if second node was stopped, then
> cache destroyed, then second node returned
> IGNITE-10015 Alexey Goncharuk Sporadic JVM crash due to restart nodes
> IGNITE-10013 Unassigned Node restart may lead to NPE in
> GridDhtPartitionsExchangeFuture
> IGNITE-9928 Igor Seliverstov MVCC TX: Late affinity assignment support.
> IGNITE-9985 Igor Seliverstov MVCC TX: fix backup mappings
> IGNITE-10007 Sergey Kozlov Deactivation hangs if an open transaction exists
> IGNITE-10004 Andrew Mashenkov Parse error leads to leave the transaction
> IGNITE-10024 Ivan Pavlukhin MVCC TX: Stackoverflow during DhtEnlistFuture
> mapping
> IGNITE-9996 Alexey Goncharuk Investigate possible performance drop in FSYNC
> mode for ignite-2.7 compared to ignite-2.6
> IGNITE-9982 Ivan Pavlukhin SQLLine: can't run with option
> --autoCommit=false or true
> IGNITE-9828 Roman Kondakov MVCC: Continuous query failover.
>
>
> пт, 26 окт. 2018 г. в 9:59, Vladimir Ozerov :
>
> > Hi Nikolay,
> >
> > I do not know. We need to investigate them first. These are all
> > regressions, so decision about impact and urgency should be made
> separately
> > for every ticket.
> >
> > On Fri, Oct 26, 2018 at 9:57 AM Nikolay Izhikov 
> > wrote:
> >
> > > Hello, Igniters.
> > >
> > > We have *9* tickets mapped to 2.7 today
> > >
> > > Vladimir, do you think 1 week delay will be enough to resolve all this
> > > tickets?
> > >
> > > IGNITE-9828 Roman Kondakov  MVCC: Continuous query
> failover.
> > > IGNITE-9928 Igor SeliverstovMVCC TX: Late affinity
> assignment
> > > support.
> > > IGNITE-9985 Igor SeliverstovMVCC TX: fix backup mappings
> > > IGNITE-9982 Ivan Pavlukhin  SQLLine: can't run with option
> > > --autoCommit=false or true
> > > IGNITE-10010Unassigned  Node halted if table was
> dropped
> > > IGNITE-10013Unassigned  Node restart may lead to NPE in
> > > GridDhtPartitionsExchangeFuture
> > > IGNITE-9996 Unassigned  Investigate possible
> performance
> > > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > > IGNITE-10007Unassigned  Deactivation hangs if an open
> > > transaction exists
> > > IGNITE-10004Unassigned  Parse error leads to leave the
> > > transaction
> > >
> > > В Ср, 24/10/2018 в 12:30 +0300, Nikolay Izhikov пишет:
> > > > Hello, Igniters.
> > > >
> > > > We have 3 ticket mapped to 2.7 today:
> > > >
> > > > Igor Seliverstov - IGNITE-9892 - MVCC: Exchange hangs on mvcc
> > > coordinator fail
> > > > Roman Kondakov   - IGNITE-9828 - MVCC: Continuous query failover.
> > > > Roman Kondakov   - IGNITE-9928 - MVCC TX: Bug in SQL query mapping.
> > > >
> > > > В Вт, 23/10/2018 в 15:01 +0300, Nikolay Izhikov пишет:
> > > > > Hello, Dmitriy.
> > > > >
> > > > > I'm OK with including this patch to 2.7.
> > > > >
> > > > > Can you ensure it completely fix the issue?
> > > > > I left comment in ticket.
> > > > >
> > > > >
> > >
> >
> https://issues.apache.org/jira/browse/IGNITE-9854?focusedCommentId=16660516=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16660516
> > > > >
> > > > >
> > > > > В Вт, 23/10/2018 в 13:10 +0300, Dmitriy Govorukhin пишет:
> > > > > > Nikolay,
> > > > > >
> > > > > > I have an issue which I want to include in 2.7 release,
> > > > > > https://issues.apache.org/jira/browse/IGNITE-9854
> > > > > > It is a very small fix but very important, it protects us from
> NPE
> > > in some
> > > > > > race scenario.
> > > > > > Changes already in master, but the issue still not resolve, need
> > your
> > > > > > approval for cherry-picking changes to ignite-2.7.
> > > > > >
> > > > > > On Tue, Oct 23, 2018 at 10:51 AM Vladimir Ozerov <
> > > voze...@gridgain.com>
> > > > > > wrote:
> > > > > >
> > > > > > > Igniters,
> > > > > > >
> > > > > > > There are still tickets in the scope as we continue finding new
> > > issues
> > > > > > > during QA. I propose the following plan: if there are still
> > opened
> > > issues
> > > > > > > by Friday, then shift vote date for 1 week, to 2nd November.
> This
> > > is needed
> > > > > > > to ensure that product quality is sufficient. But if the
> backlog
> > > is empty
> > > > > > > by Friday, we can go ahead with vote.
> > > > > > >
> > > > 

Re: Apache Ignite 2.7. Last Mile

2018-10-29 Thread Nikolay Izhikov
Hello, guys.

For today we have 11 tickets mapped to 2.7

IGNITE-10010 Alexey Goncharuk Node halted if second node was stopped, then
cache destroyed, then second node returned
IGNITE-10015 Alexey Goncharuk Sporadic JVM crash due to restart nodes
IGNITE-10013 Unassigned Node restart may lead to NPE in
GridDhtPartitionsExchangeFuture
IGNITE-9928 Igor Seliverstov MVCC TX: Late affinity assignment support.
IGNITE-9985 Igor Seliverstov MVCC TX: fix backup mappings
IGNITE-10007 Sergey Kozlov Deactivation hangs if an open transaction exists
IGNITE-10004 Andrew Mashenkov Parse error leads to leave the transaction
IGNITE-10024 Ivan Pavlukhin MVCC TX: Stackoverflow during DhtEnlistFuture
mapping
IGNITE-9996 Alexey Goncharuk Investigate possible performance drop in FSYNC
mode for ignite-2.7 compared to ignite-2.6
IGNITE-9982 Ivan Pavlukhin SQLLine: can't run with option
--autoCommit=false or true
IGNITE-9828 Roman Kondakov MVCC: Continuous query failover.


пт, 26 окт. 2018 г. в 9:59, Vladimir Ozerov :

> Hi Nikolay,
>
> I do not know. We need to investigate them first. These are all
> regressions, so decision about impact and urgency should be made separately
> for every ticket.
>
> On Fri, Oct 26, 2018 at 9:57 AM Nikolay Izhikov 
> wrote:
>
> > Hello, Igniters.
> >
> > We have *9* tickets mapped to 2.7 today
> >
> > Vladimir, do you think 1 week delay will be enough to resolve all this
> > tickets?
> >
> > IGNITE-9828 Roman Kondakov  MVCC: Continuous query failover.
> > IGNITE-9928 Igor SeliverstovMVCC TX: Late affinity assignment
> > support.
> > IGNITE-9985 Igor SeliverstovMVCC TX: fix backup mappings
> > IGNITE-9982 Ivan Pavlukhin  SQLLine: can't run with option
> > --autoCommit=false or true
> > IGNITE-10010Unassigned  Node halted if table was dropped
> > IGNITE-10013Unassigned  Node restart may lead to NPE in
> > GridDhtPartitionsExchangeFuture
> > IGNITE-9996 Unassigned  Investigate possible performance
> > drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> > IGNITE-10007Unassigned  Deactivation hangs if an open
> > transaction exists
> > IGNITE-10004Unassigned  Parse error leads to leave the
> > transaction
> >
> > В Ср, 24/10/2018 в 12:30 +0300, Nikolay Izhikov пишет:
> > > Hello, Igniters.
> > >
> > > We have 3 ticket mapped to 2.7 today:
> > >
> > > Igor Seliverstov - IGNITE-9892 - MVCC: Exchange hangs on mvcc
> > coordinator fail
> > > Roman Kondakov   - IGNITE-9828 - MVCC: Continuous query failover.
> > > Roman Kondakov   - IGNITE-9928 - MVCC TX: Bug in SQL query mapping.
> > >
> > > В Вт, 23/10/2018 в 15:01 +0300, Nikolay Izhikov пишет:
> > > > Hello, Dmitriy.
> > > >
> > > > I'm OK with including this patch to 2.7.
> > > >
> > > > Can you ensure it completely fix the issue?
> > > > I left comment in ticket.
> > > >
> > > >
> >
> https://issues.apache.org/jira/browse/IGNITE-9854?focusedCommentId=16660516=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16660516
> > > >
> > > >
> > > > В Вт, 23/10/2018 в 13:10 +0300, Dmitriy Govorukhin пишет:
> > > > > Nikolay,
> > > > >
> > > > > I have an issue which I want to include in 2.7 release,
> > > > > https://issues.apache.org/jira/browse/IGNITE-9854
> > > > > It is a very small fix but very important, it protects us from NPE
> > in some
> > > > > race scenario.
> > > > > Changes already in master, but the issue still not resolve, need
> your
> > > > > approval for cherry-picking changes to ignite-2.7.
> > > > >
> > > > > On Tue, Oct 23, 2018 at 10:51 AM Vladimir Ozerov <
> > voze...@gridgain.com>
> > > > > wrote:
> > > > >
> > > > > > Igniters,
> > > > > >
> > > > > > There are still tickets in the scope as we continue finding new
> > issues
> > > > > > during QA. I propose the following plan: if there are still
> opened
> > issues
> > > > > > by Friday, then shift vote date for 1 week, to 2nd November. This
> > is needed
> > > > > > to ensure that product quality is sufficient. But if the backlog
> > is empty
> > > > > > by Friday, we can go ahead with vote.
> > > > > >
> > > > > > Thoughts?
> > > > > >
> > > > > > On Tue, Oct 23, 2018 at 10:41 AM Nikolay Izhikov <
> > nizhi...@apache.org>
> > > > > > wrote:
> > > > > >
> > > > > > > Hello, Igniters.
> > > > > > >
> > > > > > > We have 7 tickets mapped to 2.7 today.
> > > > > > >
> > > > > > > Igov Seliverstov  - IGNITE-9892 - MVCC: Exchange hangs on mvcc
> > > > > >
> > > > > > coordinator
> > > > > > > fail
> > > > > > > Igor Seliverstov  - IGNITE-9911 -
> > > > > > >
> > > > > >
> > > > > >
> >
> CacheMvccSelectForUpdateQueryAbstractTest#testSelectForUpdateAfterAbortedTx
> > > > > > > periodically hangs
> > > > > > > Roman Kondakov- IGNITE-9928 - MVCC TX: Bug in SQL query
> > mapping.
> > > > > > > Roman Kondakov- IGNITE-9663 - MVCC: Data node failure can
> > cause TX
> > > > > > > hanging.
> > > > > > > Vladimir Ozerov   - IGNITE-9960 - 

Re: Apache Ignite 2.7. Last Mile

2018-10-26 Thread Vladimir Ozerov
Hi Nikolay,

I do not know. We need to investigate them first. These are all
regressions, so decision about impact and urgency should be made separately
for every ticket.

On Fri, Oct 26, 2018 at 9:57 AM Nikolay Izhikov  wrote:

> Hello, Igniters.
>
> We have *9* tickets mapped to 2.7 today
>
> Vladimir, do you think 1 week delay will be enough to resolve all this
> tickets?
>
> IGNITE-9828 Roman Kondakov  MVCC: Continuous query failover.
> IGNITE-9928 Igor SeliverstovMVCC TX: Late affinity assignment
> support.
> IGNITE-9985 Igor SeliverstovMVCC TX: fix backup mappings
> IGNITE-9982 Ivan Pavlukhin  SQLLine: can't run with option
> --autoCommit=false or true
> IGNITE-10010Unassigned  Node halted if table was dropped
> IGNITE-10013Unassigned  Node restart may lead to NPE in
> GridDhtPartitionsExchangeFuture
> IGNITE-9996 Unassigned  Investigate possible performance
> drop in FSYNC mode for ignite-2.7 compared to ignite-2.6
> IGNITE-10007Unassigned  Deactivation hangs if an open
> transaction exists
> IGNITE-10004Unassigned  Parse error leads to leave the
> transaction
>
> В Ср, 24/10/2018 в 12:30 +0300, Nikolay Izhikov пишет:
> > Hello, Igniters.
> >
> > We have 3 ticket mapped to 2.7 today:
> >
> > Igor Seliverstov - IGNITE-9892 - MVCC: Exchange hangs on mvcc
> coordinator fail
> > Roman Kondakov   - IGNITE-9828 - MVCC: Continuous query failover.
> > Roman Kondakov   - IGNITE-9928 - MVCC TX: Bug in SQL query mapping.
> >
> > В Вт, 23/10/2018 в 15:01 +0300, Nikolay Izhikov пишет:
> > > Hello, Dmitriy.
> > >
> > > I'm OK with including this patch to 2.7.
> > >
> > > Can you ensure it completely fix the issue?
> > > I left comment in ticket.
> > >
> > >
> https://issues.apache.org/jira/browse/IGNITE-9854?focusedCommentId=16660516=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16660516
> > >
> > >
> > > В Вт, 23/10/2018 в 13:10 +0300, Dmitriy Govorukhin пишет:
> > > > Nikolay,
> > > >
> > > > I have an issue which I want to include in 2.7 release,
> > > > https://issues.apache.org/jira/browse/IGNITE-9854
> > > > It is a very small fix but very important, it protects us from NPE
> in some
> > > > race scenario.
> > > > Changes already in master, but the issue still not resolve, need your
> > > > approval for cherry-picking changes to ignite-2.7.
> > > >
> > > > On Tue, Oct 23, 2018 at 10:51 AM Vladimir Ozerov <
> voze...@gridgain.com>
> > > > wrote:
> > > >
> > > > > Igniters,
> > > > >
> > > > > There are still tickets in the scope as we continue finding new
> issues
> > > > > during QA. I propose the following plan: if there are still opened
> issues
> > > > > by Friday, then shift vote date for 1 week, to 2nd November. This
> is needed
> > > > > to ensure that product quality is sufficient. But if the backlog
> is empty
> > > > > by Friday, we can go ahead with vote.
> > > > >
> > > > > Thoughts?
> > > > >
> > > > > On Tue, Oct 23, 2018 at 10:41 AM Nikolay Izhikov <
> nizhi...@apache.org>
> > > > > wrote:
> > > > >
> > > > > > Hello, Igniters.
> > > > > >
> > > > > > We have 7 tickets mapped to 2.7 today.
> > > > > >
> > > > > > Igov Seliverstov  - IGNITE-9892 - MVCC: Exchange hangs on mvcc
> > > > >
> > > > > coordinator
> > > > > > fail
> > > > > > Igor Seliverstov  - IGNITE-9911 -
> > > > > >
> > > > >
> > > > >
> CacheMvccSelectForUpdateQueryAbstractTest#testSelectForUpdateAfterAbortedTx
> > > > > > periodically hangs
> > > > > > Roman Kondakov- IGNITE-9928 - MVCC TX: Bug in SQL query
> mapping.
> > > > > > Roman Kondakov- IGNITE-9663 - MVCC: Data node failure can
> cause TX
> > > > > > hanging.
> > > > > > Vladimir Ozerov   - IGNITE-9960 - SQL: Revert and reopen lazy
> flag
> > > > > > optimization (IGNITE-9171)
> > > > > > Pavel Petroshenko - IGNITE-9951 - thin php: Date data type cut
> nanos
> > > > > > Peter Ivanov  - IGNITE-9953 - Dropping hadoop accelerator
> downloads
> > > > > >
> > > > > >
> > > > > > В Вс, 21/10/2018 в 11:23 +0300, Nikolay Izhikov пишет:
> > > > > > > Hell, Denis.
> > > > > > >
> > > > > > > I just filter all 2.7 tickets without documentation.
> > > > > > >
> > > > > > >
> > > > > > >
> > > > >
> > > > >
> https://issues.apache.org/jira/browse/IGNITE-9932?jql=(project%20%3D%20%27Ignite%27%20AND%20fixVersion%20is%20not%20empty%20AND%20fixVersion%20in%20(%272.7%27)%20AND%20status%20NOT%20IN%20(Resolved%2C%20Closed)%20and%20(component%20is%20null%20or%20component%20NOT%20IN%20(documentation)))%20ORDER%20BY%20%20priority%20%20%20%20%20%20%20%20%20%20%20%20%20%20
> > > > > > >
> > > > > > > I've added this view to the release page.
> > > > > > > See sesction "Unresolved tickets(without documentation)".
> > > > > > >
> > > > > > > В Сб, 20/10/2018 в 16:04 -0700, Denis Magda пишет:
> > > > > > > > Nikolay,
> > > > > > > >
> > > > > > > > Where do you track those 8 blockers? Can't find them on this
> wiki
> > > > >
> > > 

Re: Apache Ignite 2.7. Last Mile

2018-10-26 Thread Nikolay Izhikov
Hello, Igniters.

We have *9* tickets mapped to 2.7 today

Vladimir, do you think 1 week delay will be enough to resolve all this tickets?

IGNITE-9828 Roman Kondakov  MVCC: Continuous query failover.
IGNITE-9928 Igor SeliverstovMVCC TX: Late affinity assignment 
support.
IGNITE-9985 Igor SeliverstovMVCC TX: fix backup mappings
IGNITE-9982 Ivan Pavlukhin  SQLLine: can't run with option 
--autoCommit=false or true
IGNITE-10010Unassigned  Node halted if table was dropped
IGNITE-10013Unassigned  Node restart may lead to NPE in 
GridDhtPartitionsExchangeFuture
IGNITE-9996 Unassigned  Investigate possible performance drop 
in FSYNC mode for ignite-2.7 compared to ignite-2.6
IGNITE-10007Unassigned  Deactivation hangs if an open 
transaction exists
IGNITE-10004Unassigned  Parse error leads to leave the 
transaction

В Ср, 24/10/2018 в 12:30 +0300, Nikolay Izhikov пишет:
> Hello, Igniters.
> 
> We have 3 ticket mapped to 2.7 today:
> 
> Igor Seliverstov - IGNITE-9892 - MVCC: Exchange hangs on mvcc coordinator fail
> Roman Kondakov   - IGNITE-9828 - MVCC: Continuous query failover.
> Roman Kondakov   - IGNITE-9928 - MVCC TX: Bug in SQL query mapping.
> 
> В Вт, 23/10/2018 в 15:01 +0300, Nikolay Izhikov пишет:
> > Hello, Dmitriy.
> > 
> > I'm OK with including this patch to 2.7.
> > 
> > Can you ensure it completely fix the issue?
> > I left comment in ticket.
> > 
> > https://issues.apache.org/jira/browse/IGNITE-9854?focusedCommentId=16660516=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16660516
> > 
> > 
> > В Вт, 23/10/2018 в 13:10 +0300, Dmitriy Govorukhin пишет:
> > > Nikolay,
> > > 
> > > I have an issue which I want to include in 2.7 release,
> > > https://issues.apache.org/jira/browse/IGNITE-9854
> > > It is a very small fix but very important, it protects us from NPE in some
> > > race scenario.
> > > Changes already in master, but the issue still not resolve, need your
> > > approval for cherry-picking changes to ignite-2.7.
> > > 
> > > On Tue, Oct 23, 2018 at 10:51 AM Vladimir Ozerov 
> > > wrote:
> > > 
> > > > Igniters,
> > > > 
> > > > There are still tickets in the scope as we continue finding new issues
> > > > during QA. I propose the following plan: if there are still opened 
> > > > issues
> > > > by Friday, then shift vote date for 1 week, to 2nd November. This is 
> > > > needed
> > > > to ensure that product quality is sufficient. But if the backlog is 
> > > > empty
> > > > by Friday, we can go ahead with vote.
> > > > 
> > > > Thoughts?
> > > > 
> > > > On Tue, Oct 23, 2018 at 10:41 AM Nikolay Izhikov 
> > > > wrote:
> > > > 
> > > > > Hello, Igniters.
> > > > > 
> > > > > We have 7 tickets mapped to 2.7 today.
> > > > > 
> > > > > Igov Seliverstov  - IGNITE-9892 - MVCC: Exchange hangs on mvcc
> > > > 
> > > > coordinator
> > > > > fail
> > > > > Igor Seliverstov  - IGNITE-9911 -
> > > > > 
> > > > 
> > > > CacheMvccSelectForUpdateQueryAbstractTest#testSelectForUpdateAfterAbortedTx
> > > > > periodically hangs
> > > > > Roman Kondakov- IGNITE-9928 - MVCC TX: Bug in SQL query mapping.
> > > > > Roman Kondakov- IGNITE-9663 - MVCC: Data node failure can cause TX
> > > > > hanging.
> > > > > Vladimir Ozerov   - IGNITE-9960 - SQL: Revert and reopen lazy flag
> > > > > optimization (IGNITE-9171)
> > > > > Pavel Petroshenko - IGNITE-9951 - thin php: Date data type cut nanos
> > > > > Peter Ivanov  - IGNITE-9953 - Dropping hadoop accelerator 
> > > > > downloads
> > > > > 
> > > > > 
> > > > > В Вс, 21/10/2018 в 11:23 +0300, Nikolay Izhikov пишет:
> > > > > > Hell, Denis.
> > > > > > 
> > > > > > I just filter all 2.7 tickets without documentation.
> > > > > > 
> > > > > > 
> > > > > > 
> > > > 
> > > > https://issues.apache.org/jira/browse/IGNITE-9932?jql=(project%20%3D%20%27Ignite%27%20AND%20fixVersion%20is%20not%20empty%20AND%20fixVersion%20in%20(%272.7%27)%20AND%20status%20NOT%20IN%20(Resolved%2C%20Closed)%20and%20(component%20is%20null%20or%20component%20NOT%20IN%20(documentation)))%20ORDER%20BY%20%20priority%20%20%20%20%20%20%20%20%20%20%20%20%20%20
> > > > > > 
> > > > > > I've added this view to the release page.
> > > > > > See sesction "Unresolved tickets(without documentation)".
> > > > > > 
> > > > > > В Сб, 20/10/2018 в 16:04 -0700, Denis Magda пишет:
> > > > > > > Nikolay,
> > > > > > > 
> > > > > > > Where do you track those 8 blockers? Can't find them on this wiki
> > > > 
> > > > page:
> > > > > > > https://cwiki.apache.org/confluence/display/IGNITE/Apache+Ignite+2.7
> > > > > > > 
> > > > > > > --
> > > > > > > Denis
> > > > > > > 
> > > > > > > On Sat, Oct 20, 2018 at 11:31 AM Nikolay Izhikov <
> > > > 
> > > > nizhi...@apache.org>
> > > > > > > wrote:
> > > > > > > 
> > > > > > > > Hello, Denis.
> > > > > > > > 
> > > > > > > > As a first time release manager I'm trying to rely on Ignite
> > > > 
> > > > veterans

Re: Apache Ignite 2.7. Last Mile

2018-10-24 Thread Nikolay Izhikov
Hello, Igniters.

We have 3 ticket mapped to 2.7 today:

Igor Seliverstov - IGNITE-9892 - MVCC: Exchange hangs on mvcc coordinator fail
Roman Kondakov   - IGNITE-9828 - MVCC: Continuous query failover.
Roman Kondakov   - IGNITE-9928 - MVCC TX: Bug in SQL query mapping.

В Вт, 23/10/2018 в 15:01 +0300, Nikolay Izhikov пишет:
> Hello, Dmitriy.
> 
> I'm OK with including this patch to 2.7.
> 
> Can you ensure it completely fix the issue?
> I left comment in ticket.
> 
> https://issues.apache.org/jira/browse/IGNITE-9854?focusedCommentId=16660516=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16660516
> 
> 
> В Вт, 23/10/2018 в 13:10 +0300, Dmitriy Govorukhin пишет:
> > Nikolay,
> > 
> > I have an issue which I want to include in 2.7 release,
> > https://issues.apache.org/jira/browse/IGNITE-9854
> > It is a very small fix but very important, it protects us from NPE in some
> > race scenario.
> > Changes already in master, but the issue still not resolve, need your
> > approval for cherry-picking changes to ignite-2.7.
> > 
> > On Tue, Oct 23, 2018 at 10:51 AM Vladimir Ozerov 
> > wrote:
> > 
> > > Igniters,
> > > 
> > > There are still tickets in the scope as we continue finding new issues
> > > during QA. I propose the following plan: if there are still opened issues
> > > by Friday, then shift vote date for 1 week, to 2nd November. This is 
> > > needed
> > > to ensure that product quality is sufficient. But if the backlog is empty
> > > by Friday, we can go ahead with vote.
> > > 
> > > Thoughts?
> > > 
> > > On Tue, Oct 23, 2018 at 10:41 AM Nikolay Izhikov 
> > > wrote:
> > > 
> > > > Hello, Igniters.
> > > > 
> > > > We have 7 tickets mapped to 2.7 today.
> > > > 
> > > > Igov Seliverstov  - IGNITE-9892 - MVCC: Exchange hangs on mvcc
> > > 
> > > coordinator
> > > > fail
> > > > Igor Seliverstov  - IGNITE-9911 -
> > > > 
> > > 
> > > CacheMvccSelectForUpdateQueryAbstractTest#testSelectForUpdateAfterAbortedTx
> > > > periodically hangs
> > > > Roman Kondakov- IGNITE-9928 - MVCC TX: Bug in SQL query mapping.
> > > > Roman Kondakov- IGNITE-9663 - MVCC: Data node failure can cause TX
> > > > hanging.
> > > > Vladimir Ozerov   - IGNITE-9960 - SQL: Revert and reopen lazy flag
> > > > optimization (IGNITE-9171)
> > > > Pavel Petroshenko - IGNITE-9951 - thin php: Date data type cut nanos
> > > > Peter Ivanov  - IGNITE-9953 - Dropping hadoop accelerator downloads
> > > > 
> > > > 
> > > > В Вс, 21/10/2018 в 11:23 +0300, Nikolay Izhikov пишет:
> > > > > Hell, Denis.
> > > > > 
> > > > > I just filter all 2.7 tickets without documentation.
> > > > > 
> > > > > 
> > > > > 
> > > 
> > > https://issues.apache.org/jira/browse/IGNITE-9932?jql=(project%20%3D%20%27Ignite%27%20AND%20fixVersion%20is%20not%20empty%20AND%20fixVersion%20in%20(%272.7%27)%20AND%20status%20NOT%20IN%20(Resolved%2C%20Closed)%20and%20(component%20is%20null%20or%20component%20NOT%20IN%20(documentation)))%20ORDER%20BY%20%20priority%20%20%20%20%20%20%20%20%20%20%20%20%20%20
> > > > > 
> > > > > I've added this view to the release page.
> > > > > See sesction "Unresolved tickets(without documentation)".
> > > > > 
> > > > > В Сб, 20/10/2018 в 16:04 -0700, Denis Magda пишет:
> > > > > > Nikolay,
> > > > > > 
> > > > > > Where do you track those 8 blockers? Can't find them on this wiki
> > > 
> > > page:
> > > > > > https://cwiki.apache.org/confluence/display/IGNITE/Apache+Ignite+2.7
> > > > > > 
> > > > > > --
> > > > > > Denis
> > > > > > 
> > > > > > On Sat, Oct 20, 2018 at 11:31 AM Nikolay Izhikov <
> > > 
> > > nizhi...@apache.org>
> > > > > > wrote:
> > > > > > 
> > > > > > > Hello, Denis.
> > > > > > > 
> > > > > > > As a first time release manager I'm trying to rely on Ignite
> > > 
> > > veterans
> > > > > > > opinion.
> > > > > > > Guys told me that we must fix all blockers and only after it make
> > > 
> > > the
> > > > > > > release.
> > > > > > > 
> > > > > > > Let's fix them all.
> > > > > > > What do you think?
> > > > > > > 
> > > > > > > > When are we sending a release candidate for vote?
> > > > > > > 
> > > > > > > When all blocker bugs will be fixed.
> > > > > > > Currently, we have *8*.
> > > > > > > 
> > > > > > > В Пт, 19/10/2018 в 13:50 -0700, Denis Magda пишет:
> > > > > > > > Guys, as a side observer of the current release, this all looks
> > > > 
> > > > like a
> > > > > > > > never ending story :)
> > > > > > > > 
> > > > > > > > When are we sending a release candidate for vote?
> > > > > > > > 
> > > > > > > > --
> > > > > > > > Denis
> > > > > > > > 
> > > > > > > > On Fri, Oct 19, 2018 at 4:39 AM Nikolay Izhikov <
> > > > 
> > > > nizhi...@apache.org>
> > > > > > > 
> > > > > > > wrote:
> > > > > > > > 
> > > > > > > > > Hello, Igniters.
> > > > > > > > > 
> > > > > > > > > We have 6 tickets for 2.7
> > > > > > > > > 
> > > > > > > > > Roman Kondakov - IGNITE-9892, IGNITE-9663, IGNITE-9928
> > > > > > > > > Igor Seliverstov - IGNITE-9911
> > > > > > > > > Ivan Pavlukhin - IGNITE-5935, 

Re: Apache Ignite 2.7. Last Mile

2018-10-23 Thread Nikolay Izhikov
Hello, Dmitriy.

I'm OK with including this patch to 2.7.

Can you ensure it completely fix the issue?
I left comment in ticket.

https://issues.apache.org/jira/browse/IGNITE-9854?focusedCommentId=16660516=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-16660516


В Вт, 23/10/2018 в 13:10 +0300, Dmitriy Govorukhin пишет:
> Nikolay,
> 
> I have an issue which I want to include in 2.7 release,
> https://issues.apache.org/jira/browse/IGNITE-9854
> It is a very small fix but very important, it protects us from NPE in some
> race scenario.
> Changes already in master, but the issue still not resolve, need your
> approval for cherry-picking changes to ignite-2.7.
> 
> On Tue, Oct 23, 2018 at 10:51 AM Vladimir Ozerov 
> wrote:
> 
> > Igniters,
> > 
> > There are still tickets in the scope as we continue finding new issues
> > during QA. I propose the following plan: if there are still opened issues
> > by Friday, then shift vote date for 1 week, to 2nd November. This is needed
> > to ensure that product quality is sufficient. But if the backlog is empty
> > by Friday, we can go ahead with vote.
> > 
> > Thoughts?
> > 
> > On Tue, Oct 23, 2018 at 10:41 AM Nikolay Izhikov 
> > wrote:
> > 
> > > Hello, Igniters.
> > > 
> > > We have 7 tickets mapped to 2.7 today.
> > > 
> > > Igov Seliverstov  - IGNITE-9892 - MVCC: Exchange hangs on mvcc
> > 
> > coordinator
> > > fail
> > > Igor Seliverstov  - IGNITE-9911 -
> > > 
> > 
> > CacheMvccSelectForUpdateQueryAbstractTest#testSelectForUpdateAfterAbortedTx
> > > periodically hangs
> > > Roman Kondakov- IGNITE-9928 - MVCC TX: Bug in SQL query mapping.
> > > Roman Kondakov- IGNITE-9663 - MVCC: Data node failure can cause TX
> > > hanging.
> > > Vladimir Ozerov   - IGNITE-9960 - SQL: Revert and reopen lazy flag
> > > optimization (IGNITE-9171)
> > > Pavel Petroshenko - IGNITE-9951 - thin php: Date data type cut nanos
> > > Peter Ivanov  - IGNITE-9953 - Dropping hadoop accelerator downloads
> > > 
> > > 
> > > В Вс, 21/10/2018 в 11:23 +0300, Nikolay Izhikov пишет:
> > > > Hell, Denis.
> > > > 
> > > > I just filter all 2.7 tickets without documentation.
> > > > 
> > > > 
> > > > 
> > 
> > https://issues.apache.org/jira/browse/IGNITE-9932?jql=(project%20%3D%20%27Ignite%27%20AND%20fixVersion%20is%20not%20empty%20AND%20fixVersion%20in%20(%272.7%27)%20AND%20status%20NOT%20IN%20(Resolved%2C%20Closed)%20and%20(component%20is%20null%20or%20component%20NOT%20IN%20(documentation)))%20ORDER%20BY%20%20priority%20%20%20%20%20%20%20%20%20%20%20%20%20%20
> > > > 
> > > > I've added this view to the release page.
> > > > See sesction "Unresolved tickets(without documentation)".
> > > > 
> > > > В Сб, 20/10/2018 в 16:04 -0700, Denis Magda пишет:
> > > > > Nikolay,
> > > > > 
> > > > > Where do you track those 8 blockers? Can't find them on this wiki
> > 
> > page:
> > > > > https://cwiki.apache.org/confluence/display/IGNITE/Apache+Ignite+2.7
> > > > > 
> > > > > --
> > > > > Denis
> > > > > 
> > > > > On Sat, Oct 20, 2018 at 11:31 AM Nikolay Izhikov <
> > 
> > nizhi...@apache.org>
> > > > > wrote:
> > > > > 
> > > > > > Hello, Denis.
> > > > > > 
> > > > > > As a first time release manager I'm trying to rely on Ignite
> > 
> > veterans
> > > > > > opinion.
> > > > > > Guys told me that we must fix all blockers and only after it make
> > 
> > the
> > > > > > release.
> > > > > > 
> > > > > > Let's fix them all.
> > > > > > What do you think?
> > > > > > 
> > > > > > > When are we sending a release candidate for vote?
> > > > > > 
> > > > > > When all blocker bugs will be fixed.
> > > > > > Currently, we have *8*.
> > > > > > 
> > > > > > В Пт, 19/10/2018 в 13:50 -0700, Denis Magda пишет:
> > > > > > > Guys, as a side observer of the current release, this all looks
> > > 
> > > like a
> > > > > > > never ending story :)
> > > > > > > 
> > > > > > > When are we sending a release candidate for vote?
> > > > > > > 
> > > > > > > --
> > > > > > > Denis
> > > > > > > 
> > > > > > > On Fri, Oct 19, 2018 at 4:39 AM Nikolay Izhikov <
> > > 
> > > nizhi...@apache.org>
> > > > > > 
> > > > > > wrote:
> > > > > > > 
> > > > > > > > Hello, Igniters.
> > > > > > > > 
> > > > > > > > We have 6 tickets for 2.7
> > > > > > > > 
> > > > > > > > Roman Kondakov - IGNITE-9892, IGNITE-9663, IGNITE-9928
> > > > > > > > Igor Seliverstov - IGNITE-9911
> > > > > > > > Ivan Pavlukhin - IGNITE-5935, IGNITE-9944
> > > > > > > > 
> > > > > > > > В Чт, 18/10/2018 в 15:40 +0300, Andrey Kuznetsov пишет:
> > > > > > > > > I have got one more potential 2.7 blocker [1] with
> > > 
> > > straightforward
> > > > > > 
> > > > > > fix. I
> > > > > > > > > beleive it will not break any production use case, but it
> > > 
> > > leads to
> > > > > > 
> > > > > > test
> > > > > > > > > suite hang, thus affecting other urgent issues.
> > > > > > > > > 
> > > > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-9932
> > > > > > > > > 
> > > > > > > > > чт, 18 окт. 2018 г. в 14:59, Ivan 

Re: Apache Ignite 2.7. Last Mile

2018-10-23 Thread Dmitriy Govorukhin
Nikolay,

I have an issue which I want to include in 2.7 release,
https://issues.apache.org/jira/browse/IGNITE-9854
It is a very small fix but very important, it protects us from NPE in some
race scenario.
Changes already in master, but the issue still not resolve, need your
approval for cherry-picking changes to ignite-2.7.

On Tue, Oct 23, 2018 at 10:51 AM Vladimir Ozerov 
wrote:

> Igniters,
>
> There are still tickets in the scope as we continue finding new issues
> during QA. I propose the following plan: if there are still opened issues
> by Friday, then shift vote date for 1 week, to 2nd November. This is needed
> to ensure that product quality is sufficient. But if the backlog is empty
> by Friday, we can go ahead with vote.
>
> Thoughts?
>
> On Tue, Oct 23, 2018 at 10:41 AM Nikolay Izhikov 
> wrote:
>
> > Hello, Igniters.
> >
> > We have 7 tickets mapped to 2.7 today.
> >
> > Igov Seliverstov  - IGNITE-9892 - MVCC: Exchange hangs on mvcc
> coordinator
> > fail
> > Igor Seliverstov  - IGNITE-9911 -
> >
> CacheMvccSelectForUpdateQueryAbstractTest#testSelectForUpdateAfterAbortedTx
> > periodically hangs
> > Roman Kondakov- IGNITE-9928 - MVCC TX: Bug in SQL query mapping.
> > Roman Kondakov- IGNITE-9663 - MVCC: Data node failure can cause TX
> > hanging.
> > Vladimir Ozerov   - IGNITE-9960 - SQL: Revert and reopen lazy flag
> > optimization (IGNITE-9171)
> > Pavel Petroshenko - IGNITE-9951 - thin php: Date data type cut nanos
> > Peter Ivanov  - IGNITE-9953 - Dropping hadoop accelerator downloads
> >
> >
> > В Вс, 21/10/2018 в 11:23 +0300, Nikolay Izhikov пишет:
> > > Hell, Denis.
> > >
> > > I just filter all 2.7 tickets without documentation.
> > >
> > >
> > >
> >
> https://issues.apache.org/jira/browse/IGNITE-9932?jql=(project%20%3D%20%27Ignite%27%20AND%20fixVersion%20is%20not%20empty%20AND%20fixVersion%20in%20(%272.7%27)%20AND%20status%20NOT%20IN%20(Resolved%2C%20Closed)%20and%20(component%20is%20null%20or%20component%20NOT%20IN%20(documentation)))%20ORDER%20BY%20%20priority%20%20%20%20%20%20%20%20%20%20%20%20%20%20
> > >
> > > I've added this view to the release page.
> > > See sesction "Unresolved tickets(without documentation)".
> > >
> > > В Сб, 20/10/2018 в 16:04 -0700, Denis Magda пишет:
> > > > Nikolay,
> > > >
> > > > Where do you track those 8 blockers? Can't find them on this wiki
> page:
> > > > https://cwiki.apache.org/confluence/display/IGNITE/Apache+Ignite+2.7
> > > >
> > > > --
> > > > Denis
> > > >
> > > > On Sat, Oct 20, 2018 at 11:31 AM Nikolay Izhikov <
> nizhi...@apache.org>
> > > > wrote:
> > > >
> > > > > Hello, Denis.
> > > > >
> > > > > As a first time release manager I'm trying to rely on Ignite
> veterans
> > > > > opinion.
> > > > > Guys told me that we must fix all blockers and only after it make
> the
> > > > > release.
> > > > >
> > > > > Let's fix them all.
> > > > > What do you think?
> > > > >
> > > > > > When are we sending a release candidate for vote?
> > > > >
> > > > > When all blocker bugs will be fixed.
> > > > > Currently, we have *8*.
> > > > >
> > > > > В Пт, 19/10/2018 в 13:50 -0700, Denis Magda пишет:
> > > > > > Guys, as a side observer of the current release, this all looks
> > like a
> > > > > > never ending story :)
> > > > > >
> > > > > > When are we sending a release candidate for vote?
> > > > > >
> > > > > > --
> > > > > > Denis
> > > > > >
> > > > > > On Fri, Oct 19, 2018 at 4:39 AM Nikolay Izhikov <
> > nizhi...@apache.org>
> > > > >
> > > > > wrote:
> > > > > >
> > > > > > > Hello, Igniters.
> > > > > > >
> > > > > > > We have 6 tickets for 2.7
> > > > > > >
> > > > > > > Roman Kondakov - IGNITE-9892, IGNITE-9663, IGNITE-9928
> > > > > > > Igor Seliverstov - IGNITE-9911
> > > > > > > Ivan Pavlukhin - IGNITE-5935, IGNITE-9944
> > > > > > >
> > > > > > > В Чт, 18/10/2018 в 15:40 +0300, Andrey Kuznetsov пишет:
> > > > > > > > I have got one more potential 2.7 blocker [1] with
> > straightforward
> > > > >
> > > > > fix. I
> > > > > > > > beleive it will not break any production use case, but it
> > leads to
> > > > >
> > > > > test
> > > > > > > > suite hang, thus affecting other urgent issues.
> > > > > > > >
> > > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-9932
> > > > > > > >
> > > > > > > > чт, 18 окт. 2018 г. в 14:59, Ivan Daschinsky <
> > ivanda...@gmail.com>:
> > > > > > > >
> > > > > > > > > Hi! Is it possible to merge IGNITE-9854? Fix is pretty
> > simple, but
> > > > > > >
> > > > > > > quite
> > > > > > > > > important.
> > > > > > > > >
> > > > > > > > > ср, 17 окт. 2018 г. в 17:49, Andrey Gura  >:
> > > > > > > > >
> > > > > > > > > > JFYI
> > > > > > > > > >
> > > > > > > > > > IGNITE-9737 and IGNITE-9710 are merged to release branch.
> > > > > > > > > > On Wed, Oct 17, 2018 at 5:41 PM Pavel Tupitsyn <
> > > > >
> > > > > ptupit...@apache.org
> > > > > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > Thank you. Fix has been merged to master and
> > cherry-picked to
> > > > > > > > >
> > > > 

Re: Apache Ignite 2.7. Last Mile

2018-10-23 Thread Vladimir Ozerov
Igniters,

There are still tickets in the scope as we continue finding new issues
during QA. I propose the following plan: if there are still opened issues
by Friday, then shift vote date for 1 week, to 2nd November. This is needed
to ensure that product quality is sufficient. But if the backlog is empty
by Friday, we can go ahead with vote.

Thoughts?

On Tue, Oct 23, 2018 at 10:41 AM Nikolay Izhikov 
wrote:

> Hello, Igniters.
>
> We have 7 tickets mapped to 2.7 today.
>
> Igov Seliverstov  - IGNITE-9892 - MVCC: Exchange hangs on mvcc coordinator
> fail
> Igor Seliverstov  - IGNITE-9911 -
> CacheMvccSelectForUpdateQueryAbstractTest#testSelectForUpdateAfterAbortedTx
> periodically hangs
> Roman Kondakov- IGNITE-9928 - MVCC TX: Bug in SQL query mapping.
> Roman Kondakov- IGNITE-9663 - MVCC: Data node failure can cause TX
> hanging.
> Vladimir Ozerov   - IGNITE-9960 - SQL: Revert and reopen lazy flag
> optimization (IGNITE-9171)
> Pavel Petroshenko - IGNITE-9951 - thin php: Date data type cut nanos
> Peter Ivanov  - IGNITE-9953 - Dropping hadoop accelerator downloads
>
>
> В Вс, 21/10/2018 в 11:23 +0300, Nikolay Izhikov пишет:
> > Hell, Denis.
> >
> > I just filter all 2.7 tickets without documentation.
> >
> >
> >
> https://issues.apache.org/jira/browse/IGNITE-9932?jql=(project%20%3D%20%27Ignite%27%20AND%20fixVersion%20is%20not%20empty%20AND%20fixVersion%20in%20(%272.7%27)%20AND%20status%20NOT%20IN%20(Resolved%2C%20Closed)%20and%20(component%20is%20null%20or%20component%20NOT%20IN%20(documentation)))%20ORDER%20BY%20%20priority%20%20%20%20%20%20%20%20%20%20%20%20%20%20
> >
> > I've added this view to the release page.
> > See sesction "Unresolved tickets(without documentation)".
> >
> > В Сб, 20/10/2018 в 16:04 -0700, Denis Magda пишет:
> > > Nikolay,
> > >
> > > Where do you track those 8 blockers? Can't find them on this wiki page:
> > > https://cwiki.apache.org/confluence/display/IGNITE/Apache+Ignite+2.7
> > >
> > > --
> > > Denis
> > >
> > > On Sat, Oct 20, 2018 at 11:31 AM Nikolay Izhikov 
> > > wrote:
> > >
> > > > Hello, Denis.
> > > >
> > > > As a first time release manager I'm trying to rely on Ignite veterans
> > > > opinion.
> > > > Guys told me that we must fix all blockers and only after it make the
> > > > release.
> > > >
> > > > Let's fix them all.
> > > > What do you think?
> > > >
> > > > > When are we sending a release candidate for vote?
> > > >
> > > > When all blocker bugs will be fixed.
> > > > Currently, we have *8*.
> > > >
> > > > В Пт, 19/10/2018 в 13:50 -0700, Denis Magda пишет:
> > > > > Guys, as a side observer of the current release, this all looks
> like a
> > > > > never ending story :)
> > > > >
> > > > > When are we sending a release candidate for vote?
> > > > >
> > > > > --
> > > > > Denis
> > > > >
> > > > > On Fri, Oct 19, 2018 at 4:39 AM Nikolay Izhikov <
> nizhi...@apache.org>
> > > >
> > > > wrote:
> > > > >
> > > > > > Hello, Igniters.
> > > > > >
> > > > > > We have 6 tickets for 2.7
> > > > > >
> > > > > > Roman Kondakov - IGNITE-9892, IGNITE-9663, IGNITE-9928
> > > > > > Igor Seliverstov - IGNITE-9911
> > > > > > Ivan Pavlukhin - IGNITE-5935, IGNITE-9944
> > > > > >
> > > > > > В Чт, 18/10/2018 в 15:40 +0300, Andrey Kuznetsov пишет:
> > > > > > > I have got one more potential 2.7 blocker [1] with
> straightforward
> > > >
> > > > fix. I
> > > > > > > beleive it will not break any production use case, but it
> leads to
> > > >
> > > > test
> > > > > > > suite hang, thus affecting other urgent issues.
> > > > > > >
> > > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-9932
> > > > > > >
> > > > > > > чт, 18 окт. 2018 г. в 14:59, Ivan Daschinsky <
> ivanda...@gmail.com>:
> > > > > > >
> > > > > > > > Hi! Is it possible to merge IGNITE-9854? Fix is pretty
> simple, but
> > > > > >
> > > > > > quite
> > > > > > > > important.
> > > > > > > >
> > > > > > > > ср, 17 окт. 2018 г. в 17:49, Andrey Gura :
> > > > > > > >
> > > > > > > > > JFYI
> > > > > > > > >
> > > > > > > > > IGNITE-9737 and IGNITE-9710 are merged to release branch.
> > > > > > > > > On Wed, Oct 17, 2018 at 5:41 PM Pavel Tupitsyn <
> > > >
> > > > ptupit...@apache.org
> > > > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > Thank you. Fix has been merged to master and
> cherry-picked to
> > > > > > > >
> > > > > > > > ignite-2.7.
> > > > > > > > > >
> > > > > > > > > > On Wed, Oct 17, 2018 at 1:26 PM Nikolay Izhikov <
> > > > > >
> > > > > > nizhi...@apache.org>
> > > > > > > > >
> > > > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > > Pavel.
> > > > > > > > > > >
> > > > > > > > > > > Ok, I agree to include this ticket into 2.7
> > > > > > > > > > > Let's do it.
> > > > > > > > > > >
> > > > > > > > > > > В Ср, 17/10/2018 в 13:20 +0300, Pavel Tupitsyn пишет:
> > > > > > > > > > > > Nikolay,
> > > > > > > > > > > >
> > > > > > > > > > > > It completely breaks a major feature under certain
> > > >
> > > > conditions.
> > > > > >
> > > > > > I
> > > > > > > > >
> > 

Re: Apache Ignite 2.7. Last Mile

2018-10-23 Thread Nikolay Izhikov
Hello, Igniters.

We have 7 tickets mapped to 2.7 today.

Igov Seliverstov  - IGNITE-9892 - MVCC: Exchange hangs on mvcc coordinator fail
Igor Seliverstov  - IGNITE-9911 - 
CacheMvccSelectForUpdateQueryAbstractTest#testSelectForUpdateAfterAbortedTx 
periodically hangs
Roman Kondakov- IGNITE-9928 - MVCC TX: Bug in SQL query mapping.
Roman Kondakov- IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
Vladimir Ozerov   - IGNITE-9960 - SQL: Revert and reopen lazy flag optimization 
(IGNITE-9171)
Pavel Petroshenko - IGNITE-9951 - thin php: Date data type cut nanos
Peter Ivanov  - IGNITE-9953 - Dropping hadoop accelerator downloads


В Вс, 21/10/2018 в 11:23 +0300, Nikolay Izhikov пишет:
> Hell, Denis.
> 
> I just filter all 2.7 tickets without documentation.
> 
> 
> https://issues.apache.org/jira/browse/IGNITE-9932?jql=(project%20%3D%20%27Ignite%27%20AND%20fixVersion%20is%20not%20empty%20AND%20fixVersion%20in%20(%272.7%27)%20AND%20status%20NOT%20IN%20(Resolved%2C%20Closed)%20and%20(component%20is%20null%20or%20component%20NOT%20IN%20(documentation)))%20ORDER%20BY%20%20priority%20%20%20%20%20%20%20%20%20%20%20%20%20%20
> 
> I've added this view to the release page.
> See sesction "Unresolved tickets(without documentation)".
> 
> В Сб, 20/10/2018 в 16:04 -0700, Denis Magda пишет:
> > Nikolay,
> > 
> > Where do you track those 8 blockers? Can't find them on this wiki page:
> > https://cwiki.apache.org/confluence/display/IGNITE/Apache+Ignite+2.7
> > 
> > --
> > Denis
> > 
> > On Sat, Oct 20, 2018 at 11:31 AM Nikolay Izhikov 
> > wrote:
> > 
> > > Hello, Denis.
> > > 
> > > As a first time release manager I'm trying to rely on Ignite veterans
> > > opinion.
> > > Guys told me that we must fix all blockers and only after it make the
> > > release.
> > > 
> > > Let's fix them all.
> > > What do you think?
> > > 
> > > > When are we sending a release candidate for vote?
> > > 
> > > When all blocker bugs will be fixed.
> > > Currently, we have *8*.
> > > 
> > > В Пт, 19/10/2018 в 13:50 -0700, Denis Magda пишет:
> > > > Guys, as a side observer of the current release, this all looks like a
> > > > never ending story :)
> > > > 
> > > > When are we sending a release candidate for vote?
> > > > 
> > > > --
> > > > Denis
> > > > 
> > > > On Fri, Oct 19, 2018 at 4:39 AM Nikolay Izhikov 
> > > 
> > > wrote:
> > > > 
> > > > > Hello, Igniters.
> > > > > 
> > > > > We have 6 tickets for 2.7
> > > > > 
> > > > > Roman Kondakov - IGNITE-9892, IGNITE-9663, IGNITE-9928
> > > > > Igor Seliverstov - IGNITE-9911
> > > > > Ivan Pavlukhin - IGNITE-5935, IGNITE-9944
> > > > > 
> > > > > В Чт, 18/10/2018 в 15:40 +0300, Andrey Kuznetsov пишет:
> > > > > > I have got one more potential 2.7 blocker [1] with straightforward
> > > 
> > > fix. I
> > > > > > beleive it will not break any production use case, but it leads to
> > > 
> > > test
> > > > > > suite hang, thus affecting other urgent issues.
> > > > > > 
> > > > > > [1] https://issues.apache.org/jira/browse/IGNITE-9932
> > > > > > 
> > > > > > чт, 18 окт. 2018 г. в 14:59, Ivan Daschinsky :
> > > > > > 
> > > > > > > Hi! Is it possible to merge IGNITE-9854? Fix is pretty simple, but
> > > > > 
> > > > > quite
> > > > > > > important.
> > > > > > > 
> > > > > > > ср, 17 окт. 2018 г. в 17:49, Andrey Gura :
> > > > > > > 
> > > > > > > > JFYI
> > > > > > > > 
> > > > > > > > IGNITE-9737 and IGNITE-9710 are merged to release branch.
> > > > > > > > On Wed, Oct 17, 2018 at 5:41 PM Pavel Tupitsyn <
> > > 
> > > ptupit...@apache.org
> > > > > > > > wrote:
> > > > > > > > > 
> > > > > > > > > Thank you. Fix has been merged to master and cherry-picked to
> > > > > > > 
> > > > > > > ignite-2.7.
> > > > > > > > > 
> > > > > > > > > On Wed, Oct 17, 2018 at 1:26 PM Nikolay Izhikov <
> > > > > 
> > > > > nizhi...@apache.org>
> > > > > > > > 
> > > > > > > > wrote:
> > > > > > > > > 
> > > > > > > > > > Pavel.
> > > > > > > > > > 
> > > > > > > > > > Ok, I agree to include this ticket into 2.7
> > > > > > > > > > Let's do it.
> > > > > > > > > > 
> > > > > > > > > > В Ср, 17/10/2018 в 13:20 +0300, Pavel Tupitsyn пишет:
> > > > > > > > > > > Nikolay,
> > > > > > > > > > > 
> > > > > > > > > > > It completely breaks a major feature under certain
> > > 
> > > conditions.
> > > > > 
> > > > > I
> > > > > > > > 
> > > > > > > > would
> > > > > > > > > > > consider it a blocker.
> > > > > > > > > > > 
> > > > > > > > > > > On Wed, Oct 17, 2018 at 1:00 PM Nikolay Izhikov <
> > > > > > > 
> > > > > > > nizhi...@apache.org
> > > > > > > > > 
> > > > > > > > > > wrote:
> > > > > > > > > > > 
> > > > > > > > > > > > Hello, Pavel.
> > > > > > > > > > > > 
> > > > > > > > > > > > Is it a blocker?
> > > > > > > > > > > > 
> > > > > > > > > > > > В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> > > > > > > > > > > > > Hi Igniters,
> > > > > > > > > > > > > 
> > > > > > > > > > > > > I'd like to include IGNITE-9877 in 2.7, can we do 
> > > > > > > > > > > > > that?
> > > > > > > > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-10-21 Thread Nikolay Izhikov
Hell, Denis.

I just filter all 2.7 tickets without documentation.


https://issues.apache.org/jira/browse/IGNITE-9932?jql=(project%20%3D%20%27Ignite%27%20AND%20fixVersion%20is%20not%20empty%20AND%20fixVersion%20in%20(%272.7%27)%20AND%20status%20NOT%20IN%20(Resolved%2C%20Closed)%20and%20(component%20is%20null%20or%20component%20NOT%20IN%20(documentation)))%20ORDER%20BY%20%20priority%20%20%20%20%20%20%20%20%20%20%20%20%20%20

I've added this view to the release page.
See sesction "Unresolved tickets(without documentation)".

В Сб, 20/10/2018 в 16:04 -0700, Denis Magda пишет:
> Nikolay,
> 
> Where do you track those 8 blockers? Can't find them on this wiki page:
> https://cwiki.apache.org/confluence/display/IGNITE/Apache+Ignite+2.7
> 
> --
> Denis
> 
> On Sat, Oct 20, 2018 at 11:31 AM Nikolay Izhikov 
> wrote:
> 
> > Hello, Denis.
> > 
> > As a first time release manager I'm trying to rely on Ignite veterans
> > opinion.
> > Guys told me that we must fix all blockers and only after it make the
> > release.
> > 
> > Let's fix them all.
> > What do you think?
> > 
> > > When are we sending a release candidate for vote?
> > 
> > When all blocker bugs will be fixed.
> > Currently, we have *8*.
> > 
> > В Пт, 19/10/2018 в 13:50 -0700, Denis Magda пишет:
> > > Guys, as a side observer of the current release, this all looks like a
> > > never ending story :)
> > > 
> > > When are we sending a release candidate for vote?
> > > 
> > > --
> > > Denis
> > > 
> > > On Fri, Oct 19, 2018 at 4:39 AM Nikolay Izhikov 
> > 
> > wrote:
> > > 
> > > > Hello, Igniters.
> > > > 
> > > > We have 6 tickets for 2.7
> > > > 
> > > > Roman Kondakov - IGNITE-9892, IGNITE-9663, IGNITE-9928
> > > > Igor Seliverstov - IGNITE-9911
> > > > Ivan Pavlukhin - IGNITE-5935, IGNITE-9944
> > > > 
> > > > В Чт, 18/10/2018 в 15:40 +0300, Andrey Kuznetsov пишет:
> > > > > I have got one more potential 2.7 blocker [1] with straightforward
> > 
> > fix. I
> > > > > beleive it will not break any production use case, but it leads to
> > 
> > test
> > > > > suite hang, thus affecting other urgent issues.
> > > > > 
> > > > > [1] https://issues.apache.org/jira/browse/IGNITE-9932
> > > > > 
> > > > > чт, 18 окт. 2018 г. в 14:59, Ivan Daschinsky :
> > > > > 
> > > > > > Hi! Is it possible to merge IGNITE-9854? Fix is pretty simple, but
> > > > 
> > > > quite
> > > > > > important.
> > > > > > 
> > > > > > ср, 17 окт. 2018 г. в 17:49, Andrey Gura :
> > > > > > 
> > > > > > > JFYI
> > > > > > > 
> > > > > > > IGNITE-9737 and IGNITE-9710 are merged to release branch.
> > > > > > > On Wed, Oct 17, 2018 at 5:41 PM Pavel Tupitsyn <
> > 
> > ptupit...@apache.org
> > > > > > > wrote:
> > > > > > > > 
> > > > > > > > Thank you. Fix has been merged to master and cherry-picked to
> > > > > > 
> > > > > > ignite-2.7.
> > > > > > > > 
> > > > > > > > On Wed, Oct 17, 2018 at 1:26 PM Nikolay Izhikov <
> > > > 
> > > > nizhi...@apache.org>
> > > > > > > 
> > > > > > > wrote:
> > > > > > > > 
> > > > > > > > > Pavel.
> > > > > > > > > 
> > > > > > > > > Ok, I agree to include this ticket into 2.7
> > > > > > > > > Let's do it.
> > > > > > > > > 
> > > > > > > > > В Ср, 17/10/2018 в 13:20 +0300, Pavel Tupitsyn пишет:
> > > > > > > > > > Nikolay,
> > > > > > > > > > 
> > > > > > > > > > It completely breaks a major feature under certain
> > 
> > conditions.
> > > > 
> > > > I
> > > > > > > 
> > > > > > > would
> > > > > > > > > > consider it a blocker.
> > > > > > > > > > 
> > > > > > > > > > On Wed, Oct 17, 2018 at 1:00 PM Nikolay Izhikov <
> > > > > > 
> > > > > > nizhi...@apache.org
> > > > > > > > 
> > > > > > > > > wrote:
> > > > > > > > > > 
> > > > > > > > > > > Hello, Pavel.
> > > > > > > > > > > 
> > > > > > > > > > > Is it a blocker?
> > > > > > > > > > > 
> > > > > > > > > > > В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> > > > > > > > > > > > Hi Igniters,
> > > > > > > > > > > > 
> > > > > > > > > > > > I'd like to include IGNITE-9877 in 2.7, can we do that?
> > > > > > > > > > > > The fix is ready, I'm waiting for TC run.
> > > > > > > > > > > > 
> > > > > > > > > > > > Pavel
> > > > > > > > > > > > 
> > > > > > > > > > > > On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван <
> > > > > > > 
> > > > > > > vololo...@gmail.com>
> > > > > > > > > > > 
> > > > > > > > > > > wrote:
> > > > > > > > > > > > 
> > > > > > > > > > > > > Hi NIkolay,
> > > > > > > > > > > > > 
> > > > > > > > > > > > > Thank you for keeping everybody focused! Regarding
> > 
> > to my
> > > > > > 
> > > > > > ticket
> > > > > > > > > > > > > IGNITE-5935.
> > > > > > > > > > > > > It is in final stage now. Tests look good. I believe
> > > > 
> > > > that it
> > > > > > > 
> > > > > > > will
> > > > > > > > > be
> > > > > > > > > > > 
> > > > > > > > > > > merged
> > > > > > > > > > > > > in couple of days (at most).
> > > > > > > > > > > > > 
> > > > > > > > > > > > > ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov <
> > > > > > > 
> > > > > > > nizhi...@apache.org
> > > > > > > > > > :
> > 

Re: Apache Ignite 2.7. Last Mile

2018-10-20 Thread Denis Magda
Nikolay,

Where do you track those 8 blockers? Can't find them on this wiki page:
https://cwiki.apache.org/confluence/display/IGNITE/Apache+Ignite+2.7

--
Denis

On Sat, Oct 20, 2018 at 11:31 AM Nikolay Izhikov 
wrote:

> Hello, Denis.
>
> As a first time release manager I'm trying to rely on Ignite veterans
> opinion.
> Guys told me that we must fix all blockers and only after it make the
> release.
>
> Let's fix them all.
> What do you think?
>
> > When are we sending a release candidate for vote?
>
> When all blocker bugs will be fixed.
> Currently, we have *8*.
>
> В Пт, 19/10/2018 в 13:50 -0700, Denis Magda пишет:
> > Guys, as a side observer of the current release, this all looks like a
> > never ending story :)
> >
> > When are we sending a release candidate for vote?
> >
> > --
> > Denis
> >
> > On Fri, Oct 19, 2018 at 4:39 AM Nikolay Izhikov 
> wrote:
> >
> > > Hello, Igniters.
> > >
> > > We have 6 tickets for 2.7
> > >
> > > Roman Kondakov - IGNITE-9892, IGNITE-9663, IGNITE-9928
> > > Igor Seliverstov - IGNITE-9911
> > > Ivan Pavlukhin - IGNITE-5935, IGNITE-9944
> > >
> > > В Чт, 18/10/2018 в 15:40 +0300, Andrey Kuznetsov пишет:
> > > > I have got one more potential 2.7 blocker [1] with straightforward
> fix. I
> > > > beleive it will not break any production use case, but it leads to
> test
> > > > suite hang, thus affecting other urgent issues.
> > > >
> > > > [1] https://issues.apache.org/jira/browse/IGNITE-9932
> > > >
> > > > чт, 18 окт. 2018 г. в 14:59, Ivan Daschinsky :
> > > >
> > > > > Hi! Is it possible to merge IGNITE-9854? Fix is pretty simple, but
> > >
> > > quite
> > > > > important.
> > > > >
> > > > > ср, 17 окт. 2018 г. в 17:49, Andrey Gura :
> > > > >
> > > > > > JFYI
> > > > > >
> > > > > > IGNITE-9737 and IGNITE-9710 are merged to release branch.
> > > > > > On Wed, Oct 17, 2018 at 5:41 PM Pavel Tupitsyn <
> ptupit...@apache.org
> > > > > > wrote:
> > > > > > >
> > > > > > > Thank you. Fix has been merged to master and cherry-picked to
> > > > >
> > > > > ignite-2.7.
> > > > > > >
> > > > > > > On Wed, Oct 17, 2018 at 1:26 PM Nikolay Izhikov <
> > >
> > > nizhi...@apache.org>
> > > > > >
> > > > > > wrote:
> > > > > > >
> > > > > > > > Pavel.
> > > > > > > >
> > > > > > > > Ok, I agree to include this ticket into 2.7
> > > > > > > > Let's do it.
> > > > > > > >
> > > > > > > > В Ср, 17/10/2018 в 13:20 +0300, Pavel Tupitsyn пишет:
> > > > > > > > > Nikolay,
> > > > > > > > >
> > > > > > > > > It completely breaks a major feature under certain
> conditions.
> > >
> > > I
> > > > > >
> > > > > > would
> > > > > > > > > consider it a blocker.
> > > > > > > > >
> > > > > > > > > On Wed, Oct 17, 2018 at 1:00 PM Nikolay Izhikov <
> > > > >
> > > > > nizhi...@apache.org
> > > > > > >
> > > > > > > > wrote:
> > > > > > > > >
> > > > > > > > > > Hello, Pavel.
> > > > > > > > > >
> > > > > > > > > > Is it a blocker?
> > > > > > > > > >
> > > > > > > > > > В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> > > > > > > > > > > Hi Igniters,
> > > > > > > > > > >
> > > > > > > > > > > I'd like to include IGNITE-9877 in 2.7, can we do that?
> > > > > > > > > > > The fix is ready, I'm waiting for TC run.
> > > > > > > > > > >
> > > > > > > > > > > Pavel
> > > > > > > > > > >
> > > > > > > > > > > On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван <
> > > > > >
> > > > > > vololo...@gmail.com>
> > > > > > > > > >
> > > > > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > > Hi NIkolay,
> > > > > > > > > > > >
> > > > > > > > > > > > Thank you for keeping everybody focused! Regarding
> to my
> > > > >
> > > > > ticket
> > > > > > > > > > > > IGNITE-5935.
> > > > > > > > > > > > It is in final stage now. Tests look good. I believe
> > >
> > > that it
> > > > > >
> > > > > > will
> > > > > > > > be
> > > > > > > > > >
> > > > > > > > > > merged
> > > > > > > > > > > > in couple of days (at most).
> > > > > > > > > > > >
> > > > > > > > > > > > ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov <
> > > > > >
> > > > > > nizhi...@apache.org
> > > > > > > > > :
> > > > > > > > > > > >
> > > > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > > >
> > > > > > > > > > > > > 9 tickets to go!
> > > > > > > > > > > > >
> > > > > > > > > > > > > Alexey Goncharuk - IGNITE-9784
> > > > > > > > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > > > > > Taras Ledkov - IGNITE-9882
> > > > > > > > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > > > > > >
> > > > > > > > > > > > > В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > > > > > > > > > > > > > Hi,
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > I've found that IGNITE-9723 was resolved but
> didn't
> > > > >
> > > > > cherry
> > > > > > > > picked
> > > > > > > > > >
> > > 

Re: Apache Ignite 2.7. Last Mile

2018-10-20 Thread Nikolay Izhikov
Hello, Denis.

As a first time release manager I'm trying to rely on Ignite veterans opinion.
Guys told me that we must fix all blockers and only after it make the release.

Let's fix them all.
What do you think?

> When are we sending a release candidate for vote?

When all blocker bugs will be fixed.
Currently, we have *8*.

В Пт, 19/10/2018 в 13:50 -0700, Denis Magda пишет:
> Guys, as a side observer of the current release, this all looks like a
> never ending story :)
> 
> When are we sending a release candidate for vote?
> 
> --
> Denis
> 
> On Fri, Oct 19, 2018 at 4:39 AM Nikolay Izhikov  wrote:
> 
> > Hello, Igniters.
> > 
> > We have 6 tickets for 2.7
> > 
> > Roman Kondakov - IGNITE-9892, IGNITE-9663, IGNITE-9928
> > Igor Seliverstov - IGNITE-9911
> > Ivan Pavlukhin - IGNITE-5935, IGNITE-9944
> > 
> > В Чт, 18/10/2018 в 15:40 +0300, Andrey Kuznetsov пишет:
> > > I have got one more potential 2.7 blocker [1] with straightforward fix. I
> > > beleive it will not break any production use case, but it leads to test
> > > suite hang, thus affecting other urgent issues.
> > > 
> > > [1] https://issues.apache.org/jira/browse/IGNITE-9932
> > > 
> > > чт, 18 окт. 2018 г. в 14:59, Ivan Daschinsky :
> > > 
> > > > Hi! Is it possible to merge IGNITE-9854? Fix is pretty simple, but
> > 
> > quite
> > > > important.
> > > > 
> > > > ср, 17 окт. 2018 г. в 17:49, Andrey Gura :
> > > > 
> > > > > JFYI
> > > > > 
> > > > > IGNITE-9737 and IGNITE-9710 are merged to release branch.
> > > > > On Wed, Oct 17, 2018 at 5:41 PM Pavel Tupitsyn  > > > > wrote:
> > > > > > 
> > > > > > Thank you. Fix has been merged to master and cherry-picked to
> > > > 
> > > > ignite-2.7.
> > > > > > 
> > > > > > On Wed, Oct 17, 2018 at 1:26 PM Nikolay Izhikov <
> > 
> > nizhi...@apache.org>
> > > > > 
> > > > > wrote:
> > > > > > 
> > > > > > > Pavel.
> > > > > > > 
> > > > > > > Ok, I agree to include this ticket into 2.7
> > > > > > > Let's do it.
> > > > > > > 
> > > > > > > В Ср, 17/10/2018 в 13:20 +0300, Pavel Tupitsyn пишет:
> > > > > > > > Nikolay,
> > > > > > > > 
> > > > > > > > It completely breaks a major feature under certain conditions.
> > 
> > I
> > > > > 
> > > > > would
> > > > > > > > consider it a blocker.
> > > > > > > > 
> > > > > > > > On Wed, Oct 17, 2018 at 1:00 PM Nikolay Izhikov <
> > > > 
> > > > nizhi...@apache.org
> > > > > > 
> > > > > > > wrote:
> > > > > > > > 
> > > > > > > > > Hello, Pavel.
> > > > > > > > > 
> > > > > > > > > Is it a blocker?
> > > > > > > > > 
> > > > > > > > > В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> > > > > > > > > > Hi Igniters,
> > > > > > > > > > 
> > > > > > > > > > I'd like to include IGNITE-9877 in 2.7, can we do that?
> > > > > > > > > > The fix is ready, I'm waiting for TC run.
> > > > > > > > > > 
> > > > > > > > > > Pavel
> > > > > > > > > > 
> > > > > > > > > > On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван <
> > > > > 
> > > > > vololo...@gmail.com>
> > > > > > > > > 
> > > > > > > > > wrote:
> > > > > > > > > > 
> > > > > > > > > > > Hi NIkolay,
> > > > > > > > > > > 
> > > > > > > > > > > Thank you for keeping everybody focused! Regarding to my
> > > > 
> > > > ticket
> > > > > > > > > > > IGNITE-5935.
> > > > > > > > > > > It is in final stage now. Tests look good. I believe
> > 
> > that it
> > > > > 
> > > > > will
> > > > > > > be
> > > > > > > > > 
> > > > > > > > > merged
> > > > > > > > > > > in couple of days (at most).
> > > > > > > > > > > 
> > > > > > > > > > > ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov <
> > > > > 
> > > > > nizhi...@apache.org
> > > > > > > > :
> > > > > > > > > > > 
> > > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > > 
> > > > > > > > > > > > 9 tickets to go!
> > > > > > > > > > > > 
> > > > > > > > > > > > Alexey Goncharuk - IGNITE-9784
> > > > > > > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > > > > Taras Ledkov - IGNITE-9882
> > > > > > > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > > > > > 
> > > > > > > > > > > > В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > > > > > > > > > > > > Hi,
> > > > > > > > > > > > > 
> > > > > > > > > > > > > I've found that IGNITE-9723 was resolved but didn't
> > > > 
> > > > cherry
> > > > > > > picked
> > > > > > > > > 
> > > > > > > > > to
> > > > > > > > > > > > > ignite-2.7 branch. So I'll do it.
> > > > > > > > > > > > > On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov <
> > > > > > > > > 
> > > > > > > > > nizhi...@apache.org>
> > > > > > > > > > > > 
> > > > > > > > > > > > wrote:
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > > > > 
> > > > > > > > > > > > > > We have 13 tickets mapped to 2.7.
> > > > > > > > > > > > > > All tickets assigned to some 

Re: Apache Ignite 2.7. Last Mile

2018-10-19 Thread Denis Magda
Guys, as a side observer of the current release, this all looks like a
never ending story :)

When are we sending a release candidate for vote?

--
Denis

On Fri, Oct 19, 2018 at 4:39 AM Nikolay Izhikov  wrote:

> Hello, Igniters.
>
> We have 6 tickets for 2.7
>
> Roman Kondakov - IGNITE-9892, IGNITE-9663, IGNITE-9928
> Igor Seliverstov - IGNITE-9911
> Ivan Pavlukhin - IGNITE-5935, IGNITE-9944
>
> В Чт, 18/10/2018 в 15:40 +0300, Andrey Kuznetsov пишет:
> > I have got one more potential 2.7 blocker [1] with straightforward fix. I
> > beleive it will not break any production use case, but it leads to test
> > suite hang, thus affecting other urgent issues.
> >
> > [1] https://issues.apache.org/jira/browse/IGNITE-9932
> >
> > чт, 18 окт. 2018 г. в 14:59, Ivan Daschinsky :
> >
> > > Hi! Is it possible to merge IGNITE-9854? Fix is pretty simple, but
> quite
> > > important.
> > >
> > > ср, 17 окт. 2018 г. в 17:49, Andrey Gura :
> > >
> > > > JFYI
> > > >
> > > > IGNITE-9737 and IGNITE-9710 are merged to release branch.
> > > > On Wed, Oct 17, 2018 at 5:41 PM Pavel Tupitsyn  >
> > > > wrote:
> > > > >
> > > > > Thank you. Fix has been merged to master and cherry-picked to
> > >
> > > ignite-2.7.
> > > > >
> > > > > On Wed, Oct 17, 2018 at 1:26 PM Nikolay Izhikov <
> nizhi...@apache.org>
> > > >
> > > > wrote:
> > > > >
> > > > > > Pavel.
> > > > > >
> > > > > > Ok, I agree to include this ticket into 2.7
> > > > > > Let's do it.
> > > > > >
> > > > > > В Ср, 17/10/2018 в 13:20 +0300, Pavel Tupitsyn пишет:
> > > > > > > Nikolay,
> > > > > > >
> > > > > > > It completely breaks a major feature under certain conditions.
> I
> > > >
> > > > would
> > > > > > > consider it a blocker.
> > > > > > >
> > > > > > > On Wed, Oct 17, 2018 at 1:00 PM Nikolay Izhikov <
> > >
> > > nizhi...@apache.org
> > > > >
> > > > > > wrote:
> > > > > > >
> > > > > > > > Hello, Pavel.
> > > > > > > >
> > > > > > > > Is it a blocker?
> > > > > > > >
> > > > > > > > В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> > > > > > > > > Hi Igniters,
> > > > > > > > >
> > > > > > > > > I'd like to include IGNITE-9877 in 2.7, can we do that?
> > > > > > > > > The fix is ready, I'm waiting for TC run.
> > > > > > > > >
> > > > > > > > > Pavel
> > > > > > > > >
> > > > > > > > > On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван <
> > > >
> > > > vololo...@gmail.com>
> > > > > > > >
> > > > > > > > wrote:
> > > > > > > > >
> > > > > > > > > > Hi NIkolay,
> > > > > > > > > >
> > > > > > > > > > Thank you for keeping everybody focused! Regarding to my
> > >
> > > ticket
> > > > > > > > > > IGNITE-5935.
> > > > > > > > > > It is in final stage now. Tests look good. I believe
> that it
> > > >
> > > > will
> > > > > > be
> > > > > > > >
> > > > > > > > merged
> > > > > > > > > > in couple of days (at most).
> > > > > > > > > >
> > > > > > > > > > ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov <
> > > >
> > > > nizhi...@apache.org
> > > > > > > :
> > > > > > > > > >
> > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > >
> > > > > > > > > > > 9 tickets to go!
> > > > > > > > > > >
> > > > > > > > > > > Alexey Goncharuk - IGNITE-9784
> > > > > > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > > > Taras Ledkov - IGNITE-9882
> > > > > > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > > > >
> > > > > > > > > > > В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > > > > > > > > > > > Hi,
> > > > > > > > > > > >
> > > > > > > > > > > > I've found that IGNITE-9723 was resolved but didn't
> > >
> > > cherry
> > > > > > picked
> > > > > > > >
> > > > > > > > to
> > > > > > > > > > > > ignite-2.7 branch. So I'll do it.
> > > > > > > > > > > > On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov <
> > > > > > > >
> > > > > > > > nizhi...@apache.org>
> > > > > > > > > > >
> > > > > > > > > > > wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > > >
> > > > > > > > > > > > > We have 13 tickets mapped to 2.7.
> > > > > > > > > > > > > All tickets assigned to some contributor.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> > > > > > > > > > > > > Vladimir Ozerov - IGNITE-9887
> > > > > > > > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > > > > > > > Taras Ledkov - IGNITE-9864
> > > > > > > > > > > > > Igor Seliverstov   - IGNITE-9292
> > > > > > > > > > > > >
> > > > > > > > > > > > > В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura 

Re: Apache Ignite 2.7. Last Mile

2018-10-19 Thread Nikolay Izhikov
Hello, Igniters.

We have 6 tickets for 2.7

Roman Kondakov - IGNITE-9892, IGNITE-9663, IGNITE-9928
Igor Seliverstov - IGNITE-9911
Ivan Pavlukhin - IGNITE-5935, IGNITE-9944

В Чт, 18/10/2018 в 15:40 +0300, Andrey Kuznetsov пишет:
> I have got one more potential 2.7 blocker [1] with straightforward fix. I
> beleive it will not break any production use case, but it leads to test
> suite hang, thus affecting other urgent issues.
> 
> [1] https://issues.apache.org/jira/browse/IGNITE-9932
> 
> чт, 18 окт. 2018 г. в 14:59, Ivan Daschinsky :
> 
> > Hi! Is it possible to merge IGNITE-9854? Fix is pretty simple, but quite
> > important.
> > 
> > ср, 17 окт. 2018 г. в 17:49, Andrey Gura :
> > 
> > > JFYI
> > > 
> > > IGNITE-9737 and IGNITE-9710 are merged to release branch.
> > > On Wed, Oct 17, 2018 at 5:41 PM Pavel Tupitsyn 
> > > wrote:
> > > > 
> > > > Thank you. Fix has been merged to master and cherry-picked to
> > 
> > ignite-2.7.
> > > > 
> > > > On Wed, Oct 17, 2018 at 1:26 PM Nikolay Izhikov 
> > > 
> > > wrote:
> > > > 
> > > > > Pavel.
> > > > > 
> > > > > Ok, I agree to include this ticket into 2.7
> > > > > Let's do it.
> > > > > 
> > > > > В Ср, 17/10/2018 в 13:20 +0300, Pavel Tupitsyn пишет:
> > > > > > Nikolay,
> > > > > > 
> > > > > > It completely breaks a major feature under certain conditions. I
> > > 
> > > would
> > > > > > consider it a blocker.
> > > > > > 
> > > > > > On Wed, Oct 17, 2018 at 1:00 PM Nikolay Izhikov <
> > 
> > nizhi...@apache.org
> > > > 
> > > > > wrote:
> > > > > > 
> > > > > > > Hello, Pavel.
> > > > > > > 
> > > > > > > Is it a blocker?
> > > > > > > 
> > > > > > > В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> > > > > > > > Hi Igniters,
> > > > > > > > 
> > > > > > > > I'd like to include IGNITE-9877 in 2.7, can we do that?
> > > > > > > > The fix is ready, I'm waiting for TC run.
> > > > > > > > 
> > > > > > > > Pavel
> > > > > > > > 
> > > > > > > > On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван <
> > > 
> > > vololo...@gmail.com>
> > > > > > > 
> > > > > > > wrote:
> > > > > > > > 
> > > > > > > > > Hi NIkolay,
> > > > > > > > > 
> > > > > > > > > Thank you for keeping everybody focused! Regarding to my
> > 
> > ticket
> > > > > > > > > IGNITE-5935.
> > > > > > > > > It is in final stage now. Tests look good. I believe that it
> > > 
> > > will
> > > > > be
> > > > > > > 
> > > > > > > merged
> > > > > > > > > in couple of days (at most).
> > > > > > > > > 
> > > > > > > > > ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov <
> > > 
> > > nizhi...@apache.org
> > > > > > :
> > > > > > > > > 
> > > > > > > > > > Hello, Igniters.
> > > > > > > > > > 
> > > > > > > > > > 9 tickets to go!
> > > > > > > > > > 
> > > > > > > > > > Alexey Goncharuk - IGNITE-9784
> > > > > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > > Taras Ledkov - IGNITE-9882
> > > > > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > > > 
> > > > > > > > > > В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > > > > > > > > > > Hi,
> > > > > > > > > > > 
> > > > > > > > > > > I've found that IGNITE-9723 was resolved but didn't
> > 
> > cherry
> > > > > picked
> > > > > > > 
> > > > > > > to
> > > > > > > > > > > ignite-2.7 branch. So I'll do it.
> > > > > > > > > > > On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov <
> > > > > > > 
> > > > > > > nizhi...@apache.org>
> > > > > > > > > > 
> > > > > > > > > > wrote:
> > > > > > > > > > > > 
> > > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > > 
> > > > > > > > > > > > We have 13 tickets mapped to 2.7.
> > > > > > > > > > > > All tickets assigned to some contributor.
> > > > > > > > > > > > 
> > > > > > > > > > > > Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> > > > > > > > > > > > Vladimir Ozerov - IGNITE-9887
> > > > > > > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > > > > > > Taras Ledkov - IGNITE-9864
> > > > > > > > > > > > Igor Seliverstov   - IGNITE-9292
> > > > > > > > > > > > 
> > > > > > > > > > > > В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> > > > > > > > > > > > > Nikolay,
> > > > > > > > > > > > > 
> > > > > > > > > > > > > I'm looking at IGNITE-9737 and IGNITE-9710 which are
> > > > > 
> > > > > critical
> > > > > > > > > 
> > > > > > > > > issues
> > > > > > > > > > > > > from my point of view.
> > > > > > > > > > > > > I need some time for review, possible fixes and
> > 
> > merge.
> > > > > > > > > > > > > I will keep you informed.
> > > > > > > > > > > > > On Mon, Oct 15, 2018 at 1:46 PM 

Re: Apache Ignite 2.7. Last Mile

2018-10-18 Thread Andrey Kuznetsov
I have got one more potential 2.7 blocker [1] with straightforward fix. I
beleive it will not break any production use case, but it leads to test
suite hang, thus affecting other urgent issues.

[1] https://issues.apache.org/jira/browse/IGNITE-9932

чт, 18 окт. 2018 г. в 14:59, Ivan Daschinsky :

> Hi! Is it possible to merge IGNITE-9854? Fix is pretty simple, but quite
> important.
>
> ср, 17 окт. 2018 г. в 17:49, Andrey Gura :
>
> > JFYI
> >
> > IGNITE-9737 and IGNITE-9710 are merged to release branch.
> > On Wed, Oct 17, 2018 at 5:41 PM Pavel Tupitsyn 
> > wrote:
> > >
> > > Thank you. Fix has been merged to master and cherry-picked to
> ignite-2.7.
> > >
> > > On Wed, Oct 17, 2018 at 1:26 PM Nikolay Izhikov 
> > wrote:
> > >
> > > > Pavel.
> > > >
> > > > Ok, I agree to include this ticket into 2.7
> > > > Let's do it.
> > > >
> > > > В Ср, 17/10/2018 в 13:20 +0300, Pavel Tupitsyn пишет:
> > > > > Nikolay,
> > > > >
> > > > > It completely breaks a major feature under certain conditions. I
> > would
> > > > > consider it a blocker.
> > > > >
> > > > > On Wed, Oct 17, 2018 at 1:00 PM Nikolay Izhikov <
> nizhi...@apache.org
> > >
> > > > wrote:
> > > > >
> > > > > > Hello, Pavel.
> > > > > >
> > > > > > Is it a blocker?
> > > > > >
> > > > > > В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> > > > > > > Hi Igniters,
> > > > > > >
> > > > > > > I'd like to include IGNITE-9877 in 2.7, can we do that?
> > > > > > > The fix is ready, I'm waiting for TC run.
> > > > > > >
> > > > > > > Pavel
> > > > > > >
> > > > > > > On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван <
> > vololo...@gmail.com>
> > > > > >
> > > > > > wrote:
> > > > > > >
> > > > > > > > Hi NIkolay,
> > > > > > > >
> > > > > > > > Thank you for keeping everybody focused! Regarding to my
> ticket
> > > > > > > > IGNITE-5935.
> > > > > > > > It is in final stage now. Tests look good. I believe that it
> > will
> > > > be
> > > > > >
> > > > > > merged
> > > > > > > > in couple of days (at most).
> > > > > > > >
> > > > > > > > ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov <
> > nizhi...@apache.org
> > > > >:
> > > > > > > >
> > > > > > > > > Hello, Igniters.
> > > > > > > > >
> > > > > > > > > 9 tickets to go!
> > > > > > > > >
> > > > > > > > > Alexey Goncharuk - IGNITE-9784
> > > > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > Taras Ledkov - IGNITE-9882
> > > > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > >
> > > > > > > > > В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > > > > > > > > > Hi,
> > > > > > > > > >
> > > > > > > > > > I've found that IGNITE-9723 was resolved but didn't
> cherry
> > > > picked
> > > > > >
> > > > > > to
> > > > > > > > > > ignite-2.7 branch. So I'll do it.
> > > > > > > > > > On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov <
> > > > > >
> > > > > > nizhi...@apache.org>
> > > > > > > > >
> > > > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > >
> > > > > > > > > > > We have 13 tickets mapped to 2.7.
> > > > > > > > > > > All tickets assigned to some contributor.
> > > > > > > > > > >
> > > > > > > > > > > Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> > > > > > > > > > > Vladimir Ozerov - IGNITE-9887
> > > > > > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > > > > > Taras Ledkov - IGNITE-9864
> > > > > > > > > > > Igor Seliverstov   - IGNITE-9292
> > > > > > > > > > >
> > > > > > > > > > > В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> > > > > > > > > > > > Nikolay,
> > > > > > > > > > > >
> > > > > > > > > > > > I'm looking at IGNITE-9737 and IGNITE-9710 which are
> > > > critical
> > > > > > > >
> > > > > > > > issues
> > > > > > > > > > > > from my point of view.
> > > > > > > > > > > > I need some time for review, possible fixes and
> merge.
> > > > > > > > > > > > I will keep you informed.
> > > > > > > > > > > > On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego <
> > > > > >
> > > > > > isap...@apache.org>
> > > > > > > > >
> > > > > > > > > wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > Guys, Python client is in the master and ignite-2.7
> > > > already.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Best Regards,
> > > > > > > > > > > > > Igor
> > > > > > > > > > > > >
> > > > > > > > > > > > >
> > > > > > > > > > > > > On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov <
> > > > > > > > >
> > > > > > > > > voze...@gridgain.com>
> > > > > > > > > > > > > wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > > Nikolay,

Re: Apache Ignite 2.7. Last Mile

2018-10-18 Thread Ivan Daschinsky
Hi! Is it possible to merge IGNITE-9854? Fix is pretty simple, but quite
important.

ср, 17 окт. 2018 г. в 17:49, Andrey Gura :

> JFYI
>
> IGNITE-9737 and IGNITE-9710 are merged to release branch.
> On Wed, Oct 17, 2018 at 5:41 PM Pavel Tupitsyn 
> wrote:
> >
> > Thank you. Fix has been merged to master and cherry-picked to ignite-2.7.
> >
> > On Wed, Oct 17, 2018 at 1:26 PM Nikolay Izhikov 
> wrote:
> >
> > > Pavel.
> > >
> > > Ok, I agree to include this ticket into 2.7
> > > Let's do it.
> > >
> > > В Ср, 17/10/2018 в 13:20 +0300, Pavel Tupitsyn пишет:
> > > > Nikolay,
> > > >
> > > > It completely breaks a major feature under certain conditions. I
> would
> > > > consider it a blocker.
> > > >
> > > > On Wed, Oct 17, 2018 at 1:00 PM Nikolay Izhikov  >
> > > wrote:
> > > >
> > > > > Hello, Pavel.
> > > > >
> > > > > Is it a blocker?
> > > > >
> > > > > В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> > > > > > Hi Igniters,
> > > > > >
> > > > > > I'd like to include IGNITE-9877 in 2.7, can we do that?
> > > > > > The fix is ready, I'm waiting for TC run.
> > > > > >
> > > > > > Pavel
> > > > > >
> > > > > > On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван <
> vololo...@gmail.com>
> > > > >
> > > > > wrote:
> > > > > >
> > > > > > > Hi NIkolay,
> > > > > > >
> > > > > > > Thank you for keeping everybody focused! Regarding to my ticket
> > > > > > > IGNITE-5935.
> > > > > > > It is in final stage now. Tests look good. I believe that it
> will
> > > be
> > > > >
> > > > > merged
> > > > > > > in couple of days (at most).
> > > > > > >
> > > > > > > ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov <
> nizhi...@apache.org
> > > >:
> > > > > > >
> > > > > > > > Hello, Igniters.
> > > > > > > >
> > > > > > > > 9 tickets to go!
> > > > > > > >
> > > > > > > > Alexey Goncharuk - IGNITE-9784
> > > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > Taras Ledkov - IGNITE-9882
> > > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > >
> > > > > > > > В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > > > > > > > > Hi,
> > > > > > > > >
> > > > > > > > > I've found that IGNITE-9723 was resolved but didn't cherry
> > > picked
> > > > >
> > > > > to
> > > > > > > > > ignite-2.7 branch. So I'll do it.
> > > > > > > > > On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov <
> > > > >
> > > > > nizhi...@apache.org>
> > > > > > > >
> > > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > Hello, Igniters.
> > > > > > > > > >
> > > > > > > > > > We have 13 tickets mapped to 2.7.
> > > > > > > > > > All tickets assigned to some contributor.
> > > > > > > > > >
> > > > > > > > > > Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> > > > > > > > > > Vladimir Ozerov - IGNITE-9887
> > > > > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > > > > Taras Ledkov - IGNITE-9864
> > > > > > > > > > Igor Seliverstov   - IGNITE-9292
> > > > > > > > > >
> > > > > > > > > > В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> > > > > > > > > > > Nikolay,
> > > > > > > > > > >
> > > > > > > > > > > I'm looking at IGNITE-9737 and IGNITE-9710 which are
> > > critical
> > > > > > >
> > > > > > > issues
> > > > > > > > > > > from my point of view.
> > > > > > > > > > > I need some time for review, possible fixes and merge.
> > > > > > > > > > > I will keep you informed.
> > > > > > > > > > > On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego <
> > > > >
> > > > > isap...@apache.org>
> > > > > > > >
> > > > > > > > wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > Guys, Python client is in the master and ignite-2.7
> > > already.
> > > > > > > > > > > >
> > > > > > > > > > > > Best Regards,
> > > > > > > > > > > > Igor
> > > > > > > > > > > >
> > > > > > > > > > > >
> > > > > > > > > > > > On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov <
> > > > > > > >
> > > > > > > > voze...@gridgain.com>
> > > > > > > > > > > > wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > > Nikolay,
> > > > > > > > > > > > >
> > > > > > > > > > > > > AI 2.7 will include Python thin client. TC suite is
> > > crucial
> > > > > > >
> > > > > > > part
> > > > > > > > of this
> > > > > > > > > > > > > feature, so we should keep the ticket in AI 2.7
> scope.
> > > > > > > > > > > > >
> > > > > > > > > > > > > On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov <
> > > > > > > >
> > > > > > > > nizhi...@apache.org>
> > > > > > > > > > > > > wrote:
> > > > > > > > > > > > >
> > > > > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > There is no progress till 

Re: Apache Ignite 2.7. Last Mile

2018-10-17 Thread Andrey Gura
JFYI

IGNITE-9737 and IGNITE-9710 are merged to release branch.
On Wed, Oct 17, 2018 at 5:41 PM Pavel Tupitsyn  wrote:
>
> Thank you. Fix has been merged to master and cherry-picked to ignite-2.7.
>
> On Wed, Oct 17, 2018 at 1:26 PM Nikolay Izhikov  wrote:
>
> > Pavel.
> >
> > Ok, I agree to include this ticket into 2.7
> > Let's do it.
> >
> > В Ср, 17/10/2018 в 13:20 +0300, Pavel Tupitsyn пишет:
> > > Nikolay,
> > >
> > > It completely breaks a major feature under certain conditions. I would
> > > consider it a blocker.
> > >
> > > On Wed, Oct 17, 2018 at 1:00 PM Nikolay Izhikov 
> > wrote:
> > >
> > > > Hello, Pavel.
> > > >
> > > > Is it a blocker?
> > > >
> > > > В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> > > > > Hi Igniters,
> > > > >
> > > > > I'd like to include IGNITE-9877 in 2.7, can we do that?
> > > > > The fix is ready, I'm waiting for TC run.
> > > > >
> > > > > Pavel
> > > > >
> > > > > On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван 
> > > >
> > > > wrote:
> > > > >
> > > > > > Hi NIkolay,
> > > > > >
> > > > > > Thank you for keeping everybody focused! Regarding to my ticket
> > > > > > IGNITE-5935.
> > > > > > It is in final stage now. Tests look good. I believe that it will
> > be
> > > >
> > > > merged
> > > > > > in couple of days (at most).
> > > > > >
> > > > > > ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov  > >:
> > > > > >
> > > > > > > Hello, Igniters.
> > > > > > >
> > > > > > > 9 tickets to go!
> > > > > > >
> > > > > > > Alexey Goncharuk - IGNITE-9784
> > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > Taras Ledkov - IGNITE-9882
> > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > >
> > > > > > > В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > > > > > > > Hi,
> > > > > > > >
> > > > > > > > I've found that IGNITE-9723 was resolved but didn't cherry
> > picked
> > > >
> > > > to
> > > > > > > > ignite-2.7 branch. So I'll do it.
> > > > > > > > On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov <
> > > >
> > > > nizhi...@apache.org>
> > > > > > >
> > > > > > > wrote:
> > > > > > > > >
> > > > > > > > > Hello, Igniters.
> > > > > > > > >
> > > > > > > > > We have 13 tickets mapped to 2.7.
> > > > > > > > > All tickets assigned to some contributor.
> > > > > > > > >
> > > > > > > > > Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> > > > > > > > > Vladimir Ozerov - IGNITE-9887
> > > > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > > > Taras Ledkov - IGNITE-9864
> > > > > > > > > Igor Seliverstov   - IGNITE-9292
> > > > > > > > >
> > > > > > > > > В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> > > > > > > > > > Nikolay,
> > > > > > > > > >
> > > > > > > > > > I'm looking at IGNITE-9737 and IGNITE-9710 which are
> > critical
> > > > > >
> > > > > > issues
> > > > > > > > > > from my point of view.
> > > > > > > > > > I need some time for review, possible fixes and merge.
> > > > > > > > > > I will keep you informed.
> > > > > > > > > > On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego <
> > > >
> > > > isap...@apache.org>
> > > > > > >
> > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > Guys, Python client is in the master and ignite-2.7
> > already.
> > > > > > > > > > >
> > > > > > > > > > > Best Regards,
> > > > > > > > > > > Igor
> > > > > > > > > > >
> > > > > > > > > > >
> > > > > > > > > > > On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov <
> > > > > > >
> > > > > > > voze...@gridgain.com>
> > > > > > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > > Nikolay,
> > > > > > > > > > > >
> > > > > > > > > > > > AI 2.7 will include Python thin client. TC suite is
> > crucial
> > > > > >
> > > > > > part
> > > > > > > of this
> > > > > > > > > > > > feature, so we should keep the ticket in AI 2.7 scope.
> > > > > > > > > > > >
> > > > > > > > > > > > On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov <
> > > > > > >
> > > > > > > nizhi...@apache.org>
> > > > > > > > > > > > wrote:
> > > > > > > > > > > >
> > > > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > > >
> > > > > > > > > > > > > There is no progress till Friday.
> > > > > > > > > > > > > We have 14 tickets mapped to 2.7.
> > > > > > > > > > > > >
> > > > > > > > > > > > > В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov
> > пишет:
> > > > > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > We made some progress yesterday.
> > > > > > > > > > > > > >
> > > > > > > > > > > > > > Please, note, we have 1 new ticket mapped to 2.7
> > > > > > >
> > > > > > > "IGNITE-9852: Create
> 

Re: Apache Ignite 2.7. Last Mile

2018-10-17 Thread Pavel Tupitsyn
Thank you. Fix has been merged to master and cherry-picked to ignite-2.7.

On Wed, Oct 17, 2018 at 1:26 PM Nikolay Izhikov  wrote:

> Pavel.
>
> Ok, I agree to include this ticket into 2.7
> Let's do it.
>
> В Ср, 17/10/2018 в 13:20 +0300, Pavel Tupitsyn пишет:
> > Nikolay,
> >
> > It completely breaks a major feature under certain conditions. I would
> > consider it a blocker.
> >
> > On Wed, Oct 17, 2018 at 1:00 PM Nikolay Izhikov 
> wrote:
> >
> > > Hello, Pavel.
> > >
> > > Is it a blocker?
> > >
> > > В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> > > > Hi Igniters,
> > > >
> > > > I'd like to include IGNITE-9877 in 2.7, can we do that?
> > > > The fix is ready, I'm waiting for TC run.
> > > >
> > > > Pavel
> > > >
> > > > On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван 
> > >
> > > wrote:
> > > >
> > > > > Hi NIkolay,
> > > > >
> > > > > Thank you for keeping everybody focused! Regarding to my ticket
> > > > > IGNITE-5935.
> > > > > It is in final stage now. Tests look good. I believe that it will
> be
> > >
> > > merged
> > > > > in couple of days (at most).
> > > > >
> > > > > ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov  >:
> > > > >
> > > > > > Hello, Igniters.
> > > > > >
> > > > > > 9 tickets to go!
> > > > > >
> > > > > > Alexey Goncharuk - IGNITE-9784
> > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > Taras Ledkov - IGNITE-9882
> > > > > > Petr Ivanov - IGNITE-9852
> > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > Roman Kondakov - IGNITE-9663
> > > > > > Alexey Stelmak - IGNITE-9776
> > > > > >
> > > > > > В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > > > > > > Hi,
> > > > > > >
> > > > > > > I've found that IGNITE-9723 was resolved but didn't cherry
> picked
> > >
> > > to
> > > > > > > ignite-2.7 branch. So I'll do it.
> > > > > > > On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov <
> > >
> > > nizhi...@apache.org>
> > > > > >
> > > > > > wrote:
> > > > > > > >
> > > > > > > > Hello, Igniters.
> > > > > > > >
> > > > > > > > We have 13 tickets mapped to 2.7.
> > > > > > > > All tickets assigned to some contributor.
> > > > > > > >
> > > > > > > > Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> > > > > > > > Vladimir Ozerov - IGNITE-9887
> > > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > > Taras Ledkov - IGNITE-9864
> > > > > > > > Igor Seliverstov   - IGNITE-9292
> > > > > > > >
> > > > > > > > В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> > > > > > > > > Nikolay,
> > > > > > > > >
> > > > > > > > > I'm looking at IGNITE-9737 and IGNITE-9710 which are
> critical
> > > > >
> > > > > issues
> > > > > > > > > from my point of view.
> > > > > > > > > I need some time for review, possible fixes and merge.
> > > > > > > > > I will keep you informed.
> > > > > > > > > On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego <
> > >
> > > isap...@apache.org>
> > > > > >
> > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > Guys, Python client is in the master and ignite-2.7
> already.
> > > > > > > > > >
> > > > > > > > > > Best Regards,
> > > > > > > > > > Igor
> > > > > > > > > >
> > > > > > > > > >
> > > > > > > > > > On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov <
> > > > > >
> > > > > > voze...@gridgain.com>
> > > > > > > > > > wrote:
> > > > > > > > > >
> > > > > > > > > > > Nikolay,
> > > > > > > > > > >
> > > > > > > > > > > AI 2.7 will include Python thin client. TC suite is
> crucial
> > > > >
> > > > > part
> > > > > > of this
> > > > > > > > > > > feature, so we should keep the ticket in AI 2.7 scope.
> > > > > > > > > > >
> > > > > > > > > > > On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov <
> > > > > >
> > > > > > nizhi...@apache.org>
> > > > > > > > > > > wrote:
> > > > > > > > > > >
> > > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > >
> > > > > > > > > > > > There is no progress till Friday.
> > > > > > > > > > > > We have 14 tickets mapped to 2.7.
> > > > > > > > > > > >
> > > > > > > > > > > > В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov
> пишет:
> > > > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > > >
> > > > > > > > > > > > > We made some progress yesterday.
> > > > > > > > > > > > >
> > > > > > > > > > > > > Please, note, we have 1 new ticket mapped to 2.7
> > > > > >
> > > > > > "IGNITE-9852: Create
> > > > > > > > > > > >
> > > > > > > > > > > > TeamCity suite for Python thin client"
> > > > > > > > > > > > >
> > > > > > > > > > > > > This ticket doesn't sound like a blocker to me.
> Let's
> > > > > >
> > > > > > exclude it from
> > > > > > > > > > > >
> > > > > > > > > > > > release scope.
> > > > > > > > > > > > > Thoughts?
> > > > > > > > > > > > >
> > > > > > > > > > > > > Here is the list of 

Re: Apache Ignite 2.7. Last Mile

2018-10-17 Thread Nikolay Izhikov
Pavel.

Ok, I agree to include this ticket into 2.7
Let's do it.

В Ср, 17/10/2018 в 13:20 +0300, Pavel Tupitsyn пишет:
> Nikolay,
> 
> It completely breaks a major feature under certain conditions. I would
> consider it a blocker.
> 
> On Wed, Oct 17, 2018 at 1:00 PM Nikolay Izhikov  wrote:
> 
> > Hello, Pavel.
> > 
> > Is it a blocker?
> > 
> > В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> > > Hi Igniters,
> > > 
> > > I'd like to include IGNITE-9877 in 2.7, can we do that?
> > > The fix is ready, I'm waiting for TC run.
> > > 
> > > Pavel
> > > 
> > > On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван 
> > 
> > wrote:
> > > 
> > > > Hi NIkolay,
> > > > 
> > > > Thank you for keeping everybody focused! Regarding to my ticket
> > > > IGNITE-5935.
> > > > It is in final stage now. Tests look good. I believe that it will be
> > 
> > merged
> > > > in couple of days (at most).
> > > > 
> > > > ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov :
> > > > 
> > > > > Hello, Igniters.
> > > > > 
> > > > > 9 tickets to go!
> > > > > 
> > > > > Alexey Goncharuk - IGNITE-9784
> > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > Taras Ledkov - IGNITE-9882
> > > > > Petr Ivanov - IGNITE-9852
> > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > Roman Kondakov - IGNITE-9663
> > > > > Alexey Stelmak - IGNITE-9776
> > > > > 
> > > > > В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > > > > > Hi,
> > > > > > 
> > > > > > I've found that IGNITE-9723 was resolved but didn't cherry picked
> > 
> > to
> > > > > > ignite-2.7 branch. So I'll do it.
> > > > > > On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov <
> > 
> > nizhi...@apache.org>
> > > > > 
> > > > > wrote:
> > > > > > > 
> > > > > > > Hello, Igniters.
> > > > > > > 
> > > > > > > We have 13 tickets mapped to 2.7.
> > > > > > > All tickets assigned to some contributor.
> > > > > > > 
> > > > > > > Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> > > > > > > Vladimir Ozerov - IGNITE-9887
> > > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > Petr Ivanov - IGNITE-9852
> > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > Roman Kondakov - IGNITE-9663
> > > > > > > Taras Ledkov - IGNITE-9864
> > > > > > > Igor Seliverstov   - IGNITE-9292
> > > > > > > 
> > > > > > > В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> > > > > > > > Nikolay,
> > > > > > > > 
> > > > > > > > I'm looking at IGNITE-9737 and IGNITE-9710 which are critical
> > > > 
> > > > issues
> > > > > > > > from my point of view.
> > > > > > > > I need some time for review, possible fixes and merge.
> > > > > > > > I will keep you informed.
> > > > > > > > On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego <
> > 
> > isap...@apache.org>
> > > > > 
> > > > > wrote:
> > > > > > > > > 
> > > > > > > > > Guys, Python client is in the master and ignite-2.7 already.
> > > > > > > > > 
> > > > > > > > > Best Regards,
> > > > > > > > > Igor
> > > > > > > > > 
> > > > > > > > > 
> > > > > > > > > On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov <
> > > > > 
> > > > > voze...@gridgain.com>
> > > > > > > > > wrote:
> > > > > > > > > 
> > > > > > > > > > Nikolay,
> > > > > > > > > > 
> > > > > > > > > > AI 2.7 will include Python thin client. TC suite is crucial
> > > > 
> > > > part
> > > > > of this
> > > > > > > > > > feature, so we should keep the ticket in AI 2.7 scope.
> > > > > > > > > > 
> > > > > > > > > > On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov <
> > > > > 
> > > > > nizhi...@apache.org>
> > > > > > > > > > wrote:
> > > > > > > > > > 
> > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > 
> > > > > > > > > > > There is no progress till Friday.
> > > > > > > > > > > We have 14 tickets mapped to 2.7.
> > > > > > > > > > > 
> > > > > > > > > > > В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov пишет:
> > > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > > > 
> > > > > > > > > > > > We made some progress yesterday.
> > > > > > > > > > > > 
> > > > > > > > > > > > Please, note, we have 1 new ticket mapped to 2.7
> > > > > 
> > > > > "IGNITE-9852: Create
> > > > > > > > > > > 
> > > > > > > > > > > TeamCity suite for Python thin client"
> > > > > > > > > > > > 
> > > > > > > > > > > > This ticket doesn't sound like a blocker to me. Let's
> > > > > 
> > > > > exclude it from
> > > > > > > > > > > 
> > > > > > > > > > > release scope.
> > > > > > > > > > > > Thoughts?
> > > > > > > > > > > > 
> > > > > > > > > > > > Here is the list of remaining tickets(14) mapped to
> > 
> > 2.7.
> > > > > > > > > > > > 
> > > > > > > > > > > > Peter Ivanov - IGNITE-9852, IGNITE-9685,
> > > > > > > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > > > > > > > > Dmitry Melnichuk   - IGNITE-7782
> 

Re: Apache Ignite 2.7. Last Mile

2018-10-17 Thread Pavel Tupitsyn
Nikolay,

It completely breaks a major feature under certain conditions. I would
consider it a blocker.

On Wed, Oct 17, 2018 at 1:00 PM Nikolay Izhikov  wrote:

> Hello, Pavel.
>
> Is it a blocker?
>
> В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> > Hi Igniters,
> >
> > I'd like to include IGNITE-9877 in 2.7, can we do that?
> > The fix is ready, I'm waiting for TC run.
> >
> > Pavel
> >
> > On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван 
> wrote:
> >
> > > Hi NIkolay,
> > >
> > > Thank you for keeping everybody focused! Regarding to my ticket
> > > IGNITE-5935.
> > > It is in final stage now. Tests look good. I believe that it will be
> merged
> > > in couple of days (at most).
> > >
> > > ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov :
> > >
> > > > Hello, Igniters.
> > > >
> > > > 9 tickets to go!
> > > >
> > > > Alexey Goncharuk - IGNITE-9784
> > > > Dmitriy Govorukhin - IGNITE-9898
> > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > Taras Ledkov - IGNITE-9882
> > > > Petr Ivanov - IGNITE-9852
> > > > Ivan Pavlukhin - IGNITE-5935
> > > > Roman Kondakov - IGNITE-9663
> > > > Alexey Stelmak - IGNITE-9776
> > > >
> > > > В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > > > > Hi,
> > > > >
> > > > > I've found that IGNITE-9723 was resolved but didn't cherry picked
> to
> > > > > ignite-2.7 branch. So I'll do it.
> > > > > On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov <
> nizhi...@apache.org>
> > > >
> > > > wrote:
> > > > > >
> > > > > > Hello, Igniters.
> > > > > >
> > > > > > We have 13 tickets mapped to 2.7.
> > > > > > All tickets assigned to some contributor.
> > > > > >
> > > > > > Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> > > > > > Vladimir Ozerov - IGNITE-9887
> > > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > Petr Ivanov - IGNITE-9852
> > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > Roman Kondakov - IGNITE-9663
> > > > > > Taras Ledkov - IGNITE-9864
> > > > > > Igor Seliverstov   - IGNITE-9292
> > > > > >
> > > > > > В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> > > > > > > Nikolay,
> > > > > > >
> > > > > > > I'm looking at IGNITE-9737 and IGNITE-9710 which are critical
> > >
> > > issues
> > > > > > > from my point of view.
> > > > > > > I need some time for review, possible fixes and merge.
> > > > > > > I will keep you informed.
> > > > > > > On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego <
> isap...@apache.org>
> > > >
> > > > wrote:
> > > > > > > >
> > > > > > > > Guys, Python client is in the master and ignite-2.7 already.
> > > > > > > >
> > > > > > > > Best Regards,
> > > > > > > > Igor
> > > > > > > >
> > > > > > > >
> > > > > > > > On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov <
> > > >
> > > > voze...@gridgain.com>
> > > > > > > > wrote:
> > > > > > > >
> > > > > > > > > Nikolay,
> > > > > > > > >
> > > > > > > > > AI 2.7 will include Python thin client. TC suite is crucial
> > >
> > > part
> > > > of this
> > > > > > > > > feature, so we should keep the ticket in AI 2.7 scope.
> > > > > > > > >
> > > > > > > > > On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov <
> > > >
> > > > nizhi...@apache.org>
> > > > > > > > > wrote:
> > > > > > > > >
> > > > > > > > > > Hello, Igniters.
> > > > > > > > > >
> > > > > > > > > > There is no progress till Friday.
> > > > > > > > > > We have 14 tickets mapped to 2.7.
> > > > > > > > > >
> > > > > > > > > > В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov пишет:
> > > > > > > > > > > Hello, Igniters.
> > > > > > > > > > >
> > > > > > > > > > > We made some progress yesterday.
> > > > > > > > > > >
> > > > > > > > > > > Please, note, we have 1 new ticket mapped to 2.7
> > > >
> > > > "IGNITE-9852: Create
> > > > > > > > > >
> > > > > > > > > > TeamCity suite for Python thin client"
> > > > > > > > > > >
> > > > > > > > > > > This ticket doesn't sound like a blocker to me. Let's
> > > >
> > > > exclude it from
> > > > > > > > > >
> > > > > > > > > > release scope.
> > > > > > > > > > > Thoughts?
> > > > > > > > > > >
> > > > > > > > > > > Here is the list of remaining tickets(14) mapped to
> 2.7.
> > > > > > > > > > >
> > > > > > > > > > > Peter Ivanov - IGNITE-9852, IGNITE-9685,
> > > > > > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > > > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > > > Yury Babak - IGNITE-8670
> > > > > > > > > > > Roman Kondakov - IGNITE-7953
> > > > > > > > > > > Igor Sapego  - IGNITE-9620
> > > > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > > > >
> > > > > > > > > > > Unassigned:
> > > > > > > > > > >
> > > > > > > > > > > IGNITE-9663 - MVCC: Data node failure can cause TX
> hanging.
> > > > > > > > > > >
> > > > > > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-10-17 Thread Nikolay Izhikov
Hello, Pavel.

Is it a blocker?

В Ср, 17/10/2018 в 12:58 +0300, Pavel Tupitsyn пишет:
> Hi Igniters,
> 
> I'd like to include IGNITE-9877 in 2.7, can we do that?
> The fix is ready, I'm waiting for TC run.
> 
> Pavel
> 
> On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван  wrote:
> 
> > Hi NIkolay,
> > 
> > Thank you for keeping everybody focused! Regarding to my ticket
> > IGNITE-5935.
> > It is in final stage now. Tests look good. I believe that it will be merged
> > in couple of days (at most).
> > 
> > ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov :
> > 
> > > Hello, Igniters.
> > > 
> > > 9 tickets to go!
> > > 
> > > Alexey Goncharuk - IGNITE-9784
> > > Dmitriy Govorukhin - IGNITE-9898
> > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > Taras Ledkov - IGNITE-9882
> > > Petr Ivanov - IGNITE-9852
> > > Ivan Pavlukhin - IGNITE-5935
> > > Roman Kondakov - IGNITE-9663
> > > Alexey Stelmak - IGNITE-9776
> > > 
> > > В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > > > Hi,
> > > > 
> > > > I've found that IGNITE-9723 was resolved but didn't cherry picked to
> > > > ignite-2.7 branch. So I'll do it.
> > > > On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov 
> > > 
> > > wrote:
> > > > > 
> > > > > Hello, Igniters.
> > > > > 
> > > > > We have 13 tickets mapped to 2.7.
> > > > > All tickets assigned to some contributor.
> > > > > 
> > > > > Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> > > > > Vladimir Ozerov - IGNITE-9887
> > > > > Dmitriy Govorukhin - IGNITE-9898
> > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > Petr Ivanov - IGNITE-9852
> > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > Alexey Stelmak - IGNITE-9776
> > > > > Roman Kondakov - IGNITE-9663
> > > > > Taras Ledkov - IGNITE-9864
> > > > > Igor Seliverstov   - IGNITE-9292
> > > > > 
> > > > > В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> > > > > > Nikolay,
> > > > > > 
> > > > > > I'm looking at IGNITE-9737 and IGNITE-9710 which are critical
> > 
> > issues
> > > > > > from my point of view.
> > > > > > I need some time for review, possible fixes and merge.
> > > > > > I will keep you informed.
> > > > > > On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego 
> > > 
> > > wrote:
> > > > > > > 
> > > > > > > Guys, Python client is in the master and ignite-2.7 already.
> > > > > > > 
> > > > > > > Best Regards,
> > > > > > > Igor
> > > > > > > 
> > > > > > > 
> > > > > > > On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov <
> > > 
> > > voze...@gridgain.com>
> > > > > > > wrote:
> > > > > > > 
> > > > > > > > Nikolay,
> > > > > > > > 
> > > > > > > > AI 2.7 will include Python thin client. TC suite is crucial
> > 
> > part
> > > of this
> > > > > > > > feature, so we should keep the ticket in AI 2.7 scope.
> > > > > > > > 
> > > > > > > > On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov <
> > > 
> > > nizhi...@apache.org>
> > > > > > > > wrote:
> > > > > > > > 
> > > > > > > > > Hello, Igniters.
> > > > > > > > > 
> > > > > > > > > There is no progress till Friday.
> > > > > > > > > We have 14 tickets mapped to 2.7.
> > > > > > > > > 
> > > > > > > > > В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov пишет:
> > > > > > > > > > Hello, Igniters.
> > > > > > > > > > 
> > > > > > > > > > We made some progress yesterday.
> > > > > > > > > > 
> > > > > > > > > > Please, note, we have 1 new ticket mapped to 2.7
> > > 
> > > "IGNITE-9852: Create
> > > > > > > > > 
> > > > > > > > > TeamCity suite for Python thin client"
> > > > > > > > > > 
> > > > > > > > > > This ticket doesn't sound like a blocker to me. Let's
> > > 
> > > exclude it from
> > > > > > > > > 
> > > > > > > > > release scope.
> > > > > > > > > > Thoughts?
> > > > > > > > > > 
> > > > > > > > > > Here is the list of remaining tickets(14) mapped to 2.7.
> > > > > > > > > > 
> > > > > > > > > > Peter Ivanov - IGNITE-9852, IGNITE-9685,
> > > > > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > > Yury Babak - IGNITE-8670
> > > > > > > > > > Roman Kondakov - IGNITE-7953
> > > > > > > > > > Igor Sapego  - IGNITE-9620
> > > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > > > 
> > > > > > > > > > Unassigned:
> > > > > > > > > > 
> > > > > > > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > > > > > > > 
> > > > > > > > > > 
> > > > > > > > > > В Чт, 11/10/2018 в 13:50 +0300, Nikolay Izhikov пишет:
> > > > > > > > > > > Alexey, we all agreed to merge in 2.7 blockers only.
> > > > > > > > > > > 
> > > > > > > > > > > Is this a blocker?
> > > > > > > > > > > 
> > > > > > > > > > > Anyway, you are more experienced Igniter that I am.
> > > > > > > > > > > If you think we should include this ticket to 2.7 -
> > > 
> > > please, do it.
> > > > > > > > > > > 
> > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-10-17 Thread Pavel Tupitsyn
Hi Igniters,

I'd like to include IGNITE-9877 in 2.7, can we do that?
The fix is ready, I'm waiting for TC run.

Pavel

On Wed, Oct 17, 2018 at 11:45 AM Павлухин Иван  wrote:

> Hi NIkolay,
>
> Thank you for keeping everybody focused! Regarding to my ticket
> IGNITE-5935.
> It is in final stage now. Tests look good. I believe that it will be merged
> in couple of days (at most).
>
> ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov :
>
> > Hello, Igniters.
> >
> > 9 tickets to go!
> >
> > Alexey Goncharuk - IGNITE-9784
> > Dmitriy Govorukhin - IGNITE-9898
> > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > Taras Ledkov - IGNITE-9882
> > Petr Ivanov - IGNITE-9852
> > Ivan Pavlukhin - IGNITE-5935
> > Roman Kondakov - IGNITE-9663
> > Alexey Stelmak - IGNITE-9776
> >
> > В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > > Hi,
> > >
> > > I've found that IGNITE-9723 was resolved but didn't cherry picked to
> > > ignite-2.7 branch. So I'll do it.
> > > On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov 
> > wrote:
> > > >
> > > > Hello, Igniters.
> > > >
> > > > We have 13 tickets mapped to 2.7.
> > > > All tickets assigned to some contributor.
> > > >
> > > > Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> > > > Vladimir Ozerov - IGNITE-9887
> > > > Dmitriy Govorukhin - IGNITE-9898
> > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > Petr Ivanov - IGNITE-9852
> > > > Ivan Pavlukhin - IGNITE-5935
> > > > Alexey Stelmak - IGNITE-9776
> > > > Roman Kondakov - IGNITE-9663
> > > > Taras Ledkov - IGNITE-9864
> > > > Igor Seliverstov   - IGNITE-9292
> > > >
> > > > В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> > > > > Nikolay,
> > > > >
> > > > > I'm looking at IGNITE-9737 and IGNITE-9710 which are critical
> issues
> > > > > from my point of view.
> > > > > I need some time for review, possible fixes and merge.
> > > > > I will keep you informed.
> > > > > On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego 
> > wrote:
> > > > > >
> > > > > > Guys, Python client is in the master and ignite-2.7 already.
> > > > > >
> > > > > > Best Regards,
> > > > > > Igor
> > > > > >
> > > > > >
> > > > > > On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov <
> > voze...@gridgain.com>
> > > > > > wrote:
> > > > > >
> > > > > > > Nikolay,
> > > > > > >
> > > > > > > AI 2.7 will include Python thin client. TC suite is crucial
> part
> > of this
> > > > > > > feature, so we should keep the ticket in AI 2.7 scope.
> > > > > > >
> > > > > > > On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov <
> > nizhi...@apache.org>
> > > > > > > wrote:
> > > > > > >
> > > > > > > > Hello, Igniters.
> > > > > > > >
> > > > > > > > There is no progress till Friday.
> > > > > > > > We have 14 tickets mapped to 2.7.
> > > > > > > >
> > > > > > > > В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov пишет:
> > > > > > > > > Hello, Igniters.
> > > > > > > > >
> > > > > > > > > We made some progress yesterday.
> > > > > > > > >
> > > > > > > > > Please, note, we have 1 new ticket mapped to 2.7
> > "IGNITE-9852: Create
> > > > > > > >
> > > > > > > > TeamCity suite for Python thin client"
> > > > > > > > >
> > > > > > > > > This ticket doesn't sound like a blocker to me. Let's
> > exclude it from
> > > > > > > >
> > > > > > > > release scope.
> > > > > > > > > Thoughts?
> > > > > > > > >
> > > > > > > > > Here is the list of remaining tickets(14) mapped to 2.7.
> > > > > > > > >
> > > > > > > > > Peter Ivanov - IGNITE-9852, IGNITE-9685,
> > > > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > Yury Babak - IGNITE-8670
> > > > > > > > > Roman Kondakov - IGNITE-7953
> > > > > > > > > Igor Sapego  - IGNITE-9620
> > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > >
> > > > > > > > > Unassigned:
> > > > > > > > >
> > > > > > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > > > > > >
> > > > > > > > >
> > > > > > > > > В Чт, 11/10/2018 в 13:50 +0300, Nikolay Izhikov пишет:
> > > > > > > > > > Alexey, we all agreed to merge in 2.7 blockers only.
> > > > > > > > > >
> > > > > > > > > > Is this a blocker?
> > > > > > > > > >
> > > > > > > > > > Anyway, you are more experienced Igniter that I am.
> > > > > > > > > > If you think we should include this ticket to 2.7 -
> > please, do it.
> > > > > > > > > >
> > > > > > > > > > В Чт, 11/10/2018 в 13:08 +0300, Alexey Goncharuk пишет:
> > > > > > > > > > > Nikolay,
> > > > > > > > > > >
> > > > > > > > > > > I am waiting for final benchmark results for 9784,
> after
> > that I
> > > > > > >
> > > > > > > will
> > > > > > > > merge
> > > > > > > > > > > the change.
> > > > > > > > > > >
> > > > > > > > > > > On the subject of Ignite 2.7 scope, our fellow Igniter
> > Alexey
> > > > > > > >
> > > > > > > > Platonov 

Re: Apache Ignite 2.7. Last Mile

2018-10-17 Thread Павлухин Иван
Hi NIkolay,

Thank you for keeping everybody focused! Regarding to my ticket IGNITE-5935.
It is in final stage now. Tests look good. I believe that it will be merged
in couple of days (at most).

ср, 17 окт. 2018 г. в 11:39, Nikolay Izhikov :

> Hello, Igniters.
>
> 9 tickets to go!
>
> Alexey Goncharuk - IGNITE-9784
> Dmitriy Govorukhin - IGNITE-9898
> Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> Taras Ledkov - IGNITE-9882
> Petr Ivanov - IGNITE-9852
> Ivan Pavlukhin - IGNITE-5935
> Roman Kondakov - IGNITE-9663
> Alexey Stelmak - IGNITE-9776
>
> В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> > Hi,
> >
> > I've found that IGNITE-9723 was resolved but didn't cherry picked to
> > ignite-2.7 branch. So I'll do it.
> > On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov 
> wrote:
> > >
> > > Hello, Igniters.
> > >
> > > We have 13 tickets mapped to 2.7.
> > > All tickets assigned to some contributor.
> > >
> > > Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> > > Vladimir Ozerov - IGNITE-9887
> > > Dmitriy Govorukhin - IGNITE-9898
> > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > Petr Ivanov - IGNITE-9852
> > > Ivan Pavlukhin - IGNITE-5935
> > > Alexey Stelmak - IGNITE-9776
> > > Roman Kondakov - IGNITE-9663
> > > Taras Ledkov - IGNITE-9864
> > > Igor Seliverstov   - IGNITE-9292
> > >
> > > В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> > > > Nikolay,
> > > >
> > > > I'm looking at IGNITE-9737 and IGNITE-9710 which are critical issues
> > > > from my point of view.
> > > > I need some time for review, possible fixes and merge.
> > > > I will keep you informed.
> > > > On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego 
> wrote:
> > > > >
> > > > > Guys, Python client is in the master and ignite-2.7 already.
> > > > >
> > > > > Best Regards,
> > > > > Igor
> > > > >
> > > > >
> > > > > On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov <
> voze...@gridgain.com>
> > > > > wrote:
> > > > >
> > > > > > Nikolay,
> > > > > >
> > > > > > AI 2.7 will include Python thin client. TC suite is crucial part
> of this
> > > > > > feature, so we should keep the ticket in AI 2.7 scope.
> > > > > >
> > > > > > On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov <
> nizhi...@apache.org>
> > > > > > wrote:
> > > > > >
> > > > > > > Hello, Igniters.
> > > > > > >
> > > > > > > There is no progress till Friday.
> > > > > > > We have 14 tickets mapped to 2.7.
> > > > > > >
> > > > > > > В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov пишет:
> > > > > > > > Hello, Igniters.
> > > > > > > >
> > > > > > > > We made some progress yesterday.
> > > > > > > >
> > > > > > > > Please, note, we have 1 new ticket mapped to 2.7
> "IGNITE-9852: Create
> > > > > > >
> > > > > > > TeamCity suite for Python thin client"
> > > > > > > >
> > > > > > > > This ticket doesn't sound like a blocker to me. Let's
> exclude it from
> > > > > > >
> > > > > > > release scope.
> > > > > > > > Thoughts?
> > > > > > > >
> > > > > > > > Here is the list of remaining tickets(14) mapped to 2.7.
> > > > > > > >
> > > > > > > > Peter Ivanov - IGNITE-9852, IGNITE-9685,
> > > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > Yury Babak - IGNITE-8670
> > > > > > > > Roman Kondakov - IGNITE-7953
> > > > > > > > Igor Sapego  - IGNITE-9620
> > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > >
> > > > > > > > Unassigned:
> > > > > > > >
> > > > > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > > > > >
> > > > > > > >
> > > > > > > > В Чт, 11/10/2018 в 13:50 +0300, Nikolay Izhikov пишет:
> > > > > > > > > Alexey, we all agreed to merge in 2.7 blockers only.
> > > > > > > > >
> > > > > > > > > Is this a blocker?
> > > > > > > > >
> > > > > > > > > Anyway, you are more experienced Igniter that I am.
> > > > > > > > > If you think we should include this ticket to 2.7 -
> please, do it.
> > > > > > > > >
> > > > > > > > > В Чт, 11/10/2018 в 13:08 +0300, Alexey Goncharuk пишет:
> > > > > > > > > > Nikolay,
> > > > > > > > > >
> > > > > > > > > > I am waiting for final benchmark results for 9784, after
> that I
> > > > > >
> > > > > > will
> > > > > > > merge
> > > > > > > > > > the change.
> > > > > > > > > >
> > > > > > > > > > On the subject of Ignite 2.7 scope, our fellow Igniter
> Alexey
> > > > > > >
> > > > > > > Platonov have
> > > > > > > > > > found another case when a failure handler is incorrectly
> called on
> > > > > > >
> > > > > > > node
> > > > > > > > > > stop: https://issues.apache.org/jira/browse/IGNITE-9834.
> The case
> > > > > > >
> > > > > > > is rare,
> > > > > > > > > > but it is quite an unpleasant UX. Should we include it
> to 2.7 as
> > > > > > >
> > > > > > > well?
> > > > > > > > > >
> > > > > > > > > > чт, 11 окт. 2018 г. в 11:22, Nikolay Izhikov 

Re: Apache Ignite 2.7. Last Mile

2018-10-17 Thread Nikolay Izhikov
Hello, Igniters.

9 tickets to go!

Alexey Goncharuk - IGNITE-9784
Dmitriy Govorukhin - IGNITE-9898
Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
Taras Ledkov - IGNITE-9882
Petr Ivanov - IGNITE-9852
Ivan Pavlukhin - IGNITE-5935
Roman Kondakov - IGNITE-9663
Alexey Stelmak - IGNITE-9776

В Вт, 16/10/2018 в 16:20 +0300, Andrey Gura пишет:
> Hi,
> 
> I've found that IGNITE-9723 was resolved but didn't cherry picked to
> ignite-2.7 branch. So I'll do it.
> On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov  wrote:
> > 
> > Hello, Igniters.
> > 
> > We have 13 tickets mapped to 2.7.
> > All tickets assigned to some contributor.
> > 
> > Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> > Vladimir Ozerov - IGNITE-9887
> > Dmitriy Govorukhin - IGNITE-9898
> > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > Petr Ivanov - IGNITE-9852
> > Ivan Pavlukhin - IGNITE-5935
> > Alexey Stelmak - IGNITE-9776
> > Roman Kondakov - IGNITE-9663
> > Taras Ledkov - IGNITE-9864
> > Igor Seliverstov   - IGNITE-9292
> > 
> > В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> > > Nikolay,
> > > 
> > > I'm looking at IGNITE-9737 and IGNITE-9710 which are critical issues
> > > from my point of view.
> > > I need some time for review, possible fixes and merge.
> > > I will keep you informed.
> > > On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego  wrote:
> > > > 
> > > > Guys, Python client is in the master and ignite-2.7 already.
> > > > 
> > > > Best Regards,
> > > > Igor
> > > > 
> > > > 
> > > > On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov 
> > > > wrote:
> > > > 
> > > > > Nikolay,
> > > > > 
> > > > > AI 2.7 will include Python thin client. TC suite is crucial part of 
> > > > > this
> > > > > feature, so we should keep the ticket in AI 2.7 scope.
> > > > > 
> > > > > On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov 
> > > > > wrote:
> > > > > 
> > > > > > Hello, Igniters.
> > > > > > 
> > > > > > There is no progress till Friday.
> > > > > > We have 14 tickets mapped to 2.7.
> > > > > > 
> > > > > > В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov пишет:
> > > > > > > Hello, Igniters.
> > > > > > > 
> > > > > > > We made some progress yesterday.
> > > > > > > 
> > > > > > > Please, note, we have 1 new ticket mapped to 2.7 "IGNITE-9852: 
> > > > > > > Create
> > > > > > 
> > > > > > TeamCity suite for Python thin client"
> > > > > > > 
> > > > > > > This ticket doesn't sound like a blocker to me. Let's exclude it 
> > > > > > > from
> > > > > > 
> > > > > > release scope.
> > > > > > > Thoughts?
> > > > > > > 
> > > > > > > Here is the list of remaining tickets(14) mapped to 2.7.
> > > > > > > 
> > > > > > > Peter Ivanov - IGNITE-9852, IGNITE-9685,
> > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > Yury Babak - IGNITE-8670
> > > > > > > Roman Kondakov - IGNITE-7953
> > > > > > > Igor Sapego  - IGNITE-9620
> > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > 
> > > > > > > Unassigned:
> > > > > > > 
> > > > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > > > > 
> > > > > > > 
> > > > > > > В Чт, 11/10/2018 в 13:50 +0300, Nikolay Izhikov пишет:
> > > > > > > > Alexey, we all agreed to merge in 2.7 blockers only.
> > > > > > > > 
> > > > > > > > Is this a blocker?
> > > > > > > > 
> > > > > > > > Anyway, you are more experienced Igniter that I am.
> > > > > > > > If you think we should include this ticket to 2.7 - please, do 
> > > > > > > > it.
> > > > > > > > 
> > > > > > > > В Чт, 11/10/2018 в 13:08 +0300, Alexey Goncharuk пишет:
> > > > > > > > > Nikolay,
> > > > > > > > > 
> > > > > > > > > I am waiting for final benchmark results for 9784, after that 
> > > > > > > > > I
> > > > > 
> > > > > will
> > > > > > merge
> > > > > > > > > the change.
> > > > > > > > > 
> > > > > > > > > On the subject of Ignite 2.7 scope, our fellow Igniter Alexey
> > > > > > 
> > > > > > Platonov have
> > > > > > > > > found another case when a failure handler is incorrectly 
> > > > > > > > > called on
> > > > > > 
> > > > > > node
> > > > > > > > > stop: https://issues.apache.org/jira/browse/IGNITE-9834. The 
> > > > > > > > > case
> > > > > > 
> > > > > > is rare,
> > > > > > > > > but it is quite an unpleasant UX. Should we include it to 2.7 
> > > > > > > > > as
> > > > > > 
> > > > > > well?
> > > > > > > > > 
> > > > > > > > > чт, 11 окт. 2018 г. в 11:22, Nikolay Izhikov 
> > > > > > > > >  > > > > > 
> > > > > > :
> > > > > > > > > 
> > > > > > > > > > Hello, Igniters.
> > > > > > > > > > 
> > > > > > > > > > We made a good progress yesterday.
> > > > > > > > > > 
> > > > > > > > > > Here is the list of remaining tickets(17) mapped to 2.7:
> > > > > > > > > > 
> > > > > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > > > > Taras Ledkov   - 

Re: Apache Ignite 2.7. Last Mile

2018-10-16 Thread Andrey Gura
Hi,

I've found that IGNITE-9723 was resolved but didn't cherry picked to
ignite-2.7 branch. So I'll do it.
On Tue, Oct 16, 2018 at 2:30 PM Nikolay Izhikov  wrote:
>
> Hello, Igniters.
>
> We have 13 tickets mapped to 2.7.
> All tickets assigned to some contributor.
>
> Alexey Gonchruk - IGNITE-9784, IGNITE-9895
> Vladimir Ozerov - IGNITE-9887
> Dmitriy Govorukhin - IGNITE-9898
> Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> Petr Ivanov - IGNITE-9852
> Ivan Pavlukhin - IGNITE-5935
> Alexey Stelmak - IGNITE-9776
> Roman Kondakov - IGNITE-9663
> Taras Ledkov - IGNITE-9864
> Igor Seliverstov   - IGNITE-9292
>
> В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> > Nikolay,
> >
> > I'm looking at IGNITE-9737 and IGNITE-9710 which are critical issues
> > from my point of view.
> > I need some time for review, possible fixes and merge.
> > I will keep you informed.
> > On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego  wrote:
> > >
> > > Guys, Python client is in the master and ignite-2.7 already.
> > >
> > > Best Regards,
> > > Igor
> > >
> > >
> > > On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov 
> > > wrote:
> > >
> > > > Nikolay,
> > > >
> > > > AI 2.7 will include Python thin client. TC suite is crucial part of this
> > > > feature, so we should keep the ticket in AI 2.7 scope.
> > > >
> > > > On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov 
> > > > wrote:
> > > >
> > > > > Hello, Igniters.
> > > > >
> > > > > There is no progress till Friday.
> > > > > We have 14 tickets mapped to 2.7.
> > > > >
> > > > > В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov пишет:
> > > > > > Hello, Igniters.
> > > > > >
> > > > > > We made some progress yesterday.
> > > > > >
> > > > > > Please, note, we have 1 new ticket mapped to 2.7 "IGNITE-9852: 
> > > > > > Create
> > > > >
> > > > > TeamCity suite for Python thin client"
> > > > > >
> > > > > > This ticket doesn't sound like a blocker to me. Let's exclude it 
> > > > > > from
> > > > >
> > > > > release scope.
> > > > > > Thoughts?
> > > > > >
> > > > > > Here is the list of remaining tickets(14) mapped to 2.7.
> > > > > >
> > > > > > Peter Ivanov - IGNITE-9852, IGNITE-9685,
> > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > Yury Babak - IGNITE-8670
> > > > > > Roman Kondakov - IGNITE-7953
> > > > > > Igor Sapego  - IGNITE-9620
> > > > > > Alexey Stelmak - IGNITE-9776
> > > > > >
> > > > > > Unassigned:
> > > > > >
> > > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > > >
> > > > > >
> > > > > > В Чт, 11/10/2018 в 13:50 +0300, Nikolay Izhikov пишет:
> > > > > > > Alexey, we all agreed to merge in 2.7 blockers only.
> > > > > > >
> > > > > > > Is this a blocker?
> > > > > > >
> > > > > > > Anyway, you are more experienced Igniter that I am.
> > > > > > > If you think we should include this ticket to 2.7 - please, do it.
> > > > > > >
> > > > > > > В Чт, 11/10/2018 в 13:08 +0300, Alexey Goncharuk пишет:
> > > > > > > > Nikolay,
> > > > > > > >
> > > > > > > > I am waiting for final benchmark results for 9784, after that I
> > > >
> > > > will
> > > > > merge
> > > > > > > > the change.
> > > > > > > >
> > > > > > > > On the subject of Ignite 2.7 scope, our fellow Igniter Alexey
> > > > >
> > > > > Platonov have
> > > > > > > > found another case when a failure handler is incorrectly called 
> > > > > > > > on
> > > > >
> > > > > node
> > > > > > > > stop: https://issues.apache.org/jira/browse/IGNITE-9834. The 
> > > > > > > > case
> > > > >
> > > > > is rare,
> > > > > > > > but it is quite an unpleasant UX. Should we include it to 2.7 as
> > > > >
> > > > > well?
> > > > > > > >
> > > > > > > > чт, 11 окт. 2018 г. в 11:22, Nikolay Izhikov 
> > > > > > > >  > > > >
> > > > > :
> > > > > > > >
> > > > > > > > > Hello, Igniters.
> > > > > > > > >
> > > > > > > > > We made a good progress yesterday.
> > > > > > > > >
> > > > > > > > > Here is the list of remaining tickets(17) mapped to 2.7:
> > > > > > > > >
> > > > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > > > Taras Ledkov   - IGNITE-9171
> > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > Peter Ivanov   - IGNITE-9583, IGNITE-9823, IGNITE-9685
> > > > > > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > Yury Babak - IGNITE-8670
> > > > > > > > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > >
> > > > > > > > > Unassigned:
> > > > > > > > >
> > > > > > > > > IGNITE-9620 - MVCC: select throwing `Transaction is already
> > > > >
> > > > > completed`> >
> > > > > > > > > > exception after mvcc missmatch
> > > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-10-16 Thread Nikolay Izhikov
Hello, Igniters.

We have 13 tickets mapped to 2.7.
All tickets assigned to some contributor.

Alexey Gonchruk - IGNITE-9784, IGNITE-9895
Vladimir Ozerov - IGNITE-9887
Dmitriy Govorukhin - IGNITE-9898
Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
Petr Ivanov - IGNITE-9852
Ivan Pavlukhin - IGNITE-5935
Alexey Stelmak - IGNITE-9776
Roman Kondakov - IGNITE-9663
Taras Ledkov - IGNITE-9864
Igor Seliverstov   - IGNITE-9292

В Пн, 15/10/2018 в 17:49 +0300, Andrey Gura пишет:
> Nikolay,
> 
> I'm looking at IGNITE-9737 and IGNITE-9710 which are critical issues
> from my point of view.
> I need some time for review, possible fixes and merge.
> I will keep you informed.
> On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego  wrote:
> > 
> > Guys, Python client is in the master and ignite-2.7 already.
> > 
> > Best Regards,
> > Igor
> > 
> > 
> > On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov 
> > wrote:
> > 
> > > Nikolay,
> > > 
> > > AI 2.7 will include Python thin client. TC suite is crucial part of this
> > > feature, so we should keep the ticket in AI 2.7 scope.
> > > 
> > > On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov 
> > > wrote:
> > > 
> > > > Hello, Igniters.
> > > > 
> > > > There is no progress till Friday.
> > > > We have 14 tickets mapped to 2.7.
> > > > 
> > > > В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov пишет:
> > > > > Hello, Igniters.
> > > > > 
> > > > > We made some progress yesterday.
> > > > > 
> > > > > Please, note, we have 1 new ticket mapped to 2.7 "IGNITE-9852: Create
> > > > 
> > > > TeamCity suite for Python thin client"
> > > > > 
> > > > > This ticket doesn't sound like a blocker to me. Let's exclude it from
> > > > 
> > > > release scope.
> > > > > Thoughts?
> > > > > 
> > > > > Here is the list of remaining tickets(14) mapped to 2.7.
> > > > > 
> > > > > Peter Ivanov - IGNITE-9852, IGNITE-9685,
> > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > Yury Babak - IGNITE-8670
> > > > > Roman Kondakov - IGNITE-7953
> > > > > Igor Sapego  - IGNITE-9620
> > > > > Alexey Stelmak - IGNITE-9776
> > > > > 
> > > > > Unassigned:
> > > > > 
> > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > > 
> > > > > 
> > > > > В Чт, 11/10/2018 в 13:50 +0300, Nikolay Izhikov пишет:
> > > > > > Alexey, we all agreed to merge in 2.7 blockers only.
> > > > > > 
> > > > > > Is this a blocker?
> > > > > > 
> > > > > > Anyway, you are more experienced Igniter that I am.
> > > > > > If you think we should include this ticket to 2.7 - please, do it.
> > > > > > 
> > > > > > В Чт, 11/10/2018 в 13:08 +0300, Alexey Goncharuk пишет:
> > > > > > > Nikolay,
> > > > > > > 
> > > > > > > I am waiting for final benchmark results for 9784, after that I
> > > 
> > > will
> > > > merge
> > > > > > > the change.
> > > > > > > 
> > > > > > > On the subject of Ignite 2.7 scope, our fellow Igniter Alexey
> > > > 
> > > > Platonov have
> > > > > > > found another case when a failure handler is incorrectly called on
> > > > 
> > > > node
> > > > > > > stop: https://issues.apache.org/jira/browse/IGNITE-9834. The case
> > > > 
> > > > is rare,
> > > > > > > but it is quite an unpleasant UX. Should we include it to 2.7 as
> > > > 
> > > > well?
> > > > > > > 
> > > > > > > чт, 11 окт. 2018 г. в 11:22, Nikolay Izhikov  > > > 
> > > > :
> > > > > > > 
> > > > > > > > Hello, Igniters.
> > > > > > > > 
> > > > > > > > We made a good progress yesterday.
> > > > > > > > 
> > > > > > > > Here is the list of remaining tickets(17) mapped to 2.7:
> > > > > > > > 
> > > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > > Taras Ledkov   - IGNITE-9171
> > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > Peter Ivanov   - IGNITE-9583, IGNITE-9823, IGNITE-9685
> > > > > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > Yury Babak - IGNITE-8670
> > > > > > > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > 
> > > > > > > > Unassigned:
> > > > > > > > 
> > > > > > > > IGNITE-9620 - MVCC: select throwing `Transaction is already
> > > > 
> > > > completed`> >
> > > > > > > > > exception after mvcc missmatch
> > > > > > > > 
> > > > > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > > > > > 
> > > > > > > > 
> > > > > > > > В Чт, 11/10/2018 в 10:40 +0300, Vladimir Ozerov пишет:
> > > > > > > > > What kind of help is needed?
> > > > > > > > > 
> > > > > > > > > On Wed, Oct 10, 2018 at 11:51 PM Dmitriy Setrakyan <
> > > > > > > > 
> > > > > > > > dsetrak...@apache.org>
> > > > > > > > > wrote:
> > > > > > > > > 
> > > > > > > > > > Vladimir Ozerov,
> > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-10-15 Thread Andrey Gura
Nikolay,

I'm looking at IGNITE-9737 and IGNITE-9710 which are critical issues
from my point of view.
I need some time for review, possible fixes and merge.
I will keep you informed.
On Mon, Oct 15, 2018 at 1:46 PM Igor Sapego  wrote:
>
> Guys, Python client is in the master and ignite-2.7 already.
>
> Best Regards,
> Igor
>
>
> On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov 
> wrote:
>
> > Nikolay,
> >
> > AI 2.7 will include Python thin client. TC suite is crucial part of this
> > feature, so we should keep the ticket in AI 2.7 scope.
> >
> > On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov 
> > wrote:
> >
> > > Hello, Igniters.
> > >
> > > There is no progress till Friday.
> > > We have 14 tickets mapped to 2.7.
> > >
> > > В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov пишет:
> > > > Hello, Igniters.
> > > >
> > > > We made some progress yesterday.
> > > >
> > > > Please, note, we have 1 new ticket mapped to 2.7 "IGNITE-9852: Create
> > > TeamCity suite for Python thin client"
> > > >
> > > > This ticket doesn't sound like a blocker to me. Let's exclude it from
> > > release scope.
> > > > Thoughts?
> > > >
> > > > Here is the list of remaining tickets(14) mapped to 2.7.
> > > >
> > > > Peter Ivanov - IGNITE-9852, IGNITE-9685,
> > > > Alexey Goncharuk   - IGNITE-9784
> > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > Dmitry Melnichuk   - IGNITE-7782
> > > > Ivan Pavlukhin - IGNITE-5935
> > > > Yury Babak - IGNITE-8670
> > > > Roman Kondakov - IGNITE-7953
> > > > Igor Sapego  - IGNITE-9620
> > > > Alexey Stelmak - IGNITE-9776
> > > >
> > > > Unassigned:
> > > >
> > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > >
> > > >
> > > > В Чт, 11/10/2018 в 13:50 +0300, Nikolay Izhikov пишет:
> > > > > Alexey, we all agreed to merge in 2.7 blockers only.
> > > > >
> > > > > Is this a blocker?
> > > > >
> > > > > Anyway, you are more experienced Igniter that I am.
> > > > > If you think we should include this ticket to 2.7 - please, do it.
> > > > >
> > > > > В Чт, 11/10/2018 в 13:08 +0300, Alexey Goncharuk пишет:
> > > > > > Nikolay,
> > > > > >
> > > > > > I am waiting for final benchmark results for 9784, after that I
> > will
> > > merge
> > > > > > the change.
> > > > > >
> > > > > > On the subject of Ignite 2.7 scope, our fellow Igniter Alexey
> > > Platonov have
> > > > > > found another case when a failure handler is incorrectly called on
> > > node
> > > > > > stop: https://issues.apache.org/jira/browse/IGNITE-9834. The case
> > > is rare,
> > > > > > but it is quite an unpleasant UX. Should we include it to 2.7 as
> > > well?
> > > > > >
> > > > > > чт, 11 окт. 2018 г. в 11:22, Nikolay Izhikov  > >:
> > > > > >
> > > > > > > Hello, Igniters.
> > > > > > >
> > > > > > > We made a good progress yesterday.
> > > > > > >
> > > > > > > Here is the list of remaining tickets(17) mapped to 2.7:
> > > > > > >
> > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > Taras Ledkov   - IGNITE-9171
> > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > Peter Ivanov   - IGNITE-9583, IGNITE-9823, IGNITE-9685
> > > > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > Yury Babak - IGNITE-8670
> > > > > > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > >
> > > > > > > Unassigned:
> > > > > > >
> > > > > > > IGNITE-9620 - MVCC: select throwing `Transaction is already
> > > completed`> >
> > > > > > > > exception after mvcc missmatch
> > > > > > >
> > > > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > > > >
> > > > > > >
> > > > > > > В Чт, 11/10/2018 в 10:40 +0300, Vladimir Ozerov пишет:
> > > > > > > > What kind of help is needed?
> > > > > > > >
> > > > > > > > On Wed, Oct 10, 2018 at 11:51 PM Dmitriy Setrakyan <
> > > > > > >
> > > > > > > dsetrak...@apache.org>
> > > > > > > > wrote:
> > > > > > > >
> > > > > > > > > Vladimir Ozerov,
> > > > > > > > >
> > > > > > > > > Can you help with the unassigned MVCC tickets?
> > > > > > > > >
> > > > > > > > > D.
> > > > > > > > >
> > > > > > > > > On Wed, Oct 10, 2018 at 3:32 AM Nikolay Izhikov <
> > > nizhi...@apache.org>
> > > > > > > > > wrote:
> > > > > > > > >
> > > > > > > > > > Hello, Igniters.
> > > > > > > > > >
> > > > > > > > > > I list all contributors that assigned to the 2.7 tickets.
> > > > > > > > > > If you can help them to finish that tickets - please, do.
> > > > > > > > > > Assigners, if you need any help - please, respond to this
> > > thread.
> > > > > > > > > >
> > > > > > > > > > NOTE: We have 6 Unassigned tickets for 2.7. Let's start
> > work
> > > on it!
> > > > > > > > > >
> > > > > > > > > > Peter Ivanov   - IGNITE-9559, IGNITE-9583, IGNITE-9685,
> > > > > > >
> > > > > > > IGNITE-9823
> > > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-10-15 Thread Igor Sapego
Guys, Python client is in the master and ignite-2.7 already.

Best Regards,
Igor


On Mon, Oct 15, 2018 at 11:33 AM Vladimir Ozerov 
wrote:

> Nikolay,
>
> AI 2.7 will include Python thin client. TC suite is crucial part of this
> feature, so we should keep the ticket in AI 2.7 scope.
>
> On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov 
> wrote:
>
> > Hello, Igniters.
> >
> > There is no progress till Friday.
> > We have 14 tickets mapped to 2.7.
> >
> > В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov пишет:
> > > Hello, Igniters.
> > >
> > > We made some progress yesterday.
> > >
> > > Please, note, we have 1 new ticket mapped to 2.7 "IGNITE-9852: Create
> > TeamCity suite for Python thin client"
> > >
> > > This ticket doesn't sound like a blocker to me. Let's exclude it from
> > release scope.
> > > Thoughts?
> > >
> > > Here is the list of remaining tickets(14) mapped to 2.7.
> > >
> > > Peter Ivanov - IGNITE-9852, IGNITE-9685,
> > > Alexey Goncharuk   - IGNITE-9784
> > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > Dmitry Melnichuk   - IGNITE-7782
> > > Ivan Pavlukhin - IGNITE-5935
> > > Yury Babak - IGNITE-8670
> > > Roman Kondakov - IGNITE-7953
> > > Igor Sapego  - IGNITE-9620
> > > Alexey Stelmak - IGNITE-9776
> > >
> > > Unassigned:
> > >
> > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > >
> > >
> > > В Чт, 11/10/2018 в 13:50 +0300, Nikolay Izhikov пишет:
> > > > Alexey, we all agreed to merge in 2.7 blockers only.
> > > >
> > > > Is this a blocker?
> > > >
> > > > Anyway, you are more experienced Igniter that I am.
> > > > If you think we should include this ticket to 2.7 - please, do it.
> > > >
> > > > В Чт, 11/10/2018 в 13:08 +0300, Alexey Goncharuk пишет:
> > > > > Nikolay,
> > > > >
> > > > > I am waiting for final benchmark results for 9784, after that I
> will
> > merge
> > > > > the change.
> > > > >
> > > > > On the subject of Ignite 2.7 scope, our fellow Igniter Alexey
> > Platonov have
> > > > > found another case when a failure handler is incorrectly called on
> > node
> > > > > stop: https://issues.apache.org/jira/browse/IGNITE-9834. The case
> > is rare,
> > > > > but it is quite an unpleasant UX. Should we include it to 2.7 as
> > well?
> > > > >
> > > > > чт, 11 окт. 2018 г. в 11:22, Nikolay Izhikov  >:
> > > > >
> > > > > > Hello, Igniters.
> > > > > >
> > > > > > We made a good progress yesterday.
> > > > > >
> > > > > > Here is the list of remaining tickets(17) mapped to 2.7:
> > > > > >
> > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > Taras Ledkov   - IGNITE-9171
> > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > Peter Ivanov   - IGNITE-9583, IGNITE-9823, IGNITE-9685
> > > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > Yury Babak - IGNITE-8670
> > > > > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > > > > Alexey Stelmak - IGNITE-9776
> > > > > >
> > > > > > Unassigned:
> > > > > >
> > > > > > IGNITE-9620 - MVCC: select throwing `Transaction is already
> > completed`> >
> > > > > > > exception after mvcc missmatch
> > > > > >
> > > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > > >
> > > > > >
> > > > > > В Чт, 11/10/2018 в 10:40 +0300, Vladimir Ozerov пишет:
> > > > > > > What kind of help is needed?
> > > > > > >
> > > > > > > On Wed, Oct 10, 2018 at 11:51 PM Dmitriy Setrakyan <
> > > > > >
> > > > > > dsetrak...@apache.org>
> > > > > > > wrote:
> > > > > > >
> > > > > > > > Vladimir Ozerov,
> > > > > > > >
> > > > > > > > Can you help with the unassigned MVCC tickets?
> > > > > > > >
> > > > > > > > D.
> > > > > > > >
> > > > > > > > On Wed, Oct 10, 2018 at 3:32 AM Nikolay Izhikov <
> > nizhi...@apache.org>
> > > > > > > > wrote:
> > > > > > > >
> > > > > > > > > Hello, Igniters.
> > > > > > > > >
> > > > > > > > > I list all contributors that assigned to the 2.7 tickets.
> > > > > > > > > If you can help them to finish that tickets - please, do.
> > > > > > > > > Assigners, if you need any help - please, respond to this
> > thread.
> > > > > > > > >
> > > > > > > > > NOTE: We have 6 Unassigned tickets for 2.7. Let's start
> work
> > on it!
> > > > > > > > >
> > > > > > > > > Peter Ivanov   - IGNITE-9559, IGNITE-9583, IGNITE-9685,
> > > > > >
> > > > > > IGNITE-9823
> > > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > > Taras Ledkov   - IGNITE-9171
> > > > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > > > Dmitriy Govorukhin - IGNITE-9550
> > > > > > > > > Igor Seliverstov   - IGNITE-9749
> > > > > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > > > > Alexey Platonov- IGNITE-9726
> > > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > > Yury Babak - IGNITE-8670
> > > > > > > > > Roman Kondakov - IGNITE-7953, 

Re: Apache Ignite 2.7. Last Mile

2018-10-15 Thread Vladimir Ozerov
Nikolay,

AI 2.7 will include Python thin client. TC suite is crucial part of this
feature, so we should keep the ticket in AI 2.7 scope.

On Mon, Oct 15, 2018 at 10:57 AM Nikolay Izhikov 
wrote:

> Hello, Igniters.
>
> There is no progress till Friday.
> We have 14 tickets mapped to 2.7.
>
> В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov пишет:
> > Hello, Igniters.
> >
> > We made some progress yesterday.
> >
> > Please, note, we have 1 new ticket mapped to 2.7 "IGNITE-9852: Create
> TeamCity suite for Python thin client"
> >
> > This ticket doesn't sound like a blocker to me. Let's exclude it from
> release scope.
> > Thoughts?
> >
> > Here is the list of remaining tickets(14) mapped to 2.7.
> >
> > Peter Ivanov - IGNITE-9852, IGNITE-9685,
> > Alexey Goncharuk   - IGNITE-9784
> > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > Dmitry Melnichuk   - IGNITE-7782
> > Ivan Pavlukhin - IGNITE-5935
> > Yury Babak - IGNITE-8670
> > Roman Kondakov - IGNITE-7953
> > Igor Sapego  - IGNITE-9620
> > Alexey Stelmak - IGNITE-9776
> >
> > Unassigned:
> >
> > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> >
> >
> > В Чт, 11/10/2018 в 13:50 +0300, Nikolay Izhikov пишет:
> > > Alexey, we all agreed to merge in 2.7 blockers only.
> > >
> > > Is this a blocker?
> > >
> > > Anyway, you are more experienced Igniter that I am.
> > > If you think we should include this ticket to 2.7 - please, do it.
> > >
> > > В Чт, 11/10/2018 в 13:08 +0300, Alexey Goncharuk пишет:
> > > > Nikolay,
> > > >
> > > > I am waiting for final benchmark results for 9784, after that I will
> merge
> > > > the change.
> > > >
> > > > On the subject of Ignite 2.7 scope, our fellow Igniter Alexey
> Platonov have
> > > > found another case when a failure handler is incorrectly called on
> node
> > > > stop: https://issues.apache.org/jira/browse/IGNITE-9834. The case
> is rare,
> > > > but it is quite an unpleasant UX. Should we include it to 2.7 as
> well?
> > > >
> > > > чт, 11 окт. 2018 г. в 11:22, Nikolay Izhikov :
> > > >
> > > > > Hello, Igniters.
> > > > >
> > > > > We made a good progress yesterday.
> > > > >
> > > > > Here is the list of remaining tickets(17) mapped to 2.7:
> > > > >
> > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > Taras Ledkov   - IGNITE-9171
> > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > Peter Ivanov   - IGNITE-9583, IGNITE-9823, IGNITE-9685
> > > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > Yury Babak - IGNITE-8670
> > > > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > > > Alexey Stelmak - IGNITE-9776
> > > > >
> > > > > Unassigned:
> > > > >
> > > > > IGNITE-9620 - MVCC: select throwing `Transaction is already
> completed`> >
> > > > > > exception after mvcc missmatch
> > > > >
> > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > >
> > > > >
> > > > > В Чт, 11/10/2018 в 10:40 +0300, Vladimir Ozerov пишет:
> > > > > > What kind of help is needed?
> > > > > >
> > > > > > On Wed, Oct 10, 2018 at 11:51 PM Dmitriy Setrakyan <
> > > > >
> > > > > dsetrak...@apache.org>
> > > > > > wrote:
> > > > > >
> > > > > > > Vladimir Ozerov,
> > > > > > >
> > > > > > > Can you help with the unassigned MVCC tickets?
> > > > > > >
> > > > > > > D.
> > > > > > >
> > > > > > > On Wed, Oct 10, 2018 at 3:32 AM Nikolay Izhikov <
> nizhi...@apache.org>
> > > > > > > wrote:
> > > > > > >
> > > > > > > > Hello, Igniters.
> > > > > > > >
> > > > > > > > I list all contributors that assigned to the 2.7 tickets.
> > > > > > > > If you can help them to finish that tickets - please, do.
> > > > > > > > Assigners, if you need any help - please, respond to this
> thread.
> > > > > > > >
> > > > > > > > NOTE: We have 6 Unassigned tickets for 2.7. Let's start work
> on it!
> > > > > > > >
> > > > > > > > Peter Ivanov   - IGNITE-9559, IGNITE-9583, IGNITE-9685,
> > > > >
> > > > > IGNITE-9823
> > > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > > Taras Ledkov   - IGNITE-9171
> > > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > > Dmitriy Govorukhin - IGNITE-9550
> > > > > > > > Igor Seliverstov   - IGNITE-9749
> > > > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > > > Alexey Platonov- IGNITE-9726
> > > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > > Yury Babak - IGNITE-8670
> > > > > > > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > > > > > > Maxim Pudov- IGNITE-9126
> > > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > > Alexey Kuznetsov   - IGNITE-7926
> > > > > > > >
> > > > > > > > Unassigned tickets:
> > > > > > > >
> > > > > > > > IGNITE-9781 - JDK11: SSL handshake is failed
> > > > > > > > IGNITE-9620 - MVCC: select throwing `Transaction is already
> > > > >
> > > > > completed`
> > > > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-10-15 Thread Nikolay Izhikov
Hello, Igniters.

There is no progress till Friday.
We have 14 tickets mapped to 2.7.

В Пт, 12/10/2018 в 08:29 +0300, Nikolay Izhikov пишет:
> Hello, Igniters.
> 
> We made some progress yesterday.
> 
> Please, note, we have 1 new ticket mapped to 2.7 "IGNITE-9852: Create 
> TeamCity suite for Python thin client"
> 
> This ticket doesn't sound like a blocker to me. Let's exclude it from release 
> scope.
> Thoughts?
> 
> Here is the list of remaining tickets(14) mapped to 2.7.
> 
> Peter Ivanov - IGNITE-9852, IGNITE-9685, 
> Alexey Goncharuk   - IGNITE-9784
> Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> Dmitry Melnichuk   - IGNITE-7782
> Ivan Pavlukhin - IGNITE-5935
> Yury Babak - IGNITE-8670
> Roman Kondakov - IGNITE-7953
> Igor Sapego  - IGNITE-9620
> Alexey Stelmak - IGNITE-9776
> 
> Unassigned:
> 
> IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> 
> 
> В Чт, 11/10/2018 в 13:50 +0300, Nikolay Izhikov пишет:
> > Alexey, we all agreed to merge in 2.7 blockers only.
> > 
> > Is this a blocker?
> > 
> > Anyway, you are more experienced Igniter that I am.
> > If you think we should include this ticket to 2.7 - please, do it.
> > 
> > В Чт, 11/10/2018 в 13:08 +0300, Alexey Goncharuk пишет:
> > > Nikolay,
> > > 
> > > I am waiting for final benchmark results for 9784, after that I will merge
> > > the change.
> > > 
> > > On the subject of Ignite 2.7 scope, our fellow Igniter Alexey Platonov 
> > > have
> > > found another case when a failure handler is incorrectly called on node
> > > stop: https://issues.apache.org/jira/browse/IGNITE-9834. The case is rare,
> > > but it is quite an unpleasant UX. Should we include it to 2.7 as well?
> > > 
> > > чт, 11 окт. 2018 г. в 11:22, Nikolay Izhikov :
> > > 
> > > > Hello, Igniters.
> > > > 
> > > > We made a good progress yesterday.
> > > > 
> > > > Here is the list of remaining tickets(17) mapped to 2.7:
> > > > 
> > > > Alexey Goncharuk   - IGNITE-9784
> > > > Taras Ledkov   - IGNITE-9171
> > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > Peter Ivanov   - IGNITE-9583, IGNITE-9823, IGNITE-9685
> > > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > > Dmitry Melnichuk   - IGNITE-7782
> > > > Ivan Pavlukhin - IGNITE-5935
> > > > Yury Babak - IGNITE-8670
> > > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > > Alexey Stelmak - IGNITE-9776
> > > > 
> > > > Unassigned:
> > > > 
> > > > IGNITE-9620 - MVCC: select throwing `Transaction is already completed`> 
> > > > >
> > > > > exception after mvcc missmatch
> > > > 
> > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > 
> > > > 
> > > > В Чт, 11/10/2018 в 10:40 +0300, Vladimir Ozerov пишет:
> > > > > What kind of help is needed?
> > > > > 
> > > > > On Wed, Oct 10, 2018 at 11:51 PM Dmitriy Setrakyan <
> > > > 
> > > > dsetrak...@apache.org>
> > > > > wrote:
> > > > > 
> > > > > > Vladimir Ozerov,
> > > > > > 
> > > > > > Can you help with the unassigned MVCC tickets?
> > > > > > 
> > > > > > D.
> > > > > > 
> > > > > > On Wed, Oct 10, 2018 at 3:32 AM Nikolay Izhikov 
> > > > > > 
> > > > > > wrote:
> > > > > > 
> > > > > > > Hello, Igniters.
> > > > > > > 
> > > > > > > I list all contributors that assigned to the 2.7 tickets.
> > > > > > > If you can help them to finish that tickets - please, do.
> > > > > > > Assigners, if you need any help - please, respond to this thread.
> > > > > > > 
> > > > > > > NOTE: We have 6 Unassigned tickets for 2.7. Let's start work on 
> > > > > > > it!
> > > > > > > 
> > > > > > > Peter Ivanov   - IGNITE-9559, IGNITE-9583, IGNITE-9685,
> > > > 
> > > > IGNITE-9823
> > > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > > Taras Ledkov   - IGNITE-9171
> > > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > > Dmitriy Govorukhin - IGNITE-9550
> > > > > > > Igor Seliverstov   - IGNITE-9749
> > > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > > Alexey Platonov- IGNITE-9726
> > > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > > Yury Babak - IGNITE-8670
> > > > > > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > > > > > Maxim Pudov- IGNITE-9126
> > > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > > Alexey Kuznetsov   - IGNITE-7926
> > > > > > > 
> > > > > > > Unassigned tickets:
> > > > > > > 
> > > > > > > IGNITE-9781 - JDK11: SSL handshake is failed
> > > > > > > IGNITE-9620 - MVCC: select throwing `Transaction is already
> > > > 
> > > > completed`
> > > > > > > exception after mvcc missmatch
> > > > > > > IGNITE-9292 - MVCC SQL: Unexpected state exception when updating
> > > > 
> > > > backup
> > > > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > > > > IGNITE-9724 - MVCC SQL: Test
> > > > > > > 
> > > > 
> > > > CacheMvccSelectForUpdateQueryAbstractTest.testSelectForUpdateDistributed
> > > > > > > hangs sporadically.
> > > > > > > 

Re: Apache Ignite 2.7. Last Mile

2018-10-11 Thread Nikolay Izhikov
Hello, Igniters.

We made some progress yesterday.

Please, note, we have 1 new ticket mapped to 2.7 "IGNITE-9852: Create TeamCity 
suite for Python thin client"

This ticket doesn't sound like a blocker to me. Let's exclude it from release 
scope.
Thoughts?

Here is the list of remaining tickets(14) mapped to 2.7.

Peter Ivanov   - IGNITE-9852, IGNITE-9685, 
Alexey Goncharuk   - IGNITE-9784
Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
Igor Seliverstov   - IGNITE-9749, IGNITE-9292
Dmitry Melnichuk   - IGNITE-7782
Ivan Pavlukhin - IGNITE-5935
Yury Babak - IGNITE-8670
Roman Kondakov - IGNITE-7953
Igor Sapego- IGNITE-9620
Alexey Stelmak - IGNITE-9776

Unassigned:

IGNITE-9663 - MVCC: Data node failure can cause TX hanging.


В Чт, 11/10/2018 в 13:50 +0300, Nikolay Izhikov пишет:
> Alexey, we all agreed to merge in 2.7 blockers only.
> 
> Is this a blocker?
> 
> Anyway, you are more experienced Igniter that I am.
> If you think we should include this ticket to 2.7 - please, do it.
> 
> В Чт, 11/10/2018 в 13:08 +0300, Alexey Goncharuk пишет:
> > Nikolay,
> > 
> > I am waiting for final benchmark results for 9784, after that I will merge
> > the change.
> > 
> > On the subject of Ignite 2.7 scope, our fellow Igniter Alexey Platonov have
> > found another case when a failure handler is incorrectly called on node
> > stop: https://issues.apache.org/jira/browse/IGNITE-9834. The case is rare,
> > but it is quite an unpleasant UX. Should we include it to 2.7 as well?
> > 
> > чт, 11 окт. 2018 г. в 11:22, Nikolay Izhikov :
> > 
> > > Hello, Igniters.
> > > 
> > > We made a good progress yesterday.
> > > 
> > > Here is the list of remaining tickets(17) mapped to 2.7:
> > > 
> > > Alexey Goncharuk   - IGNITE-9784
> > > Taras Ledkov   - IGNITE-9171
> > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > Peter Ivanov   - IGNITE-9583, IGNITE-9823, IGNITE-9685
> > > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > > Dmitry Melnichuk   - IGNITE-7782
> > > Ivan Pavlukhin - IGNITE-5935
> > > Yury Babak - IGNITE-8670
> > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > Alexey Stelmak - IGNITE-9776
> > > 
> > > Unassigned:
> > > 
> > > IGNITE-9620 - MVCC: select throwing `Transaction is already completed`> >
> > > > exception after mvcc missmatch
> > > 
> > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > 
> > > 
> > > В Чт, 11/10/2018 в 10:40 +0300, Vladimir Ozerov пишет:
> > > > What kind of help is needed?
> > > > 
> > > > On Wed, Oct 10, 2018 at 11:51 PM Dmitriy Setrakyan <
> > > 
> > > dsetrak...@apache.org>
> > > > wrote:
> > > > 
> > > > > Vladimir Ozerov,
> > > > > 
> > > > > Can you help with the unassigned MVCC tickets?
> > > > > 
> > > > > D.
> > > > > 
> > > > > On Wed, Oct 10, 2018 at 3:32 AM Nikolay Izhikov 
> > > > > wrote:
> > > > > 
> > > > > > Hello, Igniters.
> > > > > > 
> > > > > > I list all contributors that assigned to the 2.7 tickets.
> > > > > > If you can help them to finish that tickets - please, do.
> > > > > > Assigners, if you need any help - please, respond to this thread.
> > > > > > 
> > > > > > NOTE: We have 6 Unassigned tickets for 2.7. Let's start work on it!
> > > > > > 
> > > > > > Peter Ivanov   - IGNITE-9559, IGNITE-9583, IGNITE-9685,
> > > 
> > > IGNITE-9823
> > > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > > Taras Ledkov   - IGNITE-9171
> > > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > > Dmitriy Govorukhin - IGNITE-9550
> > > > > > Igor Seliverstov   - IGNITE-9749
> > > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > > Alexey Platonov- IGNITE-9726
> > > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > > Yury Babak - IGNITE-8670
> > > > > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > > > > Maxim Pudov- IGNITE-9126
> > > > > > Alexey Stelmak - IGNITE-9776
> > > > > > Alexey Kuznetsov   - IGNITE-7926
> > > > > > 
> > > > > > Unassigned tickets:
> > > > > > 
> > > > > > IGNITE-9781 - JDK11: SSL handshake is failed
> > > > > > IGNITE-9620 - MVCC: select throwing `Transaction is already
> > > 
> > > completed`
> > > > > > exception after mvcc missmatch
> > > > > > IGNITE-9292 - MVCC SQL: Unexpected state exception when updating
> > > 
> > > backup
> > > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > > > IGNITE-9724 - MVCC SQL: Test
> > > > > > 
> > > 
> > > CacheMvccSelectForUpdateQueryAbstractTest.testSelectForUpdateDistributed
> > > > > > hangs sporadically.
> > > > > > IGNITE-9133 - MVCC: Proper empty DHT transactions handling.
> > > > > > 


signature.asc
Description: This is a digitally signed message part


Re: Apache Ignite 2.7. Last Mile

2018-10-11 Thread Nikolay Izhikov
Alexey, we all agreed to merge in 2.7 blockers only.

Is this a blocker?

Anyway, you are more experienced Igniter that I am.
If you think we should include this ticket to 2.7 - please, do it.

В Чт, 11/10/2018 в 13:08 +0300, Alexey Goncharuk пишет:
> Nikolay,
> 
> I am waiting for final benchmark results for 9784, after that I will merge
> the change.
> 
> On the subject of Ignite 2.7 scope, our fellow Igniter Alexey Platonov have
> found another case when a failure handler is incorrectly called on node
> stop: https://issues.apache.org/jira/browse/IGNITE-9834. The case is rare,
> but it is quite an unpleasant UX. Should we include it to 2.7 as well?
> 
> чт, 11 окт. 2018 г. в 11:22, Nikolay Izhikov :
> 
> > Hello, Igniters.
> > 
> > We made a good progress yesterday.
> > 
> > Here is the list of remaining tickets(17) mapped to 2.7:
> > 
> > Alexey Goncharuk   - IGNITE-9784
> > Taras Ledkov   - IGNITE-9171
> > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > Peter Ivanov   - IGNITE-9583, IGNITE-9823, IGNITE-9685
> > Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> > Dmitry Melnichuk   - IGNITE-7782
> > Ivan Pavlukhin - IGNITE-5935
> > Yury Babak - IGNITE-8670
> > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > Alexey Stelmak - IGNITE-9776
> > 
> > Unassigned:
> > 
> > IGNITE-9620 - MVCC: select throwing `Transaction is already completed`> >
> > > exception after mvcc missmatch
> > 
> > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > 
> > 
> > В Чт, 11/10/2018 в 10:40 +0300, Vladimir Ozerov пишет:
> > > What kind of help is needed?
> > > 
> > > On Wed, Oct 10, 2018 at 11:51 PM Dmitriy Setrakyan <
> > 
> > dsetrak...@apache.org>
> > > wrote:
> > > 
> > > > Vladimir Ozerov,
> > > > 
> > > > Can you help with the unassigned MVCC tickets?
> > > > 
> > > > D.
> > > > 
> > > > On Wed, Oct 10, 2018 at 3:32 AM Nikolay Izhikov 
> > > > wrote:
> > > > 
> > > > > Hello, Igniters.
> > > > > 
> > > > > I list all contributors that assigned to the 2.7 tickets.
> > > > > If you can help them to finish that tickets - please, do.
> > > > > Assigners, if you need any help - please, respond to this thread.
> > > > > 
> > > > > NOTE: We have 6 Unassigned tickets for 2.7. Let's start work on it!
> > > > > 
> > > > > Peter Ivanov   - IGNITE-9559, IGNITE-9583, IGNITE-9685,
> > 
> > IGNITE-9823
> > > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > > Taras Ledkov   - IGNITE-9171
> > > > > Alexey Goncharuk   - IGNITE-9784
> > > > > Dmitriy Govorukhin - IGNITE-9550
> > > > > Igor Seliverstov   - IGNITE-9749
> > > > > Dmitry Melnichuk   - IGNITE-7782
> > > > > Alexey Platonov- IGNITE-9726
> > > > > Ivan Pavlukhin - IGNITE-5935
> > > > > Yury Babak - IGNITE-8670
> > > > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > > > Maxim Pudov- IGNITE-9126
> > > > > Alexey Stelmak - IGNITE-9776
> > > > > Alexey Kuznetsov   - IGNITE-7926
> > > > > 
> > > > > Unassigned tickets:
> > > > > 
> > > > > IGNITE-9781 - JDK11: SSL handshake is failed
> > > > > IGNITE-9620 - MVCC: select throwing `Transaction is already
> > 
> > completed`
> > > > > exception after mvcc missmatch
> > > > > IGNITE-9292 - MVCC SQL: Unexpected state exception when updating
> > 
> > backup
> > > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > > IGNITE-9724 - MVCC SQL: Test
> > > > > 
> > 
> > CacheMvccSelectForUpdateQueryAbstractTest.testSelectForUpdateDistributed
> > > > > hangs sporadically.
> > > > > IGNITE-9133 - MVCC: Proper empty DHT transactions handling.
> > > > > 


signature.asc
Description: This is a digitally signed message part


Re: Apache Ignite 2.7. Last Mile

2018-10-11 Thread Alexey Goncharuk
Nikolay,

I am waiting for final benchmark results for 9784, after that I will merge
the change.

On the subject of Ignite 2.7 scope, our fellow Igniter Alexey Platonov have
found another case when a failure handler is incorrectly called on node
stop: https://issues.apache.org/jira/browse/IGNITE-9834. The case is rare,
but it is quite an unpleasant UX. Should we include it to 2.7 as well?

чт, 11 окт. 2018 г. в 11:22, Nikolay Izhikov :

> Hello, Igniters.
>
> We made a good progress yesterday.
>
> Here is the list of remaining tickets(17) mapped to 2.7:
>
> Alexey Goncharuk   - IGNITE-9784
> Taras Ledkov   - IGNITE-9171
> Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> Peter Ivanov   - IGNITE-9583, IGNITE-9823, IGNITE-9685
> Igor Seliverstov   - IGNITE-9749, IGNITE-9292
> Dmitry Melnichuk   - IGNITE-7782
> Ivan Pavlukhin - IGNITE-5935
> Yury Babak - IGNITE-8670
> Roman Kondakov - IGNITE-7953, IGNITE-9446
> Alexey Stelmak - IGNITE-9776
>
> Unassigned:
>
> IGNITE-9620 - MVCC: select throwing `Transaction is already completed`> >
> > exception after mvcc missmatch
> IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
>
>
> В Чт, 11/10/2018 в 10:40 +0300, Vladimir Ozerov пишет:
> > What kind of help is needed?
> >
> > On Wed, Oct 10, 2018 at 11:51 PM Dmitriy Setrakyan <
> dsetrak...@apache.org>
> > wrote:
> >
> > > Vladimir Ozerov,
> > >
> > > Can you help with the unassigned MVCC tickets?
> > >
> > > D.
> > >
> > > On Wed, Oct 10, 2018 at 3:32 AM Nikolay Izhikov 
> > > wrote:
> > >
> > > > Hello, Igniters.
> > > >
> > > > I list all contributors that assigned to the 2.7 tickets.
> > > > If you can help them to finish that tickets - please, do.
> > > > Assigners, if you need any help - please, respond to this thread.
> > > >
> > > > NOTE: We have 6 Unassigned tickets for 2.7. Let's start work on it!
> > > >
> > > > Peter Ivanov   - IGNITE-9559, IGNITE-9583, IGNITE-9685,
> IGNITE-9823
> > > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > > Taras Ledkov   - IGNITE-9171
> > > > Alexey Goncharuk   - IGNITE-9784
> > > > Dmitriy Govorukhin - IGNITE-9550
> > > > Igor Seliverstov   - IGNITE-9749
> > > > Dmitry Melnichuk   - IGNITE-7782
> > > > Alexey Platonov- IGNITE-9726
> > > > Ivan Pavlukhin - IGNITE-5935
> > > > Yury Babak - IGNITE-8670
> > > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > > Maxim Pudov- IGNITE-9126
> > > > Alexey Stelmak - IGNITE-9776
> > > > Alexey Kuznetsov   - IGNITE-7926
> > > >
> > > > Unassigned tickets:
> > > >
> > > > IGNITE-9781 - JDK11: SSL handshake is failed
> > > > IGNITE-9620 - MVCC: select throwing `Transaction is already
> completed`
> > > > exception after mvcc missmatch
> > > > IGNITE-9292 - MVCC SQL: Unexpected state exception when updating
> backup
> > > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > > IGNITE-9724 - MVCC SQL: Test
> > > >
> CacheMvccSelectForUpdateQueryAbstractTest.testSelectForUpdateDistributed
> > > > hangs sporadically.
> > > > IGNITE-9133 - MVCC: Proper empty DHT transactions handling.
> > > >
>


Re: Apache Ignite 2.7. Last Mile

2018-10-11 Thread Nikolay Izhikov
Hello, Igniters.

We made a good progress yesterday.

Here is the list of remaining tickets(17) mapped to 2.7:

Alexey Goncharuk   - IGNITE-9784
Taras Ledkov   - IGNITE-9171
Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
Peter Ivanov   - IGNITE-9583, IGNITE-9823, IGNITE-9685
Igor Seliverstov   - IGNITE-9749, IGNITE-9292
Dmitry Melnichuk   - IGNITE-7782
Ivan Pavlukhin - IGNITE-5935
Yury Babak - IGNITE-8670
Roman Kondakov - IGNITE-7953, IGNITE-9446
Alexey Stelmak - IGNITE-9776

Unassigned:

IGNITE-9620 - MVCC: select throwing `Transaction is already completed`> > > 
exception after mvcc missmatch
IGNITE-9663 - MVCC: Data node failure can cause TX hanging.


В Чт, 11/10/2018 в 10:40 +0300, Vladimir Ozerov пишет:
> What kind of help is needed?
> 
> On Wed, Oct 10, 2018 at 11:51 PM Dmitriy Setrakyan 
> wrote:
> 
> > Vladimir Ozerov,
> > 
> > Can you help with the unassigned MVCC tickets?
> > 
> > D.
> > 
> > On Wed, Oct 10, 2018 at 3:32 AM Nikolay Izhikov 
> > wrote:
> > 
> > > Hello, Igniters.
> > > 
> > > I list all contributors that assigned to the 2.7 tickets.
> > > If you can help them to finish that tickets - please, do.
> > > Assigners, if you need any help - please, respond to this thread.
> > > 
> > > NOTE: We have 6 Unassigned tickets for 2.7. Let's start work on it!
> > > 
> > > Peter Ivanov   - IGNITE-9559, IGNITE-9583, IGNITE-9685, IGNITE-9823
> > > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > > Taras Ledkov   - IGNITE-9171
> > > Alexey Goncharuk   - IGNITE-9784
> > > Dmitriy Govorukhin - IGNITE-9550
> > > Igor Seliverstov   - IGNITE-9749
> > > Dmitry Melnichuk   - IGNITE-7782
> > > Alexey Platonov- IGNITE-9726
> > > Ivan Pavlukhin - IGNITE-5935
> > > Yury Babak - IGNITE-8670
> > > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > > Maxim Pudov- IGNITE-9126
> > > Alexey Stelmak - IGNITE-9776
> > > Alexey Kuznetsov   - IGNITE-7926
> > > 
> > > Unassigned tickets:
> > > 
> > > IGNITE-9781 - JDK11: SSL handshake is failed
> > > IGNITE-9620 - MVCC: select throwing `Transaction is already completed`
> > > exception after mvcc missmatch
> > > IGNITE-9292 - MVCC SQL: Unexpected state exception when updating backup
> > > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > > IGNITE-9724 - MVCC SQL: Test
> > > CacheMvccSelectForUpdateQueryAbstractTest.testSelectForUpdateDistributed
> > > hangs sporadically.
> > > IGNITE-9133 - MVCC: Proper empty DHT transactions handling.
> > > 


signature.asc
Description: This is a digitally signed message part


Re: Apache Ignite 2.7. Last Mile

2018-10-11 Thread Vladimir Ozerov
What kind of help is needed?

On Wed, Oct 10, 2018 at 11:51 PM Dmitriy Setrakyan 
wrote:

> Vladimir Ozerov,
>
> Can you help with the unassigned MVCC tickets?
>
> D.
>
> On Wed, Oct 10, 2018 at 3:32 AM Nikolay Izhikov 
> wrote:
>
> > Hello, Igniters.
> >
> > I list all contributors that assigned to the 2.7 tickets.
> > If you can help them to finish that tickets - please, do.
> > Assigners, if you need any help - please, respond to this thread.
> >
> > NOTE: We have 6 Unassigned tickets for 2.7. Let's start work on it!
> >
> > Peter Ivanov   - IGNITE-9559, IGNITE-9583, IGNITE-9685, IGNITE-9823
> > Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> > Taras Ledkov   - IGNITE-9171
> > Alexey Goncharuk   - IGNITE-9784
> > Dmitriy Govorukhin - IGNITE-9550
> > Igor Seliverstov   - IGNITE-9749
> > Dmitry Melnichuk   - IGNITE-7782
> > Alexey Platonov- IGNITE-9726
> > Ivan Pavlukhin - IGNITE-5935
> > Yury Babak - IGNITE-8670
> > Roman Kondakov - IGNITE-7953, IGNITE-9446
> > Maxim Pudov- IGNITE-9126
> > Alexey Stelmak - IGNITE-9776
> > Alexey Kuznetsov   - IGNITE-7926
> >
> > Unassigned tickets:
> >
> > IGNITE-9781 - JDK11: SSL handshake is failed
> > IGNITE-9620 - MVCC: select throwing `Transaction is already completed`
> > exception after mvcc missmatch
> > IGNITE-9292 - MVCC SQL: Unexpected state exception when updating backup
> > IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> > IGNITE-9724 - MVCC SQL: Test
> > CacheMvccSelectForUpdateQueryAbstractTest.testSelectForUpdateDistributed
> > hangs sporadically.
> > IGNITE-9133 - MVCC: Proper empty DHT transactions handling.
> >
>


Re: Apache Ignite 2.7. Last Mile

2018-10-10 Thread Dmitriy Setrakyan
Vladimir Ozerov,

Can you help with the unassigned MVCC tickets?

D.

On Wed, Oct 10, 2018 at 3:32 AM Nikolay Izhikov  wrote:

> Hello, Igniters.
>
> I list all contributors that assigned to the 2.7 tickets.
> If you can help them to finish that tickets - please, do.
> Assigners, if you need any help - please, respond to this thread.
>
> NOTE: We have 6 Unassigned tickets for 2.7. Let's start work on it!
>
> Peter Ivanov   - IGNITE-9559, IGNITE-9583, IGNITE-9685, IGNITE-9823
> Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
> Taras Ledkov   - IGNITE-9171
> Alexey Goncharuk   - IGNITE-9784
> Dmitriy Govorukhin - IGNITE-9550
> Igor Seliverstov   - IGNITE-9749
> Dmitry Melnichuk   - IGNITE-7782
> Alexey Platonov- IGNITE-9726
> Ivan Pavlukhin - IGNITE-5935
> Yury Babak - IGNITE-8670
> Roman Kondakov - IGNITE-7953, IGNITE-9446
> Maxim Pudov- IGNITE-9126
> Alexey Stelmak - IGNITE-9776
> Alexey Kuznetsov   - IGNITE-7926
>
> Unassigned tickets:
>
> IGNITE-9781 - JDK11: SSL handshake is failed
> IGNITE-9620 - MVCC: select throwing `Transaction is already completed`
> exception after mvcc missmatch
> IGNITE-9292 - MVCC SQL: Unexpected state exception when updating backup
> IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
> IGNITE-9724 - MVCC SQL: Test
> CacheMvccSelectForUpdateQueryAbstractTest.testSelectForUpdateDistributed
> hangs sporadically.
> IGNITE-9133 - MVCC: Proper empty DHT transactions handling.
>


Apache Ignite 2.7. Last Mile

2018-10-10 Thread Nikolay Izhikov
Hello, Igniters.

I list all contributors that assigned to the 2.7 tickets.
If you can help them to finish that tickets - please, do.
Assigners, if you need any help - please, respond to this thread.

NOTE: We have 6 Unassigned tickets for 2.7. Let's start work on it!

Peter Ivanov   - IGNITE-9559, IGNITE-9583, IGNITE-9685, IGNITE-9823
Andrey Kuznetsov   - IGNITE-9737, IGNITE-9710
Taras Ledkov   - IGNITE-9171
Alexey Goncharuk   - IGNITE-9784
Dmitriy Govorukhin - IGNITE-9550
Igor Seliverstov   - IGNITE-9749
Dmitry Melnichuk   - IGNITE-7782
Alexey Platonov- IGNITE-9726
Ivan Pavlukhin - IGNITE-5935
Yury Babak - IGNITE-8670
Roman Kondakov - IGNITE-7953, IGNITE-9446
Maxim Pudov- IGNITE-9126
Alexey Stelmak - IGNITE-9776
Alexey Kuznetsov   - IGNITE-7926

Unassigned tickets: 

IGNITE-9781 - JDK11: SSL handshake is failed
IGNITE-9620 - MVCC: select throwing `Transaction is already completed` 
exception after mvcc missmatch
IGNITE-9292 - MVCC SQL: Unexpected state exception when updating backup
IGNITE-9663 - MVCC: Data node failure can cause TX hanging.
IGNITE-9724 - MVCC SQL: Test 
CacheMvccSelectForUpdateQueryAbstractTest.testSelectForUpdateDistributed hangs 
sporadically.
IGNITE-9133 - MVCC: Proper empty DHT transactions handling.


signature.asc
Description: This is a digitally signed message part