Re: Gelly Scatter/Gather - Vertex update

Posted by Vasiliki Kalavri on
URL: http://deprecated-apache-flink-user-mailing-list-archive.369.s1.nabble.com/Gelly-Scatter-Gather-Vertex-update-tp7563p7597.html

Hi Alieh,

the scatter-gather model is built on top of Flink delta iterations exactly for the reason to allow de-activating vertices that do not need to participate in the computation of a certain superstep. If you want all vertices to participate in all iterations of scatter-gather, you can send dummy messages to keep them active. However, the scatter-gather model might not be the correct model for your use-case and you might want to look into Flink bulk iteration operators instead [1].

-Vasia.


On 14 June 2016 at 12:21, Alieh Saeedi <[hidden email]> wrote:
Hi everybody
In Gelly scatter/gather when no message is sent to a vertex in one iteration, it will not enter the scatter function in next iteration. Why? I need all vertices enter the scatter function in all iterations, but some of them receive a message and will be updated.

thanks in advance