I am using a Zeppelin notebook to create a Spark script in Scala.
Code:
def test: DataFrame= {
//code
}
I am getting the following warning:
warning: there was one deprecation warning; re-run with -deprecation for details.
Any suggestions of how to run the function with "-deprecation"?
PS. I'm not asking about the warning which will require the complete code of the function. I'm looking for suggestions on how to rerun the function with the depreciation parameter in a zeppelin notebook. Existing solutions for this question covers only running in SBT.