Re: beforeTestsStarted() was deprecated, what should we use instead?

2019-02-21 Thread oignatenko
finalization? > Who's now responsible for final Junit3 removal? > > On Mon, Feb 18, 2019 at 4:22 PM oignatenko > oignatenko@ > wrote: > >> Hi Anton, >> >> I removed @deprecated from javadoc, thanks for noticing. PR #6122 [1] is >> updated. >> >

Re: beforeTestsStarted() was deprecated, what should we use instead?

2019-02-18 Thread oignatenko
Hi Anton, I removed @deprecated from javadoc, thanks for noticing. PR #6122 [1] is updated. As for TODOs, I think you are wrong here because Ignite coding guidelines [2] not only explicitly allow these but also explain the format in which these should be presented. If you find violations of

Re: beforeTestsStarted() was deprecated, what should we use instead?

2019-02-18 Thread oignatenko
Hi Anton, There you go: PR to remove deprecation: https://github.com/apache/ignite/pull/6122 JIRA: https://issues.apache.org/jira/browse/IGNITE-11345 If anything there is not as you expected, please let me know. regards, Oleg -- Sent from:

Re: beforeTestsStarted() was deprecated, what should we use instead?

2019-02-16 Thread oignatenko
Hi Anton, I would like to re-check if I correctly understand the plan. So, we are going to remove deprecation from these two methods - and the reason for this is that the way recommended instead of these methods makes it less convenient to start and stop the grid. Now, regarding the mentioned

Re: Code inspection

2019-02-09 Thread oignatenko
Hi Maxim, I believe that whatever style checks we establish at Teamcity, we better take care of making it easy for developers to find and fix violations in their typical dev environment (for Ignite this means, in IDEA). I think it is important that developers can maintain required style with

Re: beforeTestsStarted() was deprecated, what should we use instead?

2019-02-07 Thread oignatenko
oncerns. > > What do you think? > > чт, 7 февр. 2019 г. в 09:44, oignatenko > oignatenko@ > : >> >> Hi Anton, >> >> You can start and stop grid from static context required by mentioned >> annotations using code like: >> >> MyTestC

Re: beforeTestsStarted() was deprecated, what should we use instead?

2019-02-06 Thread oignatenko
Hi Anton, You can start and stop grid from static context required by mentioned annotations using code like: MyTestClass.class.newInstance().startGrid(); This way doesn't look very convenient and I created JIRA task to address that: https://issues.apache.org/jira/browse/IGNITE-11240

Re: edit access to Apache Ignite wiki

2019-01-25 Thread oignatenko
.apache.org/confluence/display/IGNITE/How+to+Document with > you > :) > > пт, 25 янв. 2019 г. в 20:55, oignatenko > oignatenko@ > : > >> Hello, >> >> Is it possible to get edit access to Apache Ignite wiki? >> >> I've been working on particular JI

edit access to Apache Ignite wiki

2019-01-25 Thread oignatenko
Hello, Is it possible to get edit access to Apache Ignite wiki? I've been working on particular JIRA ticket [1] and one of reviewers suggested me update particular wiki page [2] after the ticket is done. Now that the ticket is done I would like to make proposed edits to wiki page. TIA,

Re: Is it time to move forward to JUnit4 (5)?

2019-01-23 Thread oignatenko
, I think that approach I originally planned (before you proposed this way) would cause us much more hassle in migration. REGARDS, Oleg Павлухин Иван wrote > Cheers! > > вт, 22 янв. 2019 г. в 20:19, oignatenko > oignatenko@ > : >> >> ...sort of a follow-up. I gave f

Re: IgniteCacheTestSuite3 on TeamCity

2019-01-23 Thread oignatenko
Semen, As a follow up, fix for discovered regression was merged tto master per https://issues.apache.org/jira/browse/IGNITE-11038 If this doesn't fully resolve the issue you observe, please let us know. regards, Oleg -- Sent from: http://apache-ignite-developers.2346864.n4.nabble.com/

Re: IgniteCacheTestSuite3 on TeamCity

2019-01-23 Thread oignatenko
Hi Semen, Thanks for heads up! What you observe is a regression introduced in the course of doing changes per IGNITE-10796 [1]. In file IgniteBinaryObjectsCacheTestSuite3.java line 64 currently reads: List> suite = new ArrayList<>(); Above is wrong, correct code at this line should be:

Re: Is it time to move forward to JUnit4 (5)?

2019-01-22 Thread oignatenko
018 at 10:14 PM oignatenko > oignatenko@ > wrote: > >> Hi Vovan, >> >> I just created JIRA ticket to address your concerns: >> - https://issues.apache.org/jira/browse/IGNITE-10629 >> >> In brief, the plan is that a week or two after migration is over we wil

Re: Time to remove automated messages from the devlist?

2019-01-11 Thread oignatenko
Hi Denis, Mixing JIRA and human mails in one list seems to be inconvenient both for those interested in monitoring human and JIRA mails and from this perspective separate lists approach looks superior. Also, your mention of filtering made me wonder if "mixed" approach may have effect opposite to

Re: Apache Ignite TeamCity Bot - muted tests

2018-12-25 Thread oignatenko
Hi Andrey, As far as I know tests annotated by @Ignore can be conveniently tracked on Teamcity but this requires such tests to be included into JUnit 4 test suite (org.junit.runners.Suite). Above requirement currently isn't met by many Ignite tests which are included in JUnit 3 suites

Re: Is it time to move forward to JUnit4 (5)?

2018-12-18 Thread oignatenko
ribed but I missed it. Currently we have tons of tests > which rely on our home brewed beforeTestsStarted, beforeTest, > afterTest, afterTestsStarted. Are you going to mark them all with > corresponding junit4 annotations? > пн, 17 дек. 2018 г. в 19:13, oignatenko > oignatenko@ > : &

Re: Is it time to move forward to JUnit4 (5)?

2018-12-17 Thread oignatenko
n't we? > > Also is there any vision how many migration problems do we have so far > and how many tests was not migrated yet? > вс, 16 дек. 2018 г. в 17:39, oignatenko > oignatenko@ > : >> >> Hi Ivan, >> >> As promised in my prior mail, here is the branc

Re: Is it time to move forward to JUnit4 (5)?

2018-12-16 Thread oignatenko
>> >> Hi Oleg, >> >> Thanks your for detailed answer. Using junit4 annotations where >> possible sounds good to me. >> >> Also I would like to thank everybody involved in migration to junit4 >> process for your efforts. You were able to move

Re: Is it time to move forward to JUnit4 (5)?

2018-12-14 Thread oignatenko
Hi Ivan, The issues you mentioned are real and these issues are expected to be addressed per IGNITE-10177. I am currently experimenting with various approaches to tackle that, will post here when "early preview implementation" is ready to let others take a look and test it. Until this is

Re: Is it time to move forward to JUnit4 (5)?

2018-12-11 Thread oignatenko
using both styles (annotations > and overridden methods) in the same test. What is your insight? > вт, 11 дек. 2018 г. в 10:27, Vladimir Ozerov > vozerov@ > : >> >> Hi Oleg, >> >> Yes, makes perfect sense. Thank you. >> >> On Mon, Dec 10, 2018 at 10:14 PM

Re: Is it time to move forward to JUnit4 (5)?

2018-12-10 Thread oignatenko
н > vololo100@ > wrote: >> >> > Hi Oleg, >> > >> > I noticed that GridAbstractTest is now capable to run junit4 tests. >> > What are the current recommendations for writing new tests? Can we use >> > junit4 annotation for new tests? >> >

Re: Is it time to move forward to JUnit4 (5)?

2018-12-10 Thread oignatenko
18 at 1:15 PM Павлухин Иван > vololo100@ > wrote: > >> Hi Oleg, >> >> I noticed that GridAbstractTest is now capable to run junit4 tests. >> What are the current recommendations for writing new tests? Can we use >> junit4 annotation for new tests? >> пн, 12 н

[GitHub] ignite pull request #5615: IGNITE-10177 cleanup Junit 3 from the project

2018-12-09 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5615 IGNITE-10177 cleanup Junit 3 from the project You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-10177

[GitHub] ignite pull request #5613: IGNITE-10176 migrate non-core modules tests from ...

2018-12-07 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5613 IGNITE-10176 migrate non-core modules tests from Junit 3 to 4 You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite

Re: Change code style inspections to use red mark for those used at Teamcity build checks (IGNITE-10450)

2018-12-04 Thread oignatenko
Following up prior discussion in this thread, suggested changes were merged to master as a part of IGNITE-10422 and are now included in project default inspections profile. Thanks to Maxim and Dmitriy for making it happen. As for the ticket IGNITE-10450, I plan to keep it open for a little while

[GitHub] ignite pull request #5562: IGNITE-10175 migrate core module tests from Junit...

2018-12-03 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5562 IGNITE-10175 migrate core module tests from Junit 3 to 4 You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite

[GitHub] ignite pull request #5382: IGNITE-10200 GridCacheSetAbstractSelfTest#testMul...

2018-11-30 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/5382 ---

Re: Change code style inspections to use red mark for those used at Teamcity build checks (IGNITE-10450)

2018-11-29 Thread oignatenko
Hi Ivan, Павлухин Иван wrote > P.S. Did not really get what was the main problem related to > IGNITE-10399 [1]. I suppose it should go: simple problem -- fast fix. Well, speaking of IGNITE-10399 it turned out that problem is indeed simple and fix was fast, just as you wrote. What looked wrong

Re: Change code style inspections to use red mark for those used at Teamcity build checks (IGNITE-10450)

2018-11-29 Thread oignatenko
Hi Ivan, You are right that these things will distract people and from this perspective it is very well justified that vast majority of style deviations (currently, all of them) are marked yellow. These are non-critical and if developer ignores them nothing immediately bad happens. (For the sake

Re: Change code style inspections to use red mark for those used at Teamcity build checks (IGNITE-10450)

2018-11-28 Thread oignatenko
Hi Dmitry, When we had preliminary discussion of this with Maxim we both were inclined to post it here and let it hang for a while to let dev list folks discuss this idea in more details for just in case if we missed some usability implications. Though now that you mentioned it I figured that

Change code style inspections to use red mark for those used at Teamcity build checks (IGNITE-10450)

2018-11-28 Thread oignatenko
Hello, When discussing issues involved in IGNITE-10399 we have got an idea to change color highlighting of some code style inspections to make it easier to see which can lead to problems at Teamcity. - Screen shot of how it is supposed to work:

Re: [MTCGA]: new failures in builds [2381922] needs to be handled

2018-11-23 Thread oignatenko
Hi Dmitry, You are right - these failures are expected to be muted, I updated Teamcity to account for that. regards, Oleg PS. Readers interested in more details on that matter can find detailed discussion in comments of JIRA ticket IGNITE-10174:

[GitHub] ignite pull request #5460: IGNITE-10191 Incorrect comparison of lists in Ren...

2018-11-21 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5460 IGNITE-10191 Incorrect comparison of lists in RendezvousAffinityFunctionSimpleBenchmark#testAffinityCompatibility You can merge this pull request into a Git repository by running: $ git

[GitHub] ignite pull request #5435: temporary PR to verify renamed tests on Teamcity ...

2018-11-20 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/5435 ---

[GitHub] ignite pull request #5435: temporary PR to verify renamed tests on Teamcity ...

2018-11-19 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5435 temporary PR to verify renamed tests on Teamcity for review of 10174 You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite

[GitHub] ignite pull request #5434: IGNITE-10335 move ML examples datasets files to r...

2018-11-19 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5434 IGNITE-10335 move ML examples datasets files to resources You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite

Re: Time to remove automated messages from the devlist?

2018-11-15 Thread oignatenko
Personally I am comfortable with the way how things are now because mail filters appear to work well for me. However this thread made me curious about whether ASF has some guidance or recommendations on that matter. I searched quite a bit and found none of that kind. It looks like Apache leaves

[GitHub] ignite pull request #5382: IGNITE-10200 GridCacheSetAbstractSelfTest#testMul...

2018-11-13 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5382 IGNITE-10200 GridCacheSetAbstractSelfTest#testMultipleStructuresInDifferentGroups and some other tests are incorrectly muted You can merge this pull request into a Git repository by running

[GitHub] ignite pull request #5369: IGNITE-10174 migrate examples tests from Junit 3 ...

2018-11-12 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5369 IGNITE-10174 migrate examples tests from Junit 3 to 4 You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-10174

Re: Is it time to move forward to JUnit4 (5)?

2018-11-12 Thread oignatenko
Hi Ivan, I am currently testing approach you used in pull/5354 in the "pilot" sub-task with examples tests (IGNITE-10174). So far it looks more and more like the way to go. The most promising thing I observed is that after I changed classes in our test framework the way you did, execution of

Re: Is it time to move forward to JUnit4 (5)?

2018-11-12 Thread oignatenko
Hi Jörn, Agree, it is also my understanding that after we migrate part of the tests that still use JUnit 3 (https://issues.apache.org/jira/browse/IGNITE-10173), upgrade to next version is going to be easy and low risk. With regards to asserting exceptions I think you have a good point here, I

[GitHub] ignite pull request #5359: IGNITE-10209 some tests in IgniteExamplesMLTestSu...

2018-11-11 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/5359 ---

[GitHub] ignite pull request #5359: IGNITE-10209 some tests in IgniteExamplesMLTestSu...

2018-11-09 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5359 IGNITE-10209 some tests in IgniteExamplesMLTestSuite fail with FileNotFoundException You can merge this pull request into a Git repository by running: $ git pull https://github.com

Re: Is it time to move forward to JUnit4 (5)?

2018-11-09 Thread oignatenko
For all details you can see an experiment on github [1]. Among them > are ticks with @RunWith annotation making possible to run a test > inherited from TestCase as Junit 4 test. Still, I might have missed > something. > > Does it sound sane anyhow? > > [1] https://github.com/

Re: Is it time to move forward to JUnit4 (5)?

2018-11-09 Thread oignatenko
Hi Vyacheslav, GridCommonAbstractTest is expected to change too. As pointed in IGNITE-10173 our approach involves all the subclasses of GridAbstractTest - including but not limited to one you mentioned (GridCommonAbstractTest). regards, Oleg -- Sent from:

Re: Is it time to move forward to JUnit4 (5)?

2018-11-07 Thread oignatenko
Hello, I created JIRA task for this move, with detailed explanation and step-by-step subtasks, your comments are welcome: - https://issues.apache.org/jira/browse/IGNITE-10173 In brief, the plan is to gradually migrate the part of tests that still uses Junit 3 (hundreds if not thousands of those

[GitHub] ignite pull request #5344: IGNITE-10158 Some tests in IgniteCacheAbstractQue...

2018-11-07 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5344 IGNITE-10158 Some tests in IgniteCacheAbstractQuerySelfTest are incorrectly muted You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain

[GitHub] ignite pull request #5055: IGNITE-9884 Some tests are incorrectly muted

2018-10-23 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5055 IGNITE-9884 Some tests are incorrectly muted You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-9884

[GitHub] ignite pull request #5036: IGNITE-9884 Some tests are incorrectly muted

2018-10-23 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/5036 ---

[GitHub] ignite pull request #5036: IGNITE-9884 Some tests are incorrectly muted

2018-10-19 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5036 IGNITE-9884 Some tests are incorrectly muted You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-9884

[GitHub] ignite pull request #5001: IGNITE-9884 Some tests are incorrectly muted

2018-10-19 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/5001 ---

[GitHub] ignite pull request #5001: IGNITE-9884 Some tests are incorrectly muted

2018-10-16 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/5001 IGNITE-9884 Some tests are incorrectly muted You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-9884

[GitHub] ignite pull request #4992: IGNITE-9884 Some tests are incorrectly muted

2018-10-16 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/4992 ---

[GitHub] ignite pull request #4992: IGNITE-9884 Some tests are incorrectly muted

2018-10-15 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/4992 IGNITE-9884 Some tests are incorrectly muted You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-9884

[GitHub] ignite pull request #4882: IGNITE-9754 Increase timeout waiting for commitLa...

2018-10-01 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/4882 IGNITE-9754 Increase timeout waiting for commitLatch in testRollbackOnTopologyLockPessimistic You can merge this pull request into a Git repository by running: $ git pull https

[GitHub] ignite pull request #4853: IGNITE-9721 NPE in IgniteAuthenticationProcessor$...

2018-09-27 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/4853 IGNITE-9721 NPE in IgniteAuthenticationProcessor$RefreshUsersStorageWorker.body You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain

[GitHub] ignite pull request #4828: IGNITE-9691 testConcurrentAuthorize uses outdated...

2018-09-25 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/4828 IGNITE-9691 testConcurrentAuthorize uses outdated assumption about exception message You can merge this pull request into a Git repository by running: $ git pull https://github.com

[GitHub] ignite pull request #4774: Ignite 8619 experimental

2018-09-19 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/4774 ---

[GitHub] ignite pull request #4774: Ignite 8619 experimental

2018-09-17 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/4774 Ignite 8619 experimental Temporary PR to try out particular test change at Teamcity You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain

[GitHub] ignite pull request #4760: Ignite 9585 experimental

2018-09-14 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/4760 ---

[GitHub] ignite pull request #4760: Ignite 9585 experimental

2018-09-14 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/4760 Ignite 9585 experimental temporary branch and PR for experimenting for Teamcity You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain

[GitHub] ignite pull request #4753: IGNITE-9585 Error message sometimes refers nonexi...

2018-09-13 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/4753 IGNITE-9585 Error message sometimes refers nonexisting log file when remote node fails to start You can merge this pull request into a Git repository by running: $ git pull https

[GitHub] ignite pull request #4662: IGNITE-9396 ML Examples: can't run examples, not ...

2018-08-31 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/4662 IGNITE-9396 ML Examples: can't run examples, not enough dependencies in pom.xml You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain

[GitHub] ignite pull request #4569: IGNITE-9316 Analyse and improve code coverage in ...

2018-08-18 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/4569 IGNITE-9316 Analyse and improve code coverage in ML module You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite

[GitHub] ignite pull request #4560: IGNITE-9297 Review ML examples javadocs as of rel...

2018-08-16 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/4560 IGNITE-9297 Review ML examples javadocs as of release 2.6 You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite

[GitHub] ignite pull request #4489: IGNITE-9146 Analyse and improve code coverage in ...

2018-08-06 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/4489 IGNITE-9146 Analyse and improve code coverage in ML module You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite

[GitHub] ignite pull request #4462: IGNITE-9124 Remove some dead code in ML module

2018-07-31 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/4462 IGNITE-9124 Remove some dead code in ML module You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-9124

[GitHub] ignite pull request #3418: Ignite 6899 check

2018-02-01 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/3418 ---

[GitHub] ignite pull request #3449: IGNITE-7509 Adjust documentation for ML module

2018-01-29 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3449 IGNITE-7509 Adjust documentation for ML module - updated docs -- verified with diffs overview and rebuild per updated instructions You can merge this pull request into a Git repository

[GitHub] ignite pull request #3418: Ignite 6899 check

2018-01-22 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3418 Ignite 6899 check You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-6899-check Alternatively you can review

[GitHub] ignite pull request #2600: IGNITE-6193 ML profile is missing in 2.1 binary r...

2018-01-22 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/2600 ---

[GitHub] ignite pull request #3393: IGNITE-7454 Wrong package in IgniteExamplesMLTest...

2018-01-17 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3393 IGNITE-7454 Wrong package in IgniteExamplesMLTestSuite - completed work for ML examples -- verified with diffs overview, clean rebuild and execution of IgniteExamplesSelfTestSuite You can

[GitHub] ignite pull request #3363: IGNITE-5725 Adapt TracerTest for TC builds.

2018-01-12 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3363 IGNITE-5725 Adapt TracerTest for TC builds. - implemented adaptive testing approach -- verified with diffs overview, clean rebuild and execution of unit tests in both desktop and headless

[GitHub] ignite pull request #3314: IGNITE-7214 performance measurement for FCM and K...

2017-12-28 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3314 IGNITE-7214 performance measurement for FCM and KNN algorithms You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite

[GitHub] ignite pull request #3241: IGNITE-7097 performance measurement for SparseDis...

2017-12-15 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3241 IGNITE-7097 performance measurement for SparseDistributedMatrix multi… …plication - optimised and unoptimised benchmarks, along with respective documentation - also a common

[GitHub] ignite pull request #3213: IGNITE-6495 performance measurement of decision t...

2017-12-12 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3213 IGNITE-6495 performance measurement of decision trees algorithms - benchmark drafted a while ago integrated with recent changes in master -- verified with diffs overview, clean rebuild

[GitHub] ignite pull request #3211: IGNITE-7118 performance measurement for distribut...

2017-12-12 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/3211 ---

[GitHub] ignite pull request #3211: IGNITE-7118 performance measurement for distribut...

2017-12-12 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3211 IGNITE-7118 performance measurement for distributed k-means clustering You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache

[GitHub] ignite pull request #3210: IGNITE-7118 performance measurement for distribut...

2017-12-12 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3210 IGNITE-7118 performance measurement for distributed k-means clustering - enabled benchmark after integration of necessary fix from master -- verified with diffs overview, clean rebuild

[GitHub] ignite pull request #3173: IGNITE-6373 Create example for local and distribu...

2017-12-07 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3173 IGNITE-6373 Create example for local and distributed k-means algorithm - examples implemented -- verified with diffs overview, clean build and execution of examples You can merge this pull

[GitHub] ignite pull request #3069: Ignite 6872 1

2017-12-07 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/3069 ---

[GitHub] ignite pull request #3168: IGNITE-6872 Linear regression should implement Mo...

2017-12-07 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3168 IGNITE-6872 Linear regression should implement Model API Model and Trainer API implemented for OLS regression You can merge this pull request into a Git repository by running: $ git pull

[GitHub] ignite pull request #3167: IGNITE-6872 Linear regression should implement Mo...

2017-12-07 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/3167 ---

[GitHub] ignite pull request #3167: IGNITE-6872 Linear regression should implement Mo...

2017-12-07 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3167 IGNITE-6872 Linear regression should implement Model API You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-6872

[GitHub] ignite pull request #3069: Ignite 6872 1

2017-11-20 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/3069 Ignite 6872 1 You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-6872-1 Alternatively you can review and apply

yardstick module - adding ML benchmarks (PR #2780 / IGNITE-6123)

2017-10-22 Thread oignatenko
Hello, I implemented some benchmarks for machine learning algorithms per IGNITE-6123 [1] and would want to push these to master. Changes impact "yardstick" module, more details of new benchmarks can be found in PR #2780 [2]. Yury Babak [3] did preliminary review and sanity check. These are

[GitHub] ignite pull request #2780: Ignite 6123

2017-10-11 Thread oignatenko
GitHub user oignatenko reopened a pull request: https://github.com/apache/ignite/pull/2780 Ignite 6123 You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-6123 Alternatively you can review and apply

[GitHub] ignite pull request #2780: Ignite 6123

2017-10-11 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/2780 ---

[GitHub] ignite pull request #2780: Ignite 6123

2017-09-29 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/2780 Ignite 6123 You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-6123 Alternatively you can review and apply

[GitHub] ignite pull request #2604: IGNITE-6193 ML profile is missing in 2.1 binary r...

2017-09-07 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/2604 ---

[GitHub] ignite pull request #2604: IGNITE-6193 ML profile is missing in 2.1 binary r...

2017-09-06 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/2604 IGNITE-6193 ML profile is missing in 2.1 binary release - porting changes to standalone and lgpl pom files from regular one -- verified with diffs overview You can merge this pull request

[GitHub] ignite pull request #2600: IGNITE-6193 ML profile is missing in 2.1 binary r...

2017-09-06 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/2600 IGNITE-6193 ML profile is missing in 2.1 binary release You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-9163

[GitHub] ignite pull request #2537: IGNITE-6193 ML profile is missing in 2.1 binary r...

2017-08-30 Thread oignatenko
Github user oignatenko closed the pull request at: https://github.com/apache/ignite/pull/2537 --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature

[GitHub] ignite pull request #2537: IGNITE-6193 ML profile is missing in 2.1 binary r...

2017-08-29 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/2537 IGNITE-6193 ML profile is missing in 2.1 binary release - verified with diffs overview and trial local build You can merge this pull request into a Git repository by running: $ git pull

[GitHub] ignite pull request #1837: IGNITE-5018 Javadocs in Ignite ML module.

2017-04-20 Thread oignatenko
GitHub user oignatenko opened a pull request: https://github.com/apache/ignite/pull/1837 IGNITE-5018 Javadocs in Ignite ML module. - compliance with coding guidelines (rev 17 at https://cwiki.apache.org/confluence/display/IGNITE/Coding+Guidelines) - verified with diffs

Re: Adding ML to Ignite, IGNITE-4572

2017-04-18 Thread oignatenko
browse/IGNITE-5000; > > — > Denis > >> On Apr 17, 2017, at 8:48 AM, oignatenko > oignatenko@ > wrote: >> >> Denis, I prepared preliminary draft doc for readme.io >> http://readme.io/;, it reflects proposed >> rename. You can find it attache

Re: Adding ML to Ignite, IGNITE-4572

2017-04-17 Thread oignatenko
why, thinking of future, it will be a right decision to name it > accordingly. > > Any concerns? > > BTW, have the module been fully merged? I want to try to build it and > check the examples. > > — > Denis > >> On Apr 14, 2017, at 7:05 AM, oignatenko > oignatenko@ &g

Re: Adding ML to Ignite, IGNITE-4572

2017-04-14 Thread oignatenko
Thank you Denis, that sounds like a good plan. I am working on it now. I didn't reassign IGNITE-4964, just set a watch on it. Will comment on it when I have concrete details to share. Side note my build check completed successfully, although it took quite a bit of time: I cleaned my local maven

Re: Adding ML to Ignite, IGNITE-4572

2017-04-13 Thread oignatenko
Yury, Denis - me and Nikita are going to take care of readme.io docs. I plan to start on this tomorrow, will keep you posted on the progress. Current plan is to briefly introduce new package and examples and explain how to run examples and possibly unit tests. With regards to build details,