ksatya wrote > I am looking more of distributing my c++ functionality across the > different nodes to achieve better performance. Hoping I can use Compute > Fabric for that.
In the first place, your algorithms implemented in C++ (or any other language) have to be splittable into parts, so that you can execute these parts in parallel and then reduce to get final result. If this is the case, you will just have to implement ComputeTask interface and provide proper configuration - Ignite will do the rest. -Val -- View this message in context: http://apache-ignite-users.70518.x6.nabble.com/Data-Loading-Options-tp1176p1259.html Sent from the Apache Ignite Users mailing list archive at Nabble.com.
