[GitHub] ignite pull request #1534: IGNITE-4650: Scan and SPI queries must go through...

2017-02-14 Thread tledkov-gridgain
GitHub user tledkov-gridgain opened a pull request: https://github.com/apache/ignite/pull/1534 IGNITE-4650: Scan and SPI queries must go through dedicated query pool You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache

Inaccurate documentation about transactions

2017-02-14 Thread Alexandr Kuramshin
After doing some tests with transactions I've found transactions work not as expected after reading the documentation [1]. First of all, nowhere's written which methods of the cache are transactional and which are not. Quite the contrary, after reading documentation we get know that each TRANSACTI

Re: IGNITE-2741 - spring session design

2017-02-14 Thread Rishi Yagnik
Val, My SB sample project is ready however I have asked for an approval to submit sample project to you, it would take day or two. I will keep you posted. Thanks for all your help, On Tue, Feb 14, 2017 at 3:51 PM, Rishi Yagnik wrote: > Let me build an example app for you and send it across to

Re: Apache Ignite 1.9

2017-02-14 Thread Denis Magda
Continuing Spark related topic... This ticket definitely must be included in 1.9: https://issues.apache.org/jira/browse/IGNITE-3710 We can’t longer afford torture Ignite Shared RDD users who have to use an outdated Spark version. Anton, coul

Re: Apache Ignite 1.9

2017-02-14 Thread Denis Magda
Oleg, Glad to see that we got to the state when the feature is ready to be released. Thanks! Please fix minor notes and pass the feature to Sergey Kozlov for review. You got a green light from me, now get it from Sergey ;) — Denis > On Feb 14, 2017, at 8:11 AM, Oleg Ostanin wrote: > > Denis

Re: Webinar: Automatic Integration with Relational Database

2017-02-14 Thread Denis Magda
Ouch, forgot to share the link, careless me ) Thanks for fixing this, Dmitriy! — Denis > On Feb 14, 2017, at 5:33 PM, Dmitriy Setrakyan wrote: > > Here is the link to the webinar: > https://www.gridgain.com/resources/webinars/apacher-ignitetm-web-console-automating-rdbms-integration > > I am

Re: Webinar: Automatic Integration with Relational Database

2017-02-14 Thread Dmitriy Setrakyan
Here is the link to the webinar: https://www.gridgain.com/resources/webinars/apacher-ignitetm-web-console-automating-rdbms-integration I am already signed up. Looking forward to it! D. On Tue, Feb 14, 2017 at 3:22 PM, Denis Magda wrote: > Igniters, > > Feel free to join my next webinar planned

Re: Apache Ignite 1.9

2017-02-14 Thread Denis Magda
Reviewed and merged the first (!) Ignite Shared RDD examples contributed by Manish: https://issues.apache.org/jira/browse/IGNITE-4526 Java: https://github.com/apache/ignite/blob/b461cb47882861356ede58775bd9e253dcf26202/examples/src/main/java8/org/apache/ignite/examples/java8/spark/SharedRDDExamp

Webinar: Automatic Integration with Relational Database

2017-02-14 Thread Denis Magda
Igniters, Feel free to join my next webinar planned for tomorrow - Wednesday, February 15, 201711:00am PT / 2:00pm ET. I’m going to talk less and show more. In general, this will be a live demonstration of the following: - automatic cluster configuration using a scheme of an existing MySQL data

DML doesn't update a field with an alias

2017-02-14 Thread Denis Magda
Alexander, While I was playing with DML from Web Console I reproduced a weird bug: https://issues.apache.org/jira/browse/IGNITE-4704 Please take a look at it. Is there any chance you fix it for 1.9? — Denis

[jira] [Created] (IGNITE-4704) DML: field with an alias is not updated

2017-02-14 Thread Denis Magda (JIRA)
Denis Magda created IGNITE-4704: --- Summary: DML: field with an alias is not updated Key: IGNITE-4704 URL: https://issues.apache.org/jira/browse/IGNITE-4704 Project: Ignite Issue Type: Bug Af

Re: IGNITE-4534 - Ignite 2.0 eviction design

2017-02-14 Thread Dmitriy Setrakyan
Ivan, thanks for the detailed explanation. My preference would be to support all of the suggested eviction policies and control them from the configuration. However, it does sound the K-random-LRU or K-randome-LRU-2 will be much easier to support than LIRs. Don't we already have something like K-r

Re: IGNITE-13

2017-02-14 Thread Valentin Kulichenko
Vladimir, I think we misunderstood each other. My understanding of this optimization is the following. Currently string serialization is done in two steps (see BinaryWriterExImpl#doWriteString): strArr = BinaryUtils.strToUtf8Bytes(val); // Encode string into byte array. out.writeByteArray(strArr

Re: IGNITE-2741 - spring session design

2017-02-14 Thread Rishi Yagnik
Let me build an example app for you and send it across to you. Thanks, On Tue, Feb 14, 2017 at 3:28 PM, Valentin Kulichenko < valentin.kuliche...@gmail.com> wrote: > Rishi, > > No I don't, and I think that's what we should start with. I want to > understand a use case that is currently not suppo

Re: IGNITE-2741 - spring session design

2017-02-14 Thread Valentin Kulichenko
Rishi, No I don't, and I think that's what we should start with. I want to understand a use case that is currently not supported (if any) and then find the best solution. And I would like to reuse existing code as much as possible. Do you have any code that reproduces the problem you had and how

[GitHub] ignite pull request #1533: IGNITE-3422

2017-02-14 Thread daradurvs
GitHub user daradurvs opened a pull request: https://github.com/apache/ignite/pull/1533 IGNITE-3422 You can merge this pull request into a Git repository by running: $ git pull https://github.com/daradurvs/ignite ignite-3422 Alternatively you can review and apply these change

Re: general question

2017-02-14 Thread Andrey Mashenkov
Hi Aleksey, EvictableEntry.meta is used by EvictionManager to track entry. Actually it may contains Node of EvictionPolicy queue to manupulate queue items in more efficient way. On Tue, Feb 14, 2017 at 4:26 PM, ALEKSEY KUZNETSOV wrote: > need help. What is the use of EvictableEntry.meta ? Why

Re: IGNITE-2741 - spring session design

2017-02-14 Thread Rishi Yagnik
Hi Val, I am working on SB platform with spring security and we found out that the web session filter ignite provides does not work for session management on 2 node spring boot cluster. Somehow, spring security filter kicks in result in some weird errors with web session filter. So making compat

Re: IGNITE-2741 - spring session design

2017-02-14 Thread Valentin Kulichenko
Hi Rishi, Can you please take a look at web session clustering feature [1] provided by Ignite? I'm looking at Spring Session docs and it seems to me it does exactly the same - replaces HttpSession with custom implementation that has a backend storage. If it doesn't provide any additional API or fu

Re: Patches for Website

2017-02-14 Thread Denis Magda
Mauricio, Now I got it. The patch is reviewed and committed. Thanks. Denis > On Feb 14, 2017, at 5:28 AM, Mauricio Stekl wrote: > > Denis, > that’s very weird. Maybe it is being filtered? > I am sending it now as a .zip. Could you please confirm if you receive it? > > Thanks. > Mauricio > >

Re: DML data streaming

2017-02-14 Thread Dmitriy Setrakyan
Vova, Agree about the primitive types. However, it is not clear to me how the mapping from a primitive type to a column name will be supported. Do you have a design in mind? D. On Tue, Feb 14, 2017 at 6:16 AM, Vladimir Ozerov wrote: > Dima, > > This will not work for primitive keys and values

IGNITE-4534 - Ignite 2.0 eviction design

2017-02-14 Thread Ivan Rakov
Hello Igniters, I want to share some thoughts about supporting eviction on new page memory storage. I think, we should reconsider eviction policies in their current state. Current pluggable eviction policy mechanism allows to determine which key will be evicted from the cache and when evicti

[GitHub] ignite pull request #1532: IGNITE-533: Implement IgniteZeromqStreamer to str...

2017-02-14 Thread dream-x
GitHub user dream-x opened a pull request: https://github.com/apache/ignite/pull/1532 IGNITE-533: Implement IgniteZeromqStreamer to stream data from ZeroMQ You can merge this pull request into a Git repository by running: $ git pull https://github.com/dream-x/ignite ignite-533

Re: Apache Ignite 1.9

2017-02-14 Thread Oleg Ostanin
Denis, please look at this version of build with Ignite-Yardstick: https://drive.google.com/open?id=0B9teTzJ9iIvHbFFmcEtWWVpaRWs I think the task is almost completed. On Tue, Feb 14, 2017 at 12:21 PM, Anton Vinogradov wrote: > > > > Can we push to 1.9 and then merge/rebase to master? > > > Ye

[jira] [Created] (IGNITE-4703) Web Console: Correct the height of all the buttons.

2017-02-14 Thread Vica Abramova (JIRA)
Vica Abramova created IGNITE-4703: - Summary: Web Console: Correct the height of all the buttons. Key: IGNITE-4703 URL: https://issues.apache.org/jira/browse/IGNITE-4703 Project: Ignite Issue

[jira] [Created] (IGNITE-4702) Optimize BinaryMarshaller field reading in case all object fields are of fixed size

2017-02-14 Thread Vladimir Ozerov (JIRA)
Vladimir Ozerov created IGNITE-4702: --- Summary: Optimize BinaryMarshaller field reading in case all object fields are of fixed size Key: IGNITE-4702 URL: https://issues.apache.org/jira/browse/IGNITE-4702

Re: Rethink native SQL API in Apache Ignite 2.0

2017-02-14 Thread Vladimir Ozerov
I created the ticket IGNITE-4701 [1]. Design is still be proposed. I think it is better to continue discussion here in order to involve more community members in the process. [1] https://issues.apache.org/jira/browse/IGNITE-4701 On Sat, Feb 11, 2017 at 4:04 AM, Dmitriy Setrakyan wrote: > I thin

[jira] [Created] (IGNITE-4701) New SQL API

2017-02-14 Thread Vladimir Ozerov (JIRA)
Vladimir Ozerov created IGNITE-4701: --- Summary: New SQL API Key: IGNITE-4701 URL: https://issues.apache.org/jira/browse/IGNITE-4701 Project: Ignite Issue Type: Task Components: SQ

[jira] [Created] (IGNITE-4700) Web Console: Font aren't Roboto Slab in the 'Project Structure' pop up window

2017-02-14 Thread Vica Abramova (JIRA)
Vica Abramova created IGNITE-4700: - Summary: Web Console: Font aren't Roboto Slab in the 'Project Structure' pop up window Key: IGNITE-4700 URL: https://issues.apache.org/jira/browse/IGNITE-4700 Proje

Re: Custom thread pools for compute tasks

2017-02-14 Thread Vladimir Ozerov
Gents, I created the ticket for custom executors: IGNITE-4699 [1] Alexander, I am not sure it makes sense since we are talking about distributed operations. CallerRunsPolicy is not suitable where user intentionally asks for job execution on remote node. [1] https://issues.apache.org/jira/browse/I

[jira] [Created] (IGNITE-4698) Web Console: On the Configure Screen font of numbers in circles aren't Roboto Slab

2017-02-14 Thread Vica Abramova (JIRA)
Vica Abramova created IGNITE-4698: - Summary: Web Console: On the Configure Screen font of numbers in circles aren't Roboto Slab Key: IGNITE-4698 URL: https://issues.apache.org/jira/browse/IGNITE-4698

[jira] [Created] (IGNITE-4699) Introduce custom configurable executors.

2017-02-14 Thread Vladimir Ozerov (JIRA)
Vladimir Ozerov created IGNITE-4699: --- Summary: Introduce custom configurable executors. Key: IGNITE-4699 URL: https://issues.apache.org/jira/browse/IGNITE-4699 Project: Ignite Issue Type: T

Re: DML data streaming

2017-02-14 Thread Vladimir Ozerov
Dima, This will not work for primitive keys and values as currently the only way to address them is to use "_KEY" and "_VAL" aliases respectively. For this reason I would rather postpone UPDATE/DELETE implementation until "_KEY" and "_VAL" are hidden from public API and some kind of mapping is int

[jira] [Created] (IGNITE-4697) Web Console: The Main menu looks disabled in demo mode

2017-02-14 Thread Vica Abramova (JIRA)
Vica Abramova created IGNITE-4697: - Summary: Web Console: The Main menu looks disabled in demo mode Key: IGNITE-4697 URL: https://issues.apache.org/jira/browse/IGNITE-4697 Project: Ignite Iss

[jira] [Created] (IGNITE-4696) Create pagination control

2017-02-14 Thread Vica Abramova (JIRA)
Vica Abramova created IGNITE-4696: - Summary: Create pagination control Key: IGNITE-4696 URL: https://issues.apache.org/jira/browse/IGNITE-4696 Project: Ignite Issue Type: Task Compo

[jira] [Created] (IGNITE-4695) Write primitive fields before during binary object marshalling

2017-02-14 Thread Igor Seliverstov (JIRA)
Igor Seliverstov created IGNITE-4695: Summary: Write primitive fields before during binary object marshalling Key: IGNITE-4695 URL: https://issues.apache.org/jira/browse/IGNITE-4695 Project: Ignit

general question

2017-02-14 Thread ALEKSEY KUZNETSOV
need help. What is the use of EvictableEntry.meta ? Why do we need to ship some meta to entry ? -- *Best Regards,* *Kuznetsov Aleksey*

[GitHub] ignite pull request #1531: Async partition eviction

2017-02-14 Thread ilantukh
GitHub user ilantukh opened a pull request: https://github.com/apache/ignite/pull/1531 Async partition eviction You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-gg-11737-3 Alternatively you can revie

Re: IGNITE-3727: why did not merge into the 1.8 version?

2017-02-14 Thread Semyon Boikov
OK, I'll try to review/merge it today. Thanks! On Tue, Feb 14, 2017 at 3:20 PM, 李玉珏@163 <18624049...@163.com> wrote: > Semen, > > > Can this issue be merged into version 1.9? > > > 在 2016/12/13 16:18, Semyon Boikov 写道: > >> Hi, >> >> We had a lot of more priority issues so I somehow missed IGNIT

[GitHub] ignite pull request #1530: IGNITE-4693 Add possibility to wrap Java plugin e...

2017-02-14 Thread ptupitsyn
GitHub user ptupitsyn opened a pull request: https://github.com/apache/ignite/pull/1530 IGNITE-4693 Add possibility to wrap Java plugin exceptions to .NET plugin exceptions You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgai

Re: IGNITE-4492

2017-02-14 Thread Semyon Boikov
It is closed because I just merged fix (rev 8e12513efb24cc6df1da0968560ac932544ee68d). Thanks! On Tue, Feb 14, 2017 at 3:16 PM, ALEKSEY KUZNETSOV wrote: > asfgit has closed my PR for somehow > > вт, 14 февр. 2017 г. в 14:46, Semyon Boikov : > > > Thanks Aleksey, I'll

Re: IGNITE-3727: why did not merge into the 1.8 version?

2017-02-14 Thread 李玉珏
Semen, Can this issue be merged into version 1.9? 在 2016/12/13 16:18, Semyon Boikov 写道: Hi, We had a lot of more priority issues so I somehow missed IGNITE-3732. As a workaround it is possible to create special thread pool and when message is sent to local node execute message listener there

Re: IGNITE-4492

2017-02-14 Thread ALEKSEY KUZNETSOV
asfgit has closed my PR for somehow вт, 14 февр. 2017 г. в 14:46, Semyon Boikov : > Thanks Aleksey, I'll review it today. > > On Tue, Feb 14, 2017 at 2:30 PM, ALEKSEY KUZNETSOV < > alkuznetsov...@gmail.com > > wrote: > > > again, plz review my PR : > > https://github.c

[GitHub] ignite pull request #1491: IGNITE-4492 Add MBean for StripedExecutor

2017-02-14 Thread asfgit
Github user asfgit closed the pull request at: https://github.com/apache/ignite/pull/1491 --- 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 is ena

[GitHub] ignite pull request #1529: Ignite gg 11711

2017-02-14 Thread zstan
Github user zstan closed the pull request at: https://github.com/apache/ignite/pull/1529 --- 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 is enab

[GitHub] ignite pull request #1529: Ignite gg 11711

2017-02-14 Thread zstan
GitHub user zstan opened a pull request: https://github.com/apache/ignite/pull/1529 Ignite gg 11711 You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-gg-11711 Alternatively you can review and apply th

[GitHub] ignite pull request #1528: GG-11711: extended optimistic tx lock conflict ex...

2017-02-14 Thread zstan
Github user zstan closed the pull request at: https://github.com/apache/ignite/pull/1528 --- 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 is enab

[GitHub] ignite pull request #1528: GG-11711: extended optimistic tx lock conflict ex...

2017-02-14 Thread zstan
GitHub user zstan opened a pull request: https://github.com/apache/ignite/pull/1528 GG-11711: extended optimistic tx lock conflict exception message You can merge this pull request into a Git repository by running: $ git pull https://github.com/gridgain/apache-ignite ignite-gg

Re: IGNITE-4492

2017-02-14 Thread Semyon Boikov
Thanks Aleksey, I'll review it today. On Tue, Feb 14, 2017 at 2:30 PM, ALEKSEY KUZNETSOV wrote: > again, plz review my PR : > https://github.com/apache/ignite/pull/1491 > > https://issues.apache.org/jira/browse/IGNITE-4492 > -- > > *Best Regards,* > > *Kuznetsov Aleksey* >

IGNITE-1178

2017-02-14 Thread ALEKSEY KUZNETSOV
Plz, review my PR : https://github.com/apache/ignite/pull/1517 https://issues.apache.org/jira/browse/IGNITE-1178 -- *Best Regards,* *Kuznetsov Aleksey*

IGNITE-4492

2017-02-14 Thread ALEKSEY KUZNETSOV
again, plz review my PR : https://github.com/apache/ignite/pull/1491 https://issues.apache.org/jira/browse/IGNITE-4492 -- *Best Regards,* *Kuznetsov Aleksey*

[GitHub] ignite pull request #1505: IGNITE-3244 Custom arrays arent serialized proper...

2017-02-14 Thread voipp
Github user voipp closed the pull request at: https://github.com/apache/ignite/pull/1505 --- 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 is enab

[jira] [Created] (IGNITE-4694) Add tests to check there are no memory leaks in PageMemory

2017-02-14 Thread Semen Boikov (JIRA)
Semen Boikov created IGNITE-4694: Summary: Add tests to check there are no memory leaks in PageMemory Key: IGNITE-4694 URL: https://issues.apache.org/jira/browse/IGNITE-4694 Project: Ignite I

Re: IGNITE-817: [Test] Disabled tests of GridCacheOffHeapTest

2017-02-14 Thread Александр Меньшиков
Done. PR: https://github.com/apache/ignite/pull/1527 I just ran the tests : http://ci.ignite.apache.org/project.html?projectId=IgniteTests&tab=projectOverview&branch_IgniteTests=pull/1527/head 2017-02-14 12:36 GMT+03:00 Александр Меньшиков : > Yep, i will do it immediately > > 2017-02-13 23:12 G

[GitHub] ignite pull request #1527: IGNITE-817 Remove GridCacheOffHeapTest

2017-02-14 Thread SharplEr
GitHub user SharplEr opened a pull request: https://github.com/apache/ignite/pull/1527 IGNITE-817 Remove GridCacheOffHeapTest Remove GridCacheOffHeapTest You can merge this pull request into a Git repository by running: $ git pull https://github.com/SharplEr/ignite ignite-817

Re: IGNITE-817: [Test] Disabled tests of GridCacheOffHeapTest

2017-02-14 Thread Александр Меньшиков
Yep, i will do it immediately 2017-02-13 23:12 GMT+03:00 Denis Magda : > Alexander, could you wipe out this test then making the code clean? > > — > Denis > > > On Feb 12, 2017, at 11:24 PM, Semyon Boikov > wrote: > > > > Hi, > > > > GridCacheOffHeapTest is some very old class and I think it can

Re: Apache Ignite 1.9

2017-02-14 Thread Anton Vinogradov
> > Can we push to 1.9 and then merge/rebase to master? Yes, that's *correct *too, but only *megre *should be used. On Tue, Feb 14, 2017 at 12:19 PM, Vladimir Ozerov wrote: > Can we push to 1.9 and then merge/rebase to master? It should be more > reliable than cherry-picking. > > On Tue, Feb 1

Re: Apache Ignite 1.9

2017-02-14 Thread Vladimir Ozerov
Can we push to 1.9 and then merge/rebase to master? It should be more reliable than cherry-picking. On Tue, Feb 14, 2017 at 12:15 PM, Anton Vinogradov wrote: > Denis, > > Merge to the master first and then cherry-pick to 1.9 from there is a > *correct > *case. > > On Tue, Feb 14, 2017 at 5:24 AM

Re: Apache Ignite 1.9

2017-02-14 Thread Anton Vinogradov
Denis, Merge to the master first and then cherry-pick to 1.9 from there is a *correct *case. On Tue, Feb 14, 2017 at 5:24 AM, Dmitriy Setrakyan wrote: > Thanks, Denis! > > On Mon, Feb 13, 2017 at 5:49 PM, Denis Magda wrote: > > > Well, merged Kubernetes integration to the master and cherry-pic

Re: general question

2017-02-14 Thread Alexey Goncharuk
I am not sure I understood the question. Instances of Igntie and other resources are injected to user objects (for example, closures) so that a user does not write boilerplate code to obtain a local instance of Ignite, etc. Please consult org.apache.ignite.resources package javadoc for more detail

Re: Custom thread pools for compute tasks

2017-02-14 Thread Alexander Fedotov
Is it feasible to implement a saturation policy like CallerRunsPolicy? It would allow for graceful degradation. On Mon, Feb 13, 2017 at 8:45 PM, Dmitriy Setrakyan wrote: > On Mon, Feb 13, 2017 at 8:18 AM, Alexey Goncharuk < > alexey.goncha...@gmail.com> wrote: > > > > > > > We cannot compensate