I'm learning Spark and found that I can create temp view in Spark by calling one of following pySpark API:
df.createGlobalTempView("people") df.createTempView("people") df.createOrReplaceTempView'("people") Can I create a permanent view to that it became available for every user of my spark cluster? Think this will save people's time if views are already defined for them.