0 votes
in Apache Spark by
What do you understand by accumulators in Apache Spark?

1 Answer

0 votes
by

Accumulators are the write-only variables that are initialized once and sent to the workers. Then, these workers update based on the logic written, which will send back to the driver.

...