Reputation: 443
RDD can be updated? --- i.e. suppose we created a RDD from "a.txt" file. "a.txt" got updated. is possible to update RDD without reading entire file a.txt?
Upvotes: 1
Views: 408
Reputation: 1750
RDD are immutable by definition hence you want be able to change the RDD when the "a.txt" file changes.
Upvotes: 1