BinaryObject field is not update

2020-05-09 Thread takumi
Hello. As I am in trouble, please help me. I use Java ThinClient and Ignite Cache Server. In client code, I update BinaryObject by BinaryObjectBuilder API. ex) BinaryObject bo = clientCache.get(KEY); clientCache.put(KEY, bo.toBuilder().setField("AddField", ...).build()); But

Re: Remove the ignite node from cluster.

2018-04-30 Thread takumi
Thank you for reply. If I remove ignite instance from the cluster, just kill Java process which is the ignite instance? I want to know the correct way to shutdown. In addition, if scaled-in is occured, when should I update the baseline topology? I want to know when must I updates baseline

Remove the ignite node from cluster.

2018-04-30 Thread takumi
I am trying to create a highly scalability system. When the system becomes low load, I scale-in system. At this time, I want to remove the node correctly from ignite cluster. In order to transfer the data and backup of that node to another node automatically, how should I do? -- Sent from:

RE: How to use SqlQuery for multi tables

2018-03-08 Thread takumi
I solved my self. It was the cause that I didn't set to SqlSchema of CacheConfigration. Please tell me in connection with this. I don't know which instance query() method should be called. If it is an instance of the same schema, whichever one I am using will not change? -- Sent from:

RE: How to use SqlQuery for multi tables

2018-03-08 Thread takumi
Thank you for your reply. In addition to this, I want to know how to use SqlFieldsQuery instead of SqlQuery. I would like you to teach me about that. My code is here. -- public class Main { private static final String CACHE_NAME1 = "binaryCache1";

How to use SqlQuery for multi tables

2018-03-07 Thread takumi
I want to use sql "select" from 2 caches. For example. SqlQuery sql = new SqlQuery(cache1, "select a.* from cache1 a, cache2 b where a.id = b.id"); QueryCursor> results = cache.query(sql); ※ cache1, cache2 have BinaryObject Data. I call

Re: UPDATE SQL for nested BinaryObject throws exception.

2017-08-31 Thread takumi
This is a part of the real code that I wrote. - List entities = new ArrayList<>(); QueryEntity qe = new QueryEntity(String.class.getName(), "cache"); qe.addQueryField("attribute.prop1", Double.class.getName(), "prop3"); qe.addQueryField("attribute.prop2",

UPDATE SQL for nested BinaryObject throws exception.

2017-08-31 Thread takumi
I use SqlQuery for nested BinaryObject. The BinaryObject instance is following structure. BinaryObjectBuilder bb2 = binary.builder("nested2 hoge").setField("field2", "old", String.class); BinaryObjectBuilder bb = binary.builder("nested hoge").setField("field1", bb2);

Re: Ignite Persistence on Kubernetes.

2017-08-31 Thread takumi
Thank you for your answer. I choose MongoDB with StatefulSets, and I try to try it. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

In Partitioned Mode, backup node is not restored.

2017-08-31 Thread takumi
I restart ignite server with Ignite Persistence enabled. Ignite Server restores primary, but it does not restore backup. In the situation that I restart ignite server... (i) When I call get() on Ignite Server which has primary data, get() returns restore data. (ii) When I call get() on Ignite