Does Modifying a DataFrame Affect the View in PySpark?
No, modifying the original DataFrame after creating a view does not affect the view because views in PySpark are not directly linked to the DataFrame. Instead, the view stores the state of the DataFrame at the moment the view is created.
Create View ...
blog.naveenpn.com2 min read