What is default location when using "writeStream"?

Mado
Valued Contributor II

Hi,

Assume that I want to write a table by" writeStream". Where is the default location on DBFS where the table is saved?

Sample code:

spark.table("TEMP_SILVER").writeStream
 
        .option("checkpointLocation", "dbfs:/user/AAA@gmail.com")
 
        .trigger(availableNow=True)
 
        .table("silver")