Re: Use of distributed computing in C++

2024-04-08 Thread Pavel Tupitsyn
I thought the question was about thin client, which can only run Java tasks. The attached code will work from a C++ thick client or server node, the requirement is to invoke RegisterComputeFunc [1] on every server node beforehand. [1] https://ignite.apache.org/releases/latest/cppdoc/classignite_1

RE: Use of distributed computing in C++

2024-04-08 Thread Louis C
Thanks for your answer, it answers a part of my question. But what about this code that is pure C++ ? (can be seen on the previous link I sent) : [cid:7fd825a6-4269-4ded-80ea-530ed872a545] How does one make sure that the server knows this task ? Best regards, Louis _

Re: Use of distributed computing in C++

2024-04-08 Thread Pavel Tupitsyn
С++ client can execute Compute tasks that are written in Java and deployed to the server nodes: https://ignite.apache.org/releases/latest/cppdoc/classignite_1_1thin_1_1compute_1_1ComputeClient.html On Fri, Apr 5, 2024 at 3:41 PM Louis C wrote: > Hello everyone, > > I was interested in the distr