[GitHub] zeppelin issue #2891: ZEPPELIN-1070: Inject Credentials in any Interpreter-C...

2018-03-26 Thread pellmont
Github user pellmont commented on the issue: https://github.com/apache/zeppelin/pull/2891 nice if I can contribute :-) I think the current API for the credentials makes sense, of course it would be nice if the credentials could be shared across users without exposing

[GitHub] zeppelin pull request #2891: ZEPPELIN-1070: Inject Credentials in any Interp...

2018-03-23 Thread pellmont
GitHub user pellmont opened a pull request: https://github.com/apache/zeppelin/pull/2891 ZEPPELIN-1070: Inject Credentials in any Interpreter-Code ### What is this PR for? This PR enables a generic syntax for inserting credentials. A username can be inserted by $[user.entry

Usage of Credentials API / ZEPPELIN-1070

2018-02-04 Thread Pascal Pellmont
of the password. This hack is not aiming to be a security feature (assuming that the person running the notebook knows his password anyway), but helpful to not expose the password due to REPL-Response. You can find my implementation here: https://github.com/pellmont/zeppelin/tree/ZEPPELIN-1070

[GitHub] zeppelin issue #2624: [ZEPPELIN-2965] Add code completion for livy interpret...

2017-10-31 Thread pellmont
Github user pellmont commented on the issue: https://github.com/apache/zeppelin/pull/2624 Of course I did :-) But: - Code-Completion is by ctrl-. (as before ZEPPELIN-277). If it should be tab it has to be configured probably in livy/interpreter-settings.json - You need

[GitHub] zeppelin pull request #2624: [ZEPPELIN-2965] Add code completion for livy in...

2017-10-30 Thread pellmont
Github user pellmont closed the pull request at: https://github.com/apache/zeppelin/pull/2624 ---

[GitHub] zeppelin pull request #2624: [ZEPPELIN-2965] Add code completion for livy in...

2017-10-30 Thread pellmont
GitHub user pellmont reopened a pull request: https://github.com/apache/zeppelin/pull/2624 [ZEPPELIN-2965] Add code completion for livy interpreter ### What is this PR for? This PR adds code autocompletion feature to LivyInterpreter. Livy version 0.5 will have an auto

[GitHub] zeppelin issue #2624: [ZEPPELIN-2965] Add code completion for livy interpret...

2017-10-15 Thread pellmont
Github user pellmont commented on the issue: https://github.com/apache/zeppelin/pull/2624 welcome @zjffdu. Actually I am not a big fan of integration tests, because they are usually slow and brittle. In my opinion integration tests should be used sparely, the main functionality

[GitHub] zeppelin pull request #2624: [ZEPPELIN-2965] Add code completion for livy in...

2017-10-15 Thread pellmont
GitHub user pellmont opened a pull request: https://github.com/apache/zeppelin/pull/2624 [ZEPPELIN-2965] Add code completion for livy interpreter ### What is this PR for? This PR adds code autocompletion feature to LivyInterpreter. Livy version 0.5 will have an auto

[jira] [Created] (ZEPPELIN-2965) Add code completion for livy interpreter

2017-10-01 Thread Pascal Pellmont (JIRA)
Pascal Pellmont created ZEPPELIN-2965: - Summary: Add code completion for livy interpreter Key: ZEPPELIN-2965 URL: https://issues.apache.org/jira/browse/ZEPPELIN-2965 Project: Zeppelin

[GitHub] zeppelin issue #2563: ZEPPELIN-204 make scala code completion work again

2017-09-08 Thread pellmont
Github user pellmont commented on the issue: https://github.com/apache/zeppelin/pull/2563 do I have to do something else before it can be merged? or just wait? ---

[GitHub] zeppelin issue #2563: ZEPPELIN-204 make scala code completion work again

2017-09-07 Thread pellmont
Github user pellmont commented on the issue: https://github.com/apache/zeppelin/pull/2563 finally a green build :-) ---

[GitHub] zeppelin issue #2563: ZEPPELIN-204 make scala code completion work again

2017-09-07 Thread pellmont
Github user pellmont commented on the issue: https://github.com/apache/zeppelin/pull/2563 Hey guys I finally found why some integration tests fail! In scala 2.11.8 the REPL had been improved a lot. So the tests work well with either scala 2.10 (with SparkJLineCompletion

[GitHub] zeppelin pull request #2563: ZEPPELIN-204 make scala code completion work ag...

2017-09-03 Thread pellmont
GitHub user pellmont opened a pull request: https://github.com/apache/zeppelin/pull/2563 ZEPPELIN-204 make scala code completion work again ### What is this PR for? Spark Scala interpreter didn't show any useful completion proposals (besides some keywords) ### What