Load spark bucketed table from disk previously written via saveAsTable

Solution 1:

You can use spark SQL to create that table in your catalog spark.sql("""CREATE TABLE IF NOT EXISTS tbl...""") following this you can tell spark to rediscover data by running spark.sql("MSCK REPAIR TABLE tbl")