In Spark <1.3.x, the system property of the driver can be set by --conf option, shared between setting spark properties and system properties:
spark-submit --conf xxx.xxx=vvvvv
In Spark 1.4.0 this feature is removed, the driver instead log the following warning:
Warning: Ignoring non-spark config property: xxx.xxx=vvvvv
How do set driver's system property in 1.4.0? Is there a reason it is removed without a deprecation warning?
Thanks a lot for your advices.