ignitetcbot commented on code in PR #13087: URL: https://github.com/apache/ignite/pull/13087#discussion_r3183841863
########## docs/_docs/distributed-computing/distributed-computing.adoc: ########## @@ -311,7 +311,7 @@ If you want to use the key and value objects inside `IgniteCallable` and `Ignite In the cases where you do not need to colocate computations with data but simply want to process all data remotely, you can run local cache queries inside the `call()` method. Consider the following example. -Let's say we have a cache that stores information about persons and we want to calculate the average age of all persons. One way to accomplish this is to run a link:key-value-api/querying[scan query] that will fetch the ages of all persons to the local node, where you can calculate the average age. +Let's say we have a cache that stores information about persons and we want to calculate the average age of all persons. One way to accomplish this is to run a link:key-value-api/using-cache-queries[scan query] that will fetch the ages of all persons to the local node, where you can calculate the average age. Review Comment: Compute.broadcast() with ScanQuery.setLocal(true) is really good opportunity of the product, so I agree, I've created https://issues.apache.org/jira/browse/IGNITE-28641 for this change -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
