Submit an application property file with Spark typesafe config
问题 Please, I need your help, I'm trying to submit an external configuration file for my spark application using typesafe config. I'm loading the application.conf file in my application code like this: lazy val conf = ConfigFactory.load() File content ingestion{ process { value = "sas" } sas { origin{ value = "/route" } destination{ value = "/route" } extension{ value = ".sas7bdat" } file{ value = "mytable" } month{ value = "201010,201011" } table{ value = "tbl" } } } My spark submit is spark2