RE: ignite git repo

2019-01-17 Thread Scott Cote
Petr, Thank you for your quick reply. git clone https://gitbox.apache.org/repos/ignite.git 404 on that one …. “[git]projects / 404 - No projects found OPML

Re: Concurrent merge into operations cause critical system error on ignite 2.7 node.

2019-01-17 Thread Ilya Kasnacheev
Hello! Thank you for the reproducer! Unfortunately, it seems that this behavior is expected. Much like with putAll, you risk deadlock if you do MERGE INTO with unsorted sets of keys. Meaning you should always pre-sort keys that you pass to MERGE INTO. Moreover, I have discussed it with people

Re: ignite git repo

2019-01-17 Thread Dmitriy Govorukhin
This link work for me, https://gitbox.apache.org/repos/asf/ignite чт, 17 янв. 2019 г., 20:03 Scott Cote sc...@etcc.com: > Petr, > > > > Thank you for your quick reply. > > > > git clone https://gitbox.apache.org/repos/ignite.git > > > > 404 on that one …. > > > > “[image: git]

Re: ignite git repo

2019-01-17 Thread Petr Ivanov
Repository is move to GitBox Clone command: git clone http://gitbox.apache.org/repos/ignite.git > On 17 Jan 2019, at 19:17, Scott Cote wrote: > > Hello Igniters: > > I’m having trouble cloning the git repo. Want to build from source and maybe > make an add on …. > > Went to the link:

ignite git repo

2019-01-17 Thread Scott Cote
Hello Igniters: I'm having trouble cloning the git repo. Want to build from source and maybe make an add on Went to the link: https://ignite.apache.org/download.cgi#git-repository to get the "git" url/command Am issuing the command: git clone

RE: building and running from source

2019-01-17 Thread Scott Cote
Success maybe? I forgot to tell maven to skip tests , so I threw in that switch to get a snapshot. Probing deeper – it seems this is what I needed -the source matches the binaries and now I understand how to build the web console (? Lets see if I get through this without crying for yelp

Re: Does Ignite message support C++?

2019-01-17 Thread summasumma
Thanks Igor. Yes it is trying to start in client mode now with correct file. My bad filename misspelled by a character. Now im getting following error: [09:55:28] REST protocols do not start on client node. To start the protocols on client node set '-DIGNITE_REST_START_ON_CLIENT=true' system

Unsubscribe

2019-01-17 Thread Dolinkov, Sergey

Re: Does Ignite message support C++?

2019-01-17 Thread summasumma
Thanks Igor. I am trying to do an example putandget operation using the Ignite-c++ client code from the following link: https://github.com/apache/ignite/tree/master/modules/platforms/cpp/examples == Source code:

Re: Does Ignite message support C++?

2019-01-17 Thread Igor Sapego
It should start in client mode. Make sure that the right configuration file is used. Best Regards, Igor On Thu, Jan 17, 2019 at 12:40 PM summasumma wrote: > Thanks Igor. > > I am trying to do an example putandget operation using the Ignite-c++ > client > code from the following link: >

Re: Data streamer has been closed.

2019-01-17 Thread Ilya Kasnacheev
Hello! I have ran your code several times and not encountered this problem. Can you make a new reproducer which will show it (semi)reliably? Regards, -- Ilya Kasnacheev чт, 17 янв. 2019 г. в 05:18, yangjiajun <1371549...@qq.com>: > Hello. > > Thanks for reply.Unfortunately,I still get the

Re: Iterating through native persistence entries before joining the cluster

2019-01-17 Thread Lukas Polacek
Technically, I could delay joining the cluster by adding Thread.sleep() into the BEFORE_NODE_START lifecycle bean (or my newly created BEFORE_CLUSTER_JOIN). I'd like to iterate through the local cache in one of those lifecycle beans - but that doesn't seem possible. Regarding cluster groups: I

Unsubscribe

2019-01-17 Thread Viraj Rathod
-- Regards, Viraj Rathod

Re: Does Ignite message support C++?

2019-01-17 Thread Igor Sapego
No you should not have the same configs, but you need to have the same configuration of the protocol, which is different for Java and C++ by default (I believe, you use Java server). You may find details here [1]. [1] - https://apacheignite-cpp.readme.io/docs/cross-platform-interoperability

RE: server always shutdown

2019-01-17 Thread Stanislav Lukyanov
Hi, You have to provide the details – configs, usage scenarios, error messages, logs. Without that no one will be able to tell what’s wrong with your cluster. Stan From: hulitao198758 Sent: 17 января 2019 г. 8:42 To: user@ignite.apache.org Subject: server always shutdown Ignite. Sh start

Re: Iterating through native persistence entries before joining the cluster

2019-01-17 Thread Ilya Kasnacheev
Hello! I guess you could be starting a service instance on every node, doing warmup in init(). Then service requests will be only routed on nodes where warmup is complete. Regards, -- Ilya Kasnacheev чт, 17 янв. 2019 г. в 13:26, Lukas Polacek : > Technically, I could delay joining the

Re: NearCache

2019-01-17 Thread Ilya Kasnacheev
Hello! You can have onHeap cache https://apacheignite.readme.io/docs/memory-configuration#section-on-heap-caching setting copyOnRead to false will let you keep unmarshalled values in it. Be sure to avoid modifying them in your code since that's not tracked. Regards, -- Ilya Kasnacheev ср, 16

Re: Data streamer has been closed.

2019-01-17 Thread yangjiajun
Hello. Please try this loop: for(int i=0;i<10;i++){ System.out.println(i); initData(); overwriteData(); } And here is my config file: example-default12.xml

Re: MVCC and continuous query

2019-01-17 Thread Ilya Kasnacheev
Hello! It's hard to say, maybe you need IgniteQueue if you want to have a pure pub/sub? Otherwise it's not obvious why you aren't content with Continuous Query here. Please clarify what do you mean by 'client API'. Ignite has a lot of APIs and it's not obvious which is the one you mean here.

Re: NearCache

2019-01-17 Thread Mikhail
Hi Greg, you can try to use OptimizedMarshaller: igniteConfig.setMarshaller(new OptimizedMarshaller()) however, this will lead to some limitations, which you can find in java doc of setMarshaller method. Thanks, Mike. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Ignite in GCP cloud

2019-01-17 Thread nitin dharrao
Hi I am new to Apache Ignite. Need some guidance so that I can proceed with the right approach. We want to use Ignite Data Grid (memory cache) and want to deploy Apache Ignite in Google Cloud Platform within Kubernetes setting. 1. We are not allowed to access the image hosted on the public

building and running from source

2019-01-17 Thread Scott Cote
Hello, I want to build a copy of ignite with the web console. Cannot - as far as I can tell - download a binary for the web console (don't want to use the gridgain cloud version). The instructions for the web console state that one must build it from source. To that point, the binary

RE: building and running from source

2019-01-17 Thread Scott Cote
Am trying out : mvn package -P release this builds a snapshot? SCott From: Scott Cote Sent: Thursday, January 17, 2019 4:32 PM To: user@ignite.apache.org Subject: building and running from source Hello, I want to build a copy of ignite with the web console. Cannot - as far as I can tell -

Creating Dataset classNotFound exception

2019-01-17 Thread mahesh76private
Hi I have a very simple program to create a DataSet to see if we can migrate to Ignite ML. Strangely on the server logs, why would I get a CreateMLDataSet Class Not found exception? public class CreateMLDataSet { public static void main(String[] args) throws Exception {

Re: MVCC and continuous query

2019-01-17 Thread Cindy Xing
My goal is to enable my app taking action upon changes in the ignite data store. New to ignite and not exactly know the ignite API available. Cindy -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Consistency

2019-01-17 Thread Cindy Xing
In the ignite doc (https://apacheignite.readme.io/docs/primary-and-backup-copies), it mentioned that the cache will be immediate consistent independent of the sync mode chosen. Can someone help explain how?/Cache Data ConsistencyNote that regardless of write synchronization mode, cache data will