[
https://issues.apache.org/jira/browse/LIVY-469?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Gyorgy Gal updated LIVY-469:
----------------------------
Fix Version/s: 0.10.0
(was: 0.9.0)
This issue has been moved to the 0.10.0 release as part of a bulk update. If
you feel this is moved out inappropriately, feel free to provide justification
and reset the Fix Version to 0.9.0.
> "shared" session kind is undocumented
> -------------------------------------
>
> Key: LIVY-469
> URL: https://issues.apache.org/jira/browse/LIVY-469
> Project: Livy
> Issue Type: Bug
> Components: Docs
> Affects Versions: 0.5.0
> Reporter: Tim Harsch
> Priority: Major
> Fix For: 0.10.0
>
>
> From the docs:
> {quote}Starting with version 0.5.0-incubating, each session can support all
> four Scala, Python and R interpreters with newly added SQL interpreter. The
> {{kind}}field in session creation is no longer required, instead users should
> specify code kind (spark, pyspark, sparkr or sql) during statement submission.
> To be compatible with previous versions, users can still specify {{kind}} in
> session creation, while ignoring {{kind}} in statement submission. Livy will
> then use this session {{kind}} as default kind for all the submitted
> statements.{quote}
>
> 1. I've found a 5th value for Session kind (only 4 are documented:
> https://livy.incubator.apache.org/docs/latest/rest-api.html#session-kind )
> 2. In 'shared' case, "users *cannot* still specify {{kind}} in session
> creation, while ignoring {{kind}}" due to the error that is received
> demonstrated below.
> {code}
> harsch@mint64 ~ $ curl -s -X POST --data '{}' -H "Content-Type:
> application/json" localhost:8998/sessions | python -m json.tool
> {
> "appId": null,
> "appInfo": {
> "driverLogUrl": null,
> "sparkUiUrl": null
> },
> "id": 0,
> "kind": "shared",
> "log": [
> "stdout: ",
> "\nstderr: "
> ],
> "owner": null,
> "proxyUser": null,
> "state": "starting"
> }
> {code}
> Executing this:
> {code}
> curl -s -X POST --data '{"code":"1 + 1"}' -H "Content-Type:
> application/json" localhost:8998/sessions/0/statements| python -m json.tool
> {code}
> will produce this in the logs:
> {noformat}
> Caused by: org.apache.livy.rsc.rpc.RpcException:
> java.lang.IllegalArgumentException: Code type should be specified if session
> kind is shared
> {noformat}
> I do not know how a 'shared' session kind is different from "spark" session
> kind, or I would suggest some further documentation that would distinguish
> them. Perhaps one of the dev team could come up with some useful
> documentation in this regard.
--
This message was sent by Atlassian Jira
(v8.20.10#820010)