Details
-
Bug
-
Status: Resolved
-
Trivial
-
Resolution: Not A Problem
-
1.5.2
-
None
Description
When accessing spark rest api with application id to get job specific id status, a job with name containing whitespaces are being encoded to '%20' and therefore the rest api returns `no such app`.
For example:
http://spark.mysite.com:20888/proxy/application_1447676402999_1254/api/v1/applications/ returns:
[ {
"id" : "Spark shell",
"name" : "Spark shell",
"attempts" : [
]
} ]
and then when accessing:
http://spark.mysite.com:20888/proxy/application_1447676402999_1254/api/v1/applications/Spark shell/
the result returned is:
unknown app: Spark%20shell