[GitHub] zeppelin issue #2809: [ZEPPELIN-3249] Add support for streaming table

2018-02-21 Thread Tagar
Github user Tagar commented on the issue:

https://github.com/apache/zeppelin/pull/2809
  
I think as a nice side effect, this PR also fixes 
https://issues.apache.org/jira/browse/ZEPPELIN-3238 - see comments there


---


[GitHub] zeppelin issue #2809: [ZEPPELIN-3249] Add support for streaming table

2018-02-21 Thread prabhjyotsingh
Github user prabhjyotsingh commented on the issue:

https://github.com/apache/zeppelin/pull/2809
  
@r-kamath can you help review this PR


---


[jira] [Created] (ZEPPELIN-3254) Enable one build of zeppelin to work with multiple versions of spark

2018-02-21 Thread Jeff Zhang (JIRA)
Jeff Zhang created ZEPPELIN-3254:


 Summary: Enable one build of zeppelin to work with multiple 
versions of spark
 Key: ZEPPELIN-3254
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-3254
 Project: Zeppelin
  Issue Type: Improvement
Reporter: Jeff Zhang






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


[GitHub] zeppelin issue #2802: ZEPPELIN-3236. Make grpc framesize configurable

2018-02-21 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/2802
  
@ejona86 The error from grpc is about `Frame size exceed`


---


[GitHub] zeppelin pull request #2804: [ZEPPELIN-3245] checkstyle/eslintrc for zeppeli...

2018-02-21 Thread prabhjyotsingh
GitHub user prabhjyotsingh reopened a pull request:

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

[ZEPPELIN-3245] checkstyle/eslintrc for zeppelin-web (JavaScript)

## What is this PR for?
Have added this PR to add a rule in eslinerc to have semicolons in 
javascript source

### What type of PR is it?
[Improvement | Refactoring]

### What is the Jira issue?
* [ZEPPELIN-3245](https://issues.apache.org/jira/browse/ZEPPELIN-3245)

### How should this be tested?

```
cd zeppelin-web
npm install (or yarn install if you have yarn)
npm run lint:once
```


You can merge this pull request into a Git repository by running:

$ git pull https://github.com/prabhjyotsingh/zeppelin 
discuss/eslint_semi_rule

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/zeppelin/pull/2804.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #2804


commit e7062d70529671a8def8dfc3eb144ff4ffe074fd
Author: Prabhjyot Singh 
Date:   2018-02-15T06:46:25Z

add `"semi": [2, "always"]` rule in eslinerc

Change-Id: If0356e494152c1beb8b8cef666c95d448a490749

commit 3a133f48bc7824858f02841a1ba81100977a50df
Author: Prabhjyot Singh 
Date:   2018-02-19T09:28:11Z

remove "standard" from eslint

Change-Id: If488e5a7faf68fea9c0f463de7aba1dae0607b0d

commit 9a43465535a87cb156cc9ab8007fbb17b910e7d2
Author: Prabhjyot Singh 
Date:   2018-02-19T09:31:06Z

remove `"linebreak-style": 0,` and `"no-use-before-define": 0,`

Change-Id: If9727c13bf40be52cbe40b5c7c888c99af739e9b

commit a5c9db67acdfe25de712dee09ace5765fdfc45ee
Author: Prabhjyot Singh 
Date:   2018-02-21T18:37:40Z

fix failing WEB_E2E="true"

Change-Id: I8af5179afcd63377a4bd76486f7e30e29a97a30b




---


[GitHub] zeppelin pull request #2804: [ZEPPELIN-3245] checkstyle/eslintrc for zeppeli...

2018-02-21 Thread prabhjyotsingh
Github user prabhjyotsingh closed the pull request at:

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


---


[jira] [Created] (ZEPPELIN-3253) `Tab` key indentation is broken in paragraph editor

2018-02-21 Thread Ruslan Dautkhanov (JIRA)
Ruslan Dautkhanov created ZEPPELIN-3253:
---

 Summary: `Tab` key indentation is broken in paragraph editor
 Key: ZEPPELIN-3253
 URL: https://issues.apache.org/jira/browse/ZEPPELIN-3253
 Project: Zeppelin
  Issue Type: Bug
  Components: front-end
Affects Versions: 0.7.3, 0.8.0, 0.9.0
Reporter: Ruslan Dautkhanov


`Tab` key used to indent Python code (like in most other IDEs).
It was working correctly in previous Zeppelin releases, including 0.7.3.

It's interesting `Shift-Tab` still de-indents code correctly.

So there is an inconsistency now between `Tab` and `Shift-Tab`.

Would be great to have this resolved.



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


FINAL REMINDER: CFP for Apache EU Roadshow Closes 25th February

2018-02-21 Thread Sharan F

Hello Apache Supporters and Enthusiasts

This is your FINAL reminder that the Call for Papers (CFP) for the 
Apache EU Roadshow is closing soon. Our Apache EU Roadshow will focus on 
Cloud, IoT, Apache Tomcat, Apache Http and will run from 13-14 June 2018 
in Berlin.
Note that the CFP deadline has been extended to *25*^*th* *February *and 
it will be your final opportunity to submit a talk for thisevent.


Please make your submissions at http://apachecon.com/euroadshow18/

Also note that early bird ticket registrations to attend FOSS Backstage 
including the Apache EU Roadshow, have also been extended and will be 
available until 23^rd February. Please register at 
https://foss-backstage.de/tickets


We look forward to seeing you in Berlin!

Thanks
Sharan Foga, VP Apache Community Development

PLEASE NOTE: You are receiving this message because you are subscribed 
to a user@ or dev@ list of one or more Apache Software Foundation projects.




[GitHub] zeppelin pull request #2799: Add a bunch of missing annotations to ActiveDir...

2018-02-21 Thread monsieurp
Github user monsieurp closed the pull request at:

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


---


[GitHub] zeppelin issue #2802: ZEPPELIN-3236. Make grpc framesize configurable

2018-02-21 Thread ejona86
Github user ejona86 commented on the issue:

https://github.com/apache/zeppelin/pull/2802
  
@Tagar, I mis-read the error earlier. That message is just "gRPC message 
too large." It'd probably be good to talk about "messages" instead of "frames" 
here.


---


[GitHub] zeppelin issue #2804: [ZEPPELIN-3245] checkstyle/eslintrc for zeppelin-web (...

2018-02-21 Thread prabhjyotsingh
Github user prabhjyotsingh commented on the issue:

https://github.com/apache/zeppelin/pull/2804
  
Thanks for the review will merge this if no more discussion.


---


[GitHub] zeppelin issue #2782: [ZEPPELIN-2729] Paragraph numbering

2018-02-21 Thread mebelousov
Github user mebelousov commented on the issue:

https://github.com/apache/zeppelin/pull/2782
  
I would prefer that the paragraph title is always added to the ToC as 
high-level section.


---


[GitHub] zeppelin issue #2804: [ZEPPELIN-3245] checkstyle/eslintrc for zeppelin-web (...

2018-02-21 Thread r-kamath
Github user r-kamath commented on the issue:

https://github.com/apache/zeppelin/pull/2804
  
@prabhjyotsingh please resolve conflicts. Otherwise LGTM.


---


[GitHub] zeppelin issue #2811: [ZEPPELIN-3252] Update the Apache Flink version to 1.4...

2018-02-21 Thread jan0sch
Github user jan0sch commented on the issue:

https://github.com/apache/zeppelin/pull/2811
  
It seems that flink 1.4 is build for scala 2.11 only.

There are two options:

1. switch zeppelin to scala 2.11
2. downgrade the "update" to flink version 1.3.2 which was the last one 
cross published for scala 2.10

I would prefer option 1 as scala is currently at 2.12 with 2.13 on the 
horizon.



---


[GitHub] zeppelin issue #2811: [ZEPPELIN-3252] Update the Apache Flink version to 1.4...

2018-02-21 Thread Leemoonsoo
Github user Leemoonsoo commented on the issue:

https://github.com/apache/zeppelin/pull/2811
  
[Multiple builds](https://travis-ci.org/wegtam/zeppelin/builds/344196467) 
fails with 

```
artifacts could not be resolved: 
org.apache.flink:flink-clients_2.10:jar:1.4.1, 
org.apache.flink:flink-runtime_2.10:jar:1.4.1, 
org.apache.flink:flink-scala_2.10:jar:1.4.1, 
org.apache.flink:flink-scala-shell_2.10:jar:1.4.1, 
com.typesafe.akka:akka-actor_2.10:jar:2.4.20, 
com.typesafe.akka:akka-remote_2.10:jar:2.4.20, 
com.typesafe.akka:akka-slf4j_2.10:jar:2.4.20, 
com.typesafe.akka:akka-testkit_2.10:jar:2.4.20: Could not find artifact 
org.apache.flink:flink-clients_2.10:jar:1.4.1 in central 
(http://repo.maven.apache.org/maven2) -> [Help 1]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e 
switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, 
please read the following articles:
[ERROR] [Help 1] 
http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
[ERROR] 
[ERROR] After correcting the problems, you can resume the build with the 
command
[ERROR]   mvn  -rf :zeppelin-flink_2.10
```

Can we check this error?


---


[GitHub] zeppelin issue #2735: [ZEPPELIN-3177]Resize charts on paragaph resize

2018-02-21 Thread Leemoonsoo
Github user Leemoonsoo commented on the issue:

https://github.com/apache/zeppelin/pull/2735
  
Tested and it works well.

LGTM and merge to master and branch-0.8.


---


[GitHub] zeppelin issue #2735: [ZEPPELIN-3177]Resize charts on paragaph resize

2018-02-21 Thread sravan-s
Github user sravan-s commented on the issue:

https://github.com/apache/zeppelin/pull/2735
  
Hey guys, anyone here :) ?


---


[GitHub] zeppelin issue #2747: Update to a current flink version.

2018-02-21 Thread jan0sch
Github user jan0sch commented on the issue:

https://github.com/apache/zeppelin/pull/2747
  
I'll adjust to the current flink version (1.4.1) before. ;-)


---


[GitHub] zeppelin issue #2747: Update to a current flink version.

2018-02-21 Thread zjffdu
Github user zjffdu commented on the issue:

https://github.com/apache/zeppelin/pull/2747
  
@jan0sch Could you retrigger the build ?


---