[Core] Write to shared dataframe

How to write data from workers to one shared dataframe? Would like to have workers/actors simultaneously writing data to one dataframe.

For this type of global variable type of object, the best solution is to use an actor Ray Design Patterns - Google Docs. Plasma store is not the good place for this sort of operation because objects are immutable due to our computation models.

1 Like