[jira] [Created] (ZEPPELIN-3410) Flaky test in IPythonInterpreterTest

2018-04-16 Thread Jeff Zhang (JIRA)
Jeff Zhang created ZEPPELIN-3410:


 Summary: Flaky test in IPythonInterpreterTest
 Key: ZEPPELIN-3410
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-3410
 Project: Zeppelin
  Issue Type: Bug
Reporter: Jeff Zhang






--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] zeppelin pull request #2926: ZEPPELIN-3391. Incorrect status shown for '%liv...

2018-04-16 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/zeppelin/pull/2926


---


[GitHub] zeppelin issue #2925: ZEPPELIN-3404. Fail to run cronjob when user doesn't r...

2018-04-16 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/2925
  
Update the PR to run the cron job as the note owner 


---


[GitHub] zeppelin issue #2615: [ZEPPELIN-1999][IMPROVEMENT] refactoring replacement c...

2018-04-16 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/2615
  
@tinkoff-dwh Does the replaceContext parameter happen for each interpret 
call ?


---


[GitHub] zeppelin issue #2925: ZEPPELIN-3404. Fail to run cronjob when user doesn't r...

2018-04-16 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/2925
  
Thanks @weand , even I didn't realize the user in note.json means the last 
user run the paragraph (I thought it is the owner). In that case, it seems 
meaningless to store user in note.json IMHO.  
Regarding the issue, I will update it soon


---


[GitHub] zeppelin issue #2925: ZEPPELIN-3404. Fail to run cronjob when user doesn't r...

2018-04-16 Thread weand
Github user weand commented on the issue:

https://github.com/apache/zeppelin/pull/2925
  
so running via cron will use the last user that executed a paragraph. that 
does not fit exactly to the docu change from original PR:
> Cron executing user (It is removed from 0.8 where it **enforces the cron 
execution user to be the note owner** for security purpose)

[https://github.com/apache/zeppelin/pull/2914/files#diff-bed1be4fb1f7f6c8e3bd6db18d72dc44](https://github.com/apache/zeppelin/pull/2914/files#diff-bed1be4fb1f7f6c8e3bd6db18d72dc44)


---


[GitHub] zeppelin issue #2903: [ZEPPELIN-3377] Passing Z variables to JDBC interprete...

2018-04-16 Thread sanjaydasgupta
Github user sanjaydasgupta commented on the issue:

https://github.com/apache/zeppelin/pull/2903
  
ping @felixcheung 


---


[jira] [Created] (ZEPPELIN-3409) Tables don't render properly in markdown

2018-04-16 Thread Ryan Boder (JIRA)
Ryan Boder created ZEPPELIN-3409:


 Summary: Tables don't render properly in markdown
 Key: ZEPPELIN-3409
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-3409
 Project: Zeppelin
  Issue Type: Bug
Affects Versions: 0.7.3
Reporter: Ryan Boder
 Attachments: Screen Shot 2018-04-11 at 3.10.34 PM.png

In a markdown paragraph I [should be able to 
do|https://zeppelin.apache.org/docs/0.7.3/interpreter/markdown.html#pegdown-parser]

{noformat}
| Tables| Are   | Cool  |
| - |:-:| -:|
| col 3 is  | right-aligned |  1600 |
| col 2 is  | centered  |12 |
| zebra stripes | are neat  | 1 |
{noformat}

and see a nicely formatted table. Instead I see this.

 !Screen Shot 2018-04-11 at 3.10.34 PM.png! 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] zeppelin pull request #2684: [Zeppelin-2572] multiple paragraphs actions

2018-04-16 Thread tinkoff-dwh
Github user tinkoff-dwh closed the pull request at:

https://github.com/apache/zeppelin/pull/2684


---


[GitHub] zeppelin issue #2684: [Zeppelin-2572] multiple paragraphs actions

2018-04-16 Thread tinkoff-dwh
Github user tinkoff-dwh commented on the issue:

https://github.com/apache/zeppelin/pull/2684
  
Will reopen soon.


---


[GitHub] zeppelin pull request #2449: [Zeppelin-2676] recent notes list

2018-04-16 Thread tinkoff-dwh
Github user tinkoff-dwh closed the pull request at:

https://github.com/apache/zeppelin/pull/2449


---


[GitHub] zeppelin issue #2449: [Zeppelin-2676] recent notes list

2018-04-16 Thread tinkoff-dwh
Github user tinkoff-dwh commented on the issue:

https://github.com/apache/zeppelin/pull/2449
  
Need rework.


---


[jira] [Created] (ZEPPELIN-3408) Math expressions require additional undocumented escaping

2018-04-16 Thread Ryan T Boder (JIRA)
Ryan T Boder created ZEPPELIN-3408:
--

 Summary: Math expressions require additional undocumented escaping
 Key: ZEPPELIN-3408
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-3408
 Project: Zeppelin
  Issue Type: Bug
Affects Versions: 0.7.3
Reporter: Ryan T Boder
 Attachments: Screen Shot 2018-04-11 at 3.23.57 PM.png

In a markdown paragraph I should be able to do this [according to the 
docs|https://zeppelin.apache.org/docs/0.7.3/displaysystem/basicdisplaysystem.html#mathematical-expressions]

{noformat}
\\( a^2 + b^2 = c^2 \\)
$$ n = \left( \frac{z\mbox{-}multiple}{B} \right)^2 p_{est}(1-p_{est}) $$
{noformat}

Instead I see the attached screenshot.

We found that it works if we do additional escaping such as

{noformat}
\\(a\^2 + b\^2 = c\^2\\)
$$ n = \left( \frac{z\mbox{-}multiple}{B} \right)^2 p\_{est}(1-p\_{est}) $$
{noformat}

but this doesn't match the Zeppelin documentation and it doesn't seem like the 
intended behavior.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] zeppelin issue #2841: [Zeppelin-3224] - Fix "ultimate" visualization

2018-04-16 Thread Savalek
Github user Savalek commented on the issue:

https://github.com/apache/zeppelin/pull/2841
  
Will merge?


---


[GitHub] zeppelin issue #2925: ZEPPELIN-3404. Fail to run cronjob when user doesn't r...

2018-04-16 Thread r-kamath
Github user r-kamath commented on the issue:

https://github.com/apache/zeppelin/pull/2925
  
LGTM


---


[jira] [Created] (ZEPPELIN-3407) Add system test for impersonation mode

2018-04-16 Thread Jeff Zhang (JIRA)
Jeff Zhang created ZEPPELIN-3407:


 Summary: Add system test for impersonation mode
 Key: ZEPPELIN-3407
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-3407
 Project: Zeppelin
  Issue Type: Bug
Reporter: Jeff Zhang






--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[GitHub] zeppelin pull request #2916: ZEPPELIN-3395 Fix impersonate spark interpreter...

2018-04-16 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/zeppelin/pull/2916


---


[GitHub] zeppelin issue #2916: ZEPPELIN-3395 Fix impersonate spark interpreter withou...

2018-04-16 Thread iijima-satoshi
Github user iijima-satoshi commented on the issue:

https://github.com/apache/zeppelin/pull/2916
  
@felixcheung Fixed PR title. Thanks.


---


[GitHub] zeppelin pull request #2920: [ZEPPELIN-2679] JDBC. precode for session

2018-04-16 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/zeppelin/pull/2920


---


[GitHub] zeppelin issue #2907: ZEPPELIN-3347 Fix "PYTHONPATH" for spark.pyspark in br...

2018-04-16 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/2907
  
LGTM


---


[GitHub] zeppelin pull request #2919: ZEPPELIN-3375: Make PySparkInterpreter extends ...

2018-04-16 Thread asfgit
Github user asfgit closed the pull request at:

https://github.com/apache/zeppelin/pull/2919


---


[GitHub] zeppelin issue #2916: ZEPPELIN-3395 Fix: Spark interpreter does not run as i...

2018-04-16 Thread felixcheung
Github user felixcheung commented on the issue:

https://github.com/apache/zeppelin/pull/2916
  
sure, I'd defer to @zjffdu 
could you fix up the truncated PR title btw


---