Re: Failed to bind to any [host:port] from the range portFrom=10900 , portTo=11000

2020-04-02 Thread Ilya Kasnacheev
Hello! ClientConnectorConfiguration is needed to allow other clients to connect to local node, and not for connecting to remote nodes. ClientConfiguration/startClient() should be used instead. Regards, -- Ilya Kasnacheev пт, 20 мар. 2020 г. в 07:23, AravindJP : > Hi Stephen, > i was using I

Re: QueryParallelism

2020-04-02 Thread Ilya Kasnacheev
Hello! I think that you need a custom cache template (as per https://apacheignite-sql.readme.io/docs/create-table ) with and then create all caches with TEMPLATE=templateName instead of PARTITIONED. You may also need to create indexes with PARALLEL 24. Regards, -- Ilya Kasnacheev ср, 1 апр.

Re: Using SQL cache with javax cache api

2020-04-02 Thread Ilya Kasnacheev
Hello! Ignite cannot store multi-columnstables as maps in cache. Those columns will still be stored as BinaryObject/POJO, and you only confuse Ignite internal by pretending that it is HashMap. I recommend getting rid of HashMap in table declaration and using ignite.binary().builder("typeName") in

Re: ClusterTopologyServerNotFoundException

2020-04-02 Thread Ilya Kasnacheev
Hello! Do you have a reproducer for this behavior? I have not seen persistent clusters without baseline topology for some time, there may be issues. Regards, -- Ilya Kasnacheev пт, 20 мар. 2020 г. в 18:53, prudhvibiruda : > Hi , > > Please don't be confused. > Our plan is to use more server

Re: Comma in field is not supported by COPY command?

2020-04-02 Thread Ilya Kasnacheev
Hello! I see that you have already filed https://issues.apache.org/jira/browse/IGNITE-12852 Regards, -- Ilya Kasnacheev ср, 1 апр. 2020 г. в 14:58, 18624049226 <18624049...@163.com>: > Hi community, > > CREATE TABLE test(a int,b varchar(100),c int,PRIMARY key(a)); > > a.csv: > 1,"a,b",2 > > C

Re: Virtual Ignite meetup tomorrow!

2020-04-02 Thread Kseniya Romanova
Thank you, Val! Here's the record: https://youtu.be/vJIrLOWMLa4 ср, 1 апр. 2020 г. в 02:07, Valentin Kulichenko < valentin.kuliche...@gmail.com>: > Fellow Igniters, > > I know many of you have to stay at home these days. I have good news for > you: this doesn't mean that you can't attend Ignite m

Re: Cache replication

2020-04-02 Thread Vasily Laktionov
Thank you, Evgenii, this is exactly what we need! -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Ignite transactions stuck between PREPARED and COMMITTING

2020-04-02 Thread rc
Hello experts, Cluster details: Running Ignite 2.4.0 with 3 servers and 4 clients. Observed transaction timeouts after a server node restarted. Upon further investigation, it was due to PME failures and also saw that there were some long running transactions on a cache for the same key for more

Error and Question about communication between java node and c++ node

2020-04-02 Thread Anthony
Hello, I am trying to make java node and c++ node communicate with each other. I have successfully done it between two c++ node (which is straight forward). However, when I tried to do a put in java and a get in c++, I got some errors. Could anyone have a look? Thanks. Also, examples of the comm

Re: Error and Question about communication between java node and c++ node

2020-04-02 Thread Evgenii Zhuravlev
Hi, Can you share full log files? Evgenii чт, 2 апр. 2020 г. в 17:40, Anthony : > Hello, > > I am trying to make java node and c++ node communicate with each other. I > have successfully done it between two c++ node (which is straight forward). > > However, when I tried to do a put in java and