Is a table registered with registerTempTable (createOrReplaceTempView with spark 2.+) cached?
registerTempTable
createOrReplaceTempView
Using Zeppelin, I register
It is not. You should cache explicitly:
sqlContext.cacheTable("someTable")