From a1b8d6e7a62962a4d3f14df91c35a9b1946b2752 Mon Sep 17 00:00:00 2001 From: Sean Owen Date: Thu, 3 Aug 2017 13:57:01 +0100 Subject: [PATCH] Remove https from list of supported URIs, until it's explicitly supported --- docs/submitting-applications.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/submitting-applications.md b/docs/submitting-applications.md index 866d6e527549..bc59b8063d3f 100644 --- a/docs/submitting-applications.md +++ b/docs/submitting-applications.md @@ -182,7 +182,7 @@ Spark uses the following URL scheme to allow different strategies for disseminat - **file:** - Absolute paths and `file:/` URIs are served by the driver's HTTP file server, and every executor pulls the file from the driver HTTP server. -- **hdfs:**, **http:**, **https:**, **ftp:** - these pull down files and JARs from the URI as expected +- **hdfs:**, **http:**, **ftp:** - these pull down files and JARs from the URI as expected - **local:** - a URI starting with local:/ is expected to exist as a local file on each worker node. This means that no network IO will be incurred, and works well for large files/JARs that are pushed to each worker, or shared via NFS, GlusterFS, etc.