Please ignore

2017-08-31 Thread Alexander Fedotov
For test purposes only. Kind regards, Alex.

Re: fetching all the tasks already scheduled and to know the status of the task

2017-08-24 Thread Alexander Fedotov
As well, please properly subscribe to the mailing list so that the community can receive email notifications for your messages. To subscribe, send an empty email to user-subscr...@ignite.apache.org and follow simple instructions in the reply. Kind regards, Alex. On Thu, Aug 24, 2017 at 5:41 PM, a

Re: Running Ignite client in C++

2017-07-24 Thread Alexander Fedotov
Additionally, especially if you are familiar with QMake, please find attached an example of a simple QMake project file with a set of dependencies on Ignite headers and libs as well as on some required Java headers and libs. Kind regards, Alex. On Mon, Jul 24, 2017 at 3:44 PM, Alexander Fedotov

Re: Running Ignite client in C++

2017-07-24 Thread Alexander Fedotov
Hi, Please refer to the pratform/cpp/README.txt for the information about the required headers and libraries. Under Linux, only makefiles are available for now. Kind regards, Alex. On Mon, Jul 24, 2017 at 2:11 PM, kotamrajuyashasvi < kotamrajuyasha...@gmail.com> wrote: > Hi .. I'm a newbie in i

Re: SQL Syntax error in cross-cache query

2017-07-19 Thread Alexander Fedotov
Hi, You need either adjust entity/table name to the upper case like *select ID from "personCache".PERSON p limit 5* or add a config option , in this case you will be able to perform the query in the following way *select \"id\" from \"personCache\".\"Person\" p limit 5* (note the escaping is manda

Re: How to access Apache Ignite service grid services from a J2ee application server

2017-07-17 Thread Alexander Fedotov
Make sure that you are creating an Ignite client within a singleton bean. Kind regards, Alex. On Mon, Jul 17, 2017 at 11:32 AM, Alexander Fedotov < alexander.fedot...@gmail.com> wrote: > Could you describe or share the code where and how you create Ignite > client? > > Ki

Re: How to access Apache Ignite service grid services from a J2ee application server

2017-07-17 Thread Alexander Fedotov
Could you describe or share the code where and how you create Ignite client? Kind regards, Alex 16 июля 2017 г. 11:32 AM пользователь "krutipatel" написал: When I try to access using service-proxy through a client-mode ignite from within the J2ee app. The app is stuck to receive the data from t

Re: How to access Apache Ignite service grid services from a J2ee application server

2017-07-16 Thread Alexander Fedotov
Posting from the duplicate thread I am trying to access services that i have exposed over the apache-ignite service-grid from out side the ignite-cluster. I am trying to access them from a J2ee application running on a Wildfly10 j2ee application server. However when i am trying to use the services

Re: Poor cross cache join SQL performance (v2.0.0)

2017-07-07 Thread Alexander Fedotov
Hi, It would be great to take a look on a corresponding JFR. Kind regards, Alex 6 июля 2017 г. 11:55 AM пользователь "afedotov" < alexander.fedot...@gmail.com> написал: Could you please share the reproducer? Kind regards, Alex 6 июля 2017 г. 11:18 AM пользователь "iostream [via Apache Ignite

Re: deploy is not working by IgniteDataStreamer

2017-06-27 Thread Alexander Fedotov
Hi, Stream receiver is executed on server nodes, which don't have real ru.test.domain.Call definition only it's binary representation sent during peer class loading. You need to set streamer.keepBinary(true) and operate on a BinaryObject inside the stream receiver instead of operating on ru.test.d

Re: Remote Cache Data Loading

2017-06-27 Thread Alexander Fedotov
Hi, Kindly check the following documentation section https://apacheignite.readme.io/docs/data-loading Kind regards, Alex. On Tue, Jun 27, 2017 at 3:48 PM, sanaraya wrote: > Hi , > > I wanted to know , is there any API from Ignite to load Remote cache data > faster or do we need to create multi

Re: High heap on ignite client

2017-06-19 Thread Alexander Fedotov
;> Do you agree that Jdbc driver loading everything in memory and next() >> just for conversion ? >> >> Thanks >> >> On 19 June 2017 at 17:16, Alexander Fedotov <[hidden email] >> <http:///user/SendEmail.jtp?type=node&node=13953&i=0>> wrote:

Re: High heap on ignite client

2017-06-19 Thread Alexander Fedotov
Hi Anil. Could you please also share C:/Anil/ignite-client.xml ? As well, it would be useful if you took JFR reports for the case with allocation profiling enabled. Just to clarify, by 4L do you mean 4 million entries? Kind regards, Alex. On Mon, Jun 19, 2017 at 10:15 AM, Alexander Fedotov

Re: High heap on ignite client

2017-06-19 Thread Alexander Fedotov
Thanks. I'll take a look and let you know about any findings. Kind regards, Alex 18 июня 2017 г. 3:33 PM пользователь "Anil" написал: Hi Alex, test program repository - https://github.com/adasari/test-ignite-jdbc.git please let us if you have any suggestions/questions. thanks. Thanks On 15

Re: Cache.destroy() & close() does not delete SwapFile Ignite 2.0

2017-06-02 Thread Alexander Fedotov
Hi. Just another thing is worth to be mentioned is that by design memory policy could be used by multiple caches, that's why in general it's not safe to remove swap files on cache closing/destruction. Kind regards, Alex. On Thu, Jun 1, 2017 at 11:52 PM, afedotov wrote: > Hi. > > As for now, t

Re: How to deploy ignite service evenly across the cluster ?

2017-05-16 Thread Alexander Fedotov
Danny, just one more question. Are all the services deployed as cluster singletons? Kind regards, Alex. On Tue, May 16, 2017 at 1:10 PM, afedotov wrote: > Hi Danny, > > Could you please share your node filter/cluster group pedicate? > > Kind regards, > Alex. > > On Mon, May 15, 2017 at 10:49 PM

Re: How to deploy ignite service evenly across the cluster ?

2017-05-15 Thread Alexander Fedotov
Danny, in this case, it looks like you are right and the random don't provide even distribution. To avoid this you could devise a solution based on a node filter if affinity deployment doesn't do the trick for you https://apacheignite.readme.io/v1.8/docs/service-grid#section-node-filter-based-deplo

Re: CPU Usage on distributed queries

2017-04-03 Thread Alexander Fedotov
Hi, Do the two nodes with the highest load reside on the same physical machine? If that is so and the queries were run from that machine, then I could assume that the cpu load is due to the reduce step being held there. Kind regards, Alex 3 апр. 2017 г. 8:45 PM пользователь "vdpyatkov" написал:

Re: Cache Queues and Load Balancing

2017-03-22 Thread Alexander Fedotov
Hello, Yes, it's guaranteed that only one node will take each distinct value from the IgniteQueue. https://apacheignite.readme.io/docs/queue-and-set#section-cache-queues-and-load-balancing On Tue, Mar 21, 2017 at 10:00 PM, kmandalas < kyriakos.manda...@iriworldwide.com> wrote: > Hello Alex and t

Re: Memory consumption continues to grow when running out of heap

2017-01-17 Thread Alexander Fedotov
HI ght230, I have not been able to reproduce it locally. Which version of Ignite do you use? What kind of objects do you put in cache? Could you share your Ignite configuration or probably a reproducer? On Sun, Jan 15, 2017 at 4:54 PM, ght230 wrote: > I configured the cache for "OFFHEAP_TIERED"

Re: Difference between ignite stream transformer and ignite stream visitor

2017-01-16 Thread Alexander Fedotov
HI rishi007bansod, The difference is that the main focus of StreamTransformer is updating data in a stream cache based on its previous value without a need to refer to the cache directly: you are just operating on a received MutableEntry. StreamVisitor, in turn, is a more general-purpose tool for