Skip to content

Conversation

@corneadoug
Copy link

There is no need to use DOM, data binding in Angular is taking care of it

HeartSaVioR and others added 30 commits December 25, 2015 01:00
### What is this PR for?

To add 'progress' to 'get notebook job' REST API.
All paragraphs which status is 'running' will include 'progress' to their job status.

### What type of PR is it?

Improvement

### Todos

### Is there a relevant Jira issue?

https://issues.apache.org/jira/browse/ZEPPELIN-528

### How should this be tested?

1. Run a notebook or paragraph which takes some times. Paragraph which could show progress (%) would be more appreciated. Confirm that its status is 'RUNNING'.
2. Call ```http://<zeppelin host>:<zeppelin port>/api/notebook/job/<notebook id>``` to see if it has 'progress' field in JSON.

### Screenshots (if appropriate)

![notebook-2b68v95jm](https://cloud.githubusercontent.com/assets/1317309/11949192/cf176d8e-a8bf-11e5-9bb2-8f4dbd1666c8.png)
![notebook-job-api-result-2b68v95jm](https://cloud.githubusercontent.com/assets/1317309/11949191/cf16f7e6-a8bf-11e5-825b-97c6fa227d05.png)

### Questions:
* Does the licenses files need update? (No)
* Is there breaking changes for older versions? (No)
* Does this needs documentation? (Yes or no. Output of the JSON format could be updated, but it could be treated as not mandatory.)

Author: Jungtaek Lim <kabhwan@gmail.com>

Closes apache#563 from HeartSaVioR/ZEPPELIN-528 and squashes the following commits:

dc86b01 [Jungtaek Lim] ZEPPELIN-528 Add UT to get notebook job (especially 'progress' field)
69a58ab [Jungtaek Lim] Merge branch 'master' into ZEPPELIN-528
31a8e88 [Jungtaek Lim] ZEPPELIN-528 Explain new field 'progress' to JSON output
2597ebf [Jungtaek Lim] ZEPPELIN-528 Add 'progress' to paragraph information when running
### What is this PR for?
Paragraph height is changing depends on progress bar.
This PR make paragraph height unchanged whether progress bar is shown or not.

### What type of PR is it?
Bug Fix

### How should this be tested?
Run paragraph and see progress bar change it's height.

### Screenshots (if appropriate)

before
![paragraph_height_master](https://cloud.githubusercontent.com/assets/1540981/11990227/df7c7e1e-aa4d-11e5-8026-6d9eccac6500.gif)

after
![paragraph_height](https://cloud.githubusercontent.com/assets/1540981/11990228/e1960ad0-aa4d-11e5-89bb-52cb56686267.gif)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Lee moon soo <moon@apache.org>

Closes apache#568 from Leemoonsoo/fixed_height and squashes the following commits:

76a7bf1 [Lee moon soo] Let progress bar does not change paragraph height
### What is this PR for?
Fix z-index for control button tooltip

### What type of PR is it?
Bug Fix

### Is there a relevant Jira issue?
No

### Screenshots (if appropriate)
**Default mode**
Before
<img width="1139" alt="screen shot 2015-12-24 at 1 53 50 pm" src="https://cloud.githubusercontent.com/assets/8503346/11998137/d93b2f44-aa45-11e5-84ca-21860774cc7d.png">

After
<img width="1139" alt="screen shot 2015-12-24 at 1 53 36 pm" src="https://cloud.githubusercontent.com/assets/8503346/11998135/cf42b85e-aa45-11e5-94b2-4ec577971957.png">

**Simple mode**
Before
<img width="1139" alt="screen shot 2015-12-24 at 1 55 25 pm" src="https://cloud.githubusercontent.com/assets/8503346/11998143/20e3ec50-aa46-11e5-98f7-dcc6d14a8acc.png">

After
<img width="1139" alt="screen shot 2015-12-24 at 1 55 17 pm" src="https://cloud.githubusercontent.com/assets/8503346/11998145/277b3cda-aa46-11e5-8d44-89d25d09b373.png">

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: Mina Lee <minalee@nflabs.com>

Closes apache#570 from minahlee/fix/tooltip_zindex and squashes the following commits:

0157953 [Mina Lee] Fix z-index of control button tooltip
### What is this PR for?
Remove author tag from java doc since Zeppelin doesn't encourage to use it

### What type of PR is it?
Documentation

### Is there a relevant Jira issue?
N

### Questions:
* Does the licenses files need update? N
* Is there breaking changes for older versions? N
* Does this needs documentation? N

Author: Mina Lee <minalee@nflabs.com>

Closes apache#571 from minahlee/remove/author_tag and squashes the following commits:

db1a01f [Mina Lee] Remove author tag
…r paragraph

### What is this PR for?

This issue is intended to fill gap between REST API and WebSocket operations.
For now we can only access notebook and paragraph to READONLY (not writing) via REST API but after this PR, we can insert / retrieve / move / delete paragraph via REST API.

### What type of PR is it?

Feature

### Todos

### Is there a relevant Jira issue?

https://issues.apache.org/jira/browse/ZEPPELIN-511

### How should this be tested?

Please follow the explanation of added REST APIs from rest-notebook.md.

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? (No)
* Is there breaking changes for older versions? (No)
* Does this needs documentation? (Yes, I've addressed it.)

Author: Jungtaek Lim <kabhwan@gmail.com>

Closes apache#550 from HeartSaVioR/ZEPPELIN-511 and squashes the following commits:

59f5f61 [Jungtaek Lim] ZEPPELIN-511 Address @prabhjyotsingh reviews
01feed4 [Jungtaek Lim] ZEPPELIN-511 explain new APIs to read-notebook.md
cc71e06 [Jungtaek Lim] ZEPPELIN-511 "insert paragraph" api: return created paragraph id
3658b00 [Jungtaek Lim] ZEPPELIN-511 REST API: Insert / Retrieve / Move / Delete operation for paragraph
### What is this PR for?
This PR implements keyboard shortcuts for paragraph control.

### What type of PR is it?
Feature

### Is there a relevant Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-391

### How should this be tested?
Try implemented shortcuts

Ctrl + Alt + c  : Cancel run
Ctrl + Alt + d : Remove paragraph
Ctrl + Alt + k : Move paragraph Up
Ctrl + Alt + j : Move paragraph Down
Ctrl + Alt + b : Insert new paragraph below
Ctrl + Alt + o : Toggle output
Ctrl + Alt + e : Toggle editor
Ctrl + Alt + m : Toggle line numbers
Ctrl + Alt + t : Toggle title
Ctrl + Alt + 1~0,-,+ : Paragraph width from 1~12

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Lee moon soo <moon@apache.org>

Closes apache#569 from Leemoonsoo/keyboard_shortcut and squashes the following commits:

1ffdb97 [Lee moon soo] Change ctrl-alt-n to ctrl-alt-m to reserve ctrl-alt-p,n
20ffcf3 [Lee moon soo] Ctrl+c -> Ctrl+Alt+c
8f610c5 [Lee moon soo] fix accident change
6aa88d7 [Lee moon soo] Prevent keyboard shortcut on report mode
8b2d23b [Lee moon soo] Add more shortcuts
050fde7 [Lee moon soo] Keep focus after paragraph move
e0adb09 [Lee moon soo] Fix style
42516dc [Lee moon soo] Move focus correctly
07792d0 [Lee moon soo] Make focus and shortcut work when editor is hidden
9d998d2 [Lee moon soo] Double quote -> single quote
bf8a0b0 [Lee moon soo] Add keyboard shortcuts
42654c4 [Lee moon soo] Focus paragraph on click
…preter.close() doesn't succeed

### What is this PR for?
Fix the exception "Scheduler already terminated" when remove interpreter close() fails

### What type of PR is it?
Bug Fix

### Is there a relevant Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-535

### How should this be tested?
Modify any interpreter to throw exception on close() call.
And try to use it after restart the interpreter.

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: Lee moon soo <moon@apache.org>

Closes apache#574 from Leemoonsoo/ZEPPELIN-535 and squashes the following commits:

66d7c09 [Lee moon soo] Remove unnecessary check in test
9b7e8d5 [Lee moon soo] Remove interpreterGroupReference
![dragresizeparagraph](https://cloud.githubusercontent.com/assets/674497/11597942/ef7b2284-9ae4-11e5-85b3-42853707cfb8.gif)

Author: Prabhjyot Singh <prabhjyotsingh@gmail.com>

Closes apache#516 from prabhjyotsingh/dragResizeParagraph and squashes the following commits:

bdc3f30 [Prabhjyot Singh] Addressing @Leemoonsoo review comments
5f534ed [Prabhjyot Singh] Feedback from @corneadoug and merge with master
### What is this PR for?
Release resource after cron schedule job.

### What type of PR is it?
Improvement

### Todos
* [x] - add check-box for release resource to the zeppelin-web.
* [x] - add release resource(interpreter restart) function to notebook.

### Is there a relevant Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-524.

### How should this be tested?
please refer to the screenshots.

### Screenshots (if appropriate)
![release_resource](https://cloud.githubusercontent.com/assets/3348133/11922205/9ef86684-a749-11e5-9f88-13a40b7a0b02.png)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: astroshim <hsshim@nflabs.com>

Closes apache#557 from astroshim/ZEPPELIN-524 and squashes the following commits:

c27b9db [astroshim] remove unused class
8b0178e [astroshim] change sentence and add testcase
ef510c7 [astroshim] release resource after cron job.
### What is this PR for?
Scalding (https://github.com/twitter/scalding) is a Scala library for writing MapReduce jobs.
This issue tracks the addition of a Scalding interpreter for Zeppelin. To keep this work incremental, this PR will focus on just a local mode implementation. The Hadoop mode can be a subsequent addition.

### What type of PR is it?
Feature

### Todos
* Addition of Hadoop mode for Scalding

### Is there a relevant Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-526

### How should this be tested?
Run the tests in: scalding/src/test/java/org/apache/zeppelin/scalding/ScaldingInterpreterTest.java

### Screenshots
<img width="1167" alt="scalding-example" src="https://cloud.githubusercontent.com/assets/1509691/11944979/8788d5c2-a7ff-11e5-9863-2a1216c51896.png">
<img width="1151" alt="scalding-screenshot" src="https://cloud.githubusercontent.com/assets/1509691/11944978/8787e3ec-a7ff-11e5-8383-456adb16b977.png">

### Questions:
* This could use documentation, which could just be the example in the screenshot. Where can I contribute that?

Author: Sriram Krishnan <skrishnan@twitter.com>

Closes apache#561 from sriramkrishnan/scalding and squashes the following commits:

ffa698b [Sriram Krishnan] Whitespace cleanup
1ad405b [Sriram Krishnan] Adding newline to remove redundant change in PR
8eec3c2 [Sriram Krishnan] Updating docs to include the -Pscalding profile for Scalding
006500d [Sriram Krishnan] Reverting all commits to LICENSE to be back to master
bc31d1e [Sriram Krishnan] Getting rid of added licenses
b30725f [Sriram Krishnan] Making the Scalding interpreter optional as part of a new -Pscalding profile
9a7d733 [Sriram Krishnan] Moved tukanni license to a separate section and added license
dd0bb9a [Sriram Krishnan] Changing licenses to text format
aaae5d1 [Sriram Krishnan] Moving licenses to the right location
8be8d22 [Sriram Krishnan] Went thru and added all licenses I could find
6019cc8 [Sriram Krishnan] More licenses. Only remaining ones are the dependencies of hadoop-common.
460658a [Sriram Krishnan] Adding Cascading dependencies
dd8a4c8 [Sriram Krishnan] Adding Scalding licenses
083f059 [Sriram Krishnan] Trimming deps down from hadoop-client to just hadoop-common. Scalding REPL needs org.apache.hadoop.conf.Configuration even in local mode.
5c8056c [Sriram Krishnan] Making the Scalding scala jars same as the Spark ones for consistency
d4cf308 [Sriram Krishnan] Adding docs for the Scalding interpreter
8004b39 [Sriram Krishnan] Fixing a typo
91b0692 [Sriram Krishnan] adding ScaldingInterpreter
5fd1ae4 [Sriram Krishnan] Address comments on PR. Merge remote-tracking branch 'upstream/master' into scalding
7a9ceeb [Sriram Krishnan] Adding some tests for the Scalding interpreter
7ec2941 [Sriram Krishnan] More code cleanup
368dc04 [Sriram Krishnan] Cleaning up imports, comments, etc
c27ec48 [Sriram Krishnan] Formatting, license
8944b0c [Sriram Krishnan] Merge remote-tracking branch 'upstream/master' into scalding
36a2dac [Sriram Krishnan] Added a link to the scalding code where the ILoop was lifted from.
d3916b7 [Sriram Krishnan] Adding modified version of ScaldingILoop for grabbing Console output - will want to move this to Scalding itself
1ffbb3b [Sriram Krishnan] Fixing output of stdout from console
b19fda4 [Sriram Krishnan] More cleanup - flushing output stream. Still can't seem to get the Scala console output. Need to figure that out.
e13576f [Sriram Krishnan] Now seem to be getting the console out, but only for last line. Will need some debugging.
35fc032 [Sriram Krishnan] Initial version of a ScaldingInterpreter running in local mode. Need to get console output next. And add tests, and make it work for HDFS.
721dcb7 [Sriram Krishnan] Getting a basic interpreter going. Next step is to hook in the Scalding REPL.
### What is this PR for?
Cannot select error/output of the paragraph.
Whenever there is a click on output the focus is set to editor.

### What type of PR is it?
[Bug Fix]

### Todos
* [x] - keep scope for mouse drag, doulble/multiple clicks

### Is there a relevant Jira issue?
[ZEPPELIN-547](https://issues.apache.org/jira/browse/ZEPPELIN-547)

### How should this be tested?
 - Try single click on output, focus should be set to editor.
 - but if there is a mouse drag or double/triple click on output, it should select output.

### Screenshots (if appropriate)
Single click, double click, triple click
![click test](https://cloud.githubusercontent.com/assets/674497/12062140/fc61473e-afbc-11e5-9f1f-dce76540c006.gif)

Author: Prabhjyot Singh <prabhjyotsingh@gmail.com>
Author: Prabhjyot <prabhjyotsingh@gmail.com>
Author: Lee moon soo <moon@apache.org>

Closes apache#585 from prabhjyotsingh/ZEPPELIN-547 and squashes the following commits:

ba6cc38 [Prabhjyot Singh] reverting notebook.controller.js changes
9ae6155 [Prabhjyot] Merge pull request #1 from Leemoonsoo/ZEPPELIN-547
daf4ed7 [Lee moon soo] Another way of handling ZEPPELIN-547
9a03cd8 [Prabhjyot Singh] keep scope for mouse drag, doulble/multiple clicks
### What is this PR for?
This PR adds shadow to navbar if noteActionBar is not present

### What type of PR is it?
Improvement

### Todos
N/A

### Is there a relevant Jira issue?
N/A

### Screenshots (if appropriate)

Before:
<img width="1440" alt="screen shot 2015-12-22 at 1 05 54 pm" src="https://cloud.githubusercontent.com/assets/674497/11950315/4b033d14-a8ad-11e5-93c1-9be5a72c4718.png">

After:
<img width="1440" alt="screen shot 2015-12-22 at 1 06 17 pm" src="https://cloud.githubusercontent.com/assets/674497/11950314/4b02dcac-a8ad-11e5-869f-7a752f48f050.png">

Author: Prabhjyot Singh <prabhjyotsingh@gmail.com>

Closes apache#564 from prabhjyotsingh/navbarShadow and squashes the following commits:

ffb64ec [Prabhjyot Singh] adding shadow to navbar if noteActionBar is not present
### What is this PR for?
Improve behavior of reloading notebooks from storage

### What type of PR is it?
Improvement

### Is there a relevant Jira issue?
[ZEPPELIN-537](https://issues.apache.org/jira/browse/ZEPPELIN-537?jql=project%20%3D%20ZEPPELIN)

### How should this be tested?
1. Add new `notebookId/note.json` under `ZEPPELIN_HOME/notebook`
2. Click reload button next to 'Notebook'
3. Check if the new added note is loaded

### Screenshots (if appropriate)
![reload fig](https://cloud.githubusercontent.com/assets/8503346/12011889/283c8e9c-ac96-11e5-81f6-4cdb305020d3.gif)

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: Mina Lee <minalee@nflabs.com>

Closes apache#573 from minahlee/ZEPPELIN-537 and squashes the following commits:

64e1a28 [Mina Lee] Rework sync with secondary storage when reload notebooks  - Address @khalidhuseynov comment
5423e3c [Mina Lee] Revert "Sync with secondary storage when reload notebooks"
1f83f15 [Mina Lee] Modify test
b03cde2 [Mina Lee] Sync with secondary storage when reload notebooks
b26dabf [Mina Lee] Remove ZEPPELIN_NOTEBOOK_RELOAD_FROM_STORAGE env variable
3fc9ad0 [Mina Lee] Revert "ZEPPELIN-367 Sync with secondary storage when listing notebooks"
6a80304 [Mina Lee] Reload notebooks from repository with reload button click event
### What is this PR for?
To fix REST API testcase.

### What type of PR is it?
Bug Fix

### Is there a relevant Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-536

### How should this be tested?
Run testcase.

### Questions:
* Does the licenses files need update? n
* Is there breaking changes for older versions? n
* Does this needs documentation? n

Author: astroshim <hsshim@nflabs.com>

Closes apache#572 from astroshim/fix-restapi-testcase and squashes the following commits:

27787a8 [astroshim] to pass build.
62e673b [astroshim] to rebuild
a702136 [astroshim] to fix build error.
a90b5c5 [astroshim] remove unused package
03f722a [astroshim] fix restapi testcase.
### What is this PR for?
For Table, reimplemented, scrolling, deleting a bug in the Table Header, Scrolling area expressed bugs have been fixed.

### What type of PR is it?
Bug Fix

### Todos
- [x] \(Re-modification\) always top fixed column title for table
- [x] table scrolling bug fixed. out of area scroll
       apache#556
- [x] After the re-run, remove the scroll bar
- [x] License Infomation
  - [x] record the license information of jquery.floatThead.
- [x] Browser Test
  - [x] Safari (9.0.2(11601.3.9)
  - [x] Firefox (43.0)
  - [x] Chrome (47.0.2526.106 (64-bit)

### Is there a relevant Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-523
### How should this be tested?
Step 1. create table on zeppelin
           example query)
``` python
%pyspark
TABLE = "%table Header1\tHeader2\n"
for x in range(1,51):
    #TABLE +=  "scroll";
    TABLE +=  str(x);
    if (x%2) == 0:
        TABLE += "\n"
    else:
        TABLE += "\t"
z.put("table_context", TABLE)

```
``` scala
println(z.get("table_context"))
```

Step 2.
Scroll the mouse over the Table.

Step 3.
re Run Paragraph.

Step 4.
Scroll the mouse over the Table.

### Screenshots (if appropriate)

#### Before
![before](https://cloud.githubusercontent.com/assets/10525473/11911933/4cf27744-a5dc-11e5-8f45-e1e15e532de9.gif)

#### After
![bug_fix_table_sc](https://cloud.githubusercontent.com/assets/10525473/11952384/a05a8238-a84c-11e5-9706-3412f96a81ea.gif)

### Questions:
You are using an external source?
\- I used jquery.floatThead (MIT) Libraries.
  It helps to secure the Table Header.
Why did this problem occur?
\- ref. https://github.com/noraesae/perfect-scrollbar#how-to-use perfect scrollbar library.
  height calculation miss.
Why it has created a new PR?
\- A problem with a private Git Repository to my mistakes.
  Please previous PR, see the following URL.
  apache#556
In the ScreenShot, it seems to have changed color table. What changed things?
\- no. It's Animated Gif color problems.
  Changes that do not exist.

Author: CloverHearts <estail7s@gmail.com>

Closes apache#565 from cloverhearts/bug_fix/table_scrolling_and_hiding and squashes the following commits:

19621bf [CloverHearts] bug fix - Floating Thead corrected the problem does not go away.
350683e [CloverHearts] remove white space
4eb9546 [CloverHearts] Space remove. (Ci- build)
93ce86d [CloverHearts] changed Paragraph Gear Option z-index
a52e35e [CloverHearts] CI - BUILD Commit
ba165bf [CloverHearts] variable name change
f8123c5 [CloverHearts] Fixed scrollbar when the first Mouseover does not appear in the Table.
bf16e1a [CloverHearts] bug fixed visualize table component
…note paragraphs state.

### What is this PR for?
Restful api - call upon the setting / interpreter id type,
The problem occurs in the status of running Paragraphs.

- Paragraphs status code changes and restart missing

### What type of PR is it?
Bug Fix

### Todos

### Is there a relevant Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-544
### How should this be tested?
Paragraphs running after interpreter config change, save -> click okay on restart dialog

### Screenshots (if appropriate)
#### before
![bug_fix_before](https://cloud.githubusercontent.com/assets/10525473/12031890/e7708f6c-adc6-11e5-929e-369cabddb84f.gif)

#### after
![bug_fix_after](https://cloud.githubusercontent.com/assets/10525473/12031892/eacbcf8c-adc6-11e5-9c2c-971db02da00e.gif)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? no

Author: CloverHearts <estail7s@gmail.com>

Closes apache#581 from cloverhearts/bug_fix/interpreter_restart_abort and squashes the following commits:

f9294e2 [CloverHearts] stop job code -> new private method(stopJobAllInterpreter)
f6fe216 [CloverHearts] restful api setting-interpreterid bug fix.
### What is this PR for?
Currently, `/docs/manual/interpreters.md` file can not be found in anywhere. So I add a link for this file to the navbar menu.

### What type of PR is it?
Improvement

### Todos
* [x] - Add a link for interpreter.md to navbar menu.

### Is there a relevant Jira issue?
No

### How should this be tested?
We don't have link for interpreter.md yet, so can not reproduce it  : (

### Screenshots (if appropriate)
 - Before
![screen shot 2016-01-01 at 9 49 30 pm](https://cloud.githubusercontent.com/assets/10060731/12073375/6f5c2c5c-b0d2-11e5-9014-5ddfac734dc2.png)

 - After
![screen shot 2016-01-01 at 9 49 15 pm](https://cloud.githubusercontent.com/assets/10060731/12073376/7583dcec-b0d2-11e5-8f34-c873299a264a.png)

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: Ryu Ah young <fbdkdud93@hanmail.net>

Closes apache#589 from AhyoungRyu/ADD-interpreter.md and squashes the following commits:

28e1ac4 [Ryu Ah young] Add a link of interpreter.md to navbar menu
@corneadoug corneadoug closed this Jan 8, 2016
@corneadoug corneadoug deleted the Refactor/StreamJsCode branch January 8, 2016 08:06
@corneadoug corneadoug restored the Refactor/StreamJsCode branch January 8, 2016 08:06
Leemoonsoo pushed a commit that referenced this pull request Jan 23, 2016
1)  Rest apis to export notebook as JSON
2)  Rest api to import notebook from JSON
https://issues.apache.org/jira/browse/ZEPPELIN-590

Author: swakrish <swakrish@gmail.com>
Author: Ramaswamy Devarajan <ram.devarajan@us.ibm.com>

Closes apache#614 from swakrish/master and squashes the following commits:

83e7a6d [swakrish] Merge pull request #7 from apache/master
042d9af [swakrish] Merge pull request #6 from apache/master
f5b0805 [swakrish] Merge branch 'master' of git@github.com:swakrish/incubator-zeppelin.git
869b48f [swakrish] logging the error
f8bf1f3 [swakrish] Merge pull request #5 from apache/master
f8a992c [swakrish] Merge branch 'master' of git@github.com:swakrish/incubator-zeppelin.git
270e17b [swakrish] changed soureJSON to sourceJson
4cb69be [swakrish] Merge pull request #4 from apache/master
e282958 [swakrish] Changed websocket import to use common code
e928c14 [swakrish] changed doc to make it http post
4be62f6 [swakrish] Merge branch 'master' of git@github.com:swakrish/incubator-zeppelin.git
db6a580 [swakrish] changed HTTP Put to POST in the docs
ec14034 [swakrish] Merge pull request #3 from apache/master
630664c [swakrish] Merge pull request #2 from apache/master
b080d7d [swakrish] Merge pull request #1 from apache/master
db8b016 [Ramaswamy Devarajan] added note not found check for export
7351f31 [Ramaswamy Devarajan] Moved export/import methods to Notebook.java
6c19668 [Ramaswamy Devarajan] Changed http put to Http post for REST import
ecb8f1e [Ramaswamy Devarajan] Formatting for google style
9b64a66 [Ramaswamy Devarajan] fixed alignments
0e94dce [Ramaswamy Devarajan] add documentation
3645354 [Ramaswamy Devarajan] Rest Apis to export/import
Leemoonsoo pushed a commit that referenced this pull request Aug 10, 2016
### What is this PR for?
This is a small refactoring to keep this Controller following the [ControllerAs with vm](https://github.com/johnpapa/angular-styleguide/tree/master/a1#controlleras-with-vm)
rules, that it was based on.

Here is a list of things that were changed and why:

* Most of the controller's $scope values & fct (except from the search q) where moved to the vm.The controller is using vm, so storing in $scope to share with the view is not needed.

* Functions or Vars that are not used in the view were removed from the vm. (kept private to the controller)

* $rootscope functions was moved to `app.js`. I think  the need for that function might need to be changed, but for the scope of this PR, we are just moving it to where the $rootScope values are declared.

* Gathering vm declaration before the functions and ordered alphabetically

* Re-order functions alphabetically

* Create `initController ` to regroup all the controller setup.

### What type of PR is it?
Refactoring

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1290

### How should this be tested?
You can Just verify that the below Navbar related features are still good:
* Search Form
* Connected Status
* Login button
* User Name and its dropdown menu
* Notebook list drop-down menu (and filer, folder inside of it)

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: Damien CORNEAU <corneadoug@gmail.com>
Author: CORNEAU Damien <corneadoug@gmail.com>
Author: Prabhjyot Singh <prabhjyotsingh@gmail.com>

Closes apache#1281 from corneadoug/Refactor/navbarCtrl and squashes the following commits:

31f9110 [CORNEAU Damien] Merge pull request #4 from prabhjyotsingh/logoutUserFix
4686a18 [Prabhjyot Singh] CI failure for testGroupPermission
2fde749 [Damien CORNEAU] finish cleaning the controller
be18547 [Damien CORNEAU] Remove  functions from navbar controller
Leemoonsoo pushed a commit that referenced this pull request Aug 21, 2016
### What is this PR for?
Adding extra libraries to livy interpreter which isn't exist by default.

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

### Todos
* [Test case ] - Task

### What is the Jira issue?
*  [ZEPPELIN-1258]

### How should this be tested?
- Create new livy interpreter or modify the default.
- Set `livy.spark.jars.packages` to list of maven coordinates of jars. The format for the coordinates should be groupId:artifactId:version.

### Screenshots (if appropriate)
![](https://s31.postimg.org/px78l7ql7/Screenshot_from_2016_08_03_16_59_00.png)
![](https://s32.postimg.org/96ucb5rb9/Screenshot_from_2016_08_03_17_00_30.png)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? yes

Author: mahmoudelgamal <mahmoudf.elgamal@gmail.com>
Author: mfelgamal <mahmoudf.elgamal@gmail.com>
Author: Fouad <fuad.assayadi@gmail.com>

Closes apache#1255 from mfelgamal/feature/modifying-livy-doc and squashes the following commits:

5411a2f [mahmoudelgamal] changeing default to example
d7f6818 [mahmoudelgamal] Adding livy.spark.jars.packages property
98090ab [mahmoudelgamal] Adding external libraries to livy
03a1e80 [mfelgamal] Merge pull request #4 from apache/master
2586651 [Fouad] Merge pull request #2 from apache/master
@corneadoug corneadoug deleted the Refactor/StreamJsCode branch August 24, 2016 08:23
Leemoonsoo pushed a commit that referenced this pull request Oct 4, 2016
## What is this PR for?
The PR is a interpreter for [Apache Beam](http://beam.incubator.apache.org) which is an open source unified platform for data processing pipelines. A pipeline can be build using one of the Beam SDKs.
The execution of the pipeline is done by different Runners . Currently, Beam supports Apache Flink Runner, Apache Spark Runner, and Google Dataflow Runner.

### What type of PR is it?
- Feature

### Todos
* Test case
* Review Comments
* Documentation

### What is the Jira issue?
* [ZEPPELIN-682]

### How should this be tested?
- Start the Zeppelin server
- The prefix of interpreter is `%beam` and then write your code with required imports and the runner

### Screenshots (if appropriate)
![](https://s9.postimg.org/s6eiwrbxb/beam_interpreter.png)
![](https://s9.postimg.org/eq3h8wsrz/visualisation_with_table.png)

### Questions:
* Does the licenses files need update? no
* Is there breaking changes for older versions? no
* Does this needs documentation? yes

Author: mahmoudelgamal <mahmoudf.elgamal@gmail.com>
Author: mfelgamal <mahmoudf.elgamal@gmail.com>
Author: Fouad <fuad.assayadi@gmail.com>

Closes apache#1334 from mfelgamal/beam-interpreter-static-repl-7 and squashes the following commits:

da66c27 [mahmoudelgamal] Modify condition of checking static modifier
55c1322 [mahmoudelgamal] set spark version to 1.6.2 and throw original exception
27d7690 [mahmoudelgamal] set spark version to 1.6.1 and some modifications
750041c [mahmoudelgamal] Add readme file and modify pom file and travis.yml
ca88f94 [mahmoudelgamal] edit pom file and .travis.yml
3d65427 [mahmoudelgamal] update .travis.yml file
f19f98d [mahmoudelgamal] Make easy example with imports ands some modifications
74c14ca [mahmoudelgamal] Update the licenses
acc7afb [mahmoudelgamal] Change beam to version 0.2.0
e821614 [mahmoudelgamal] Removing hadoop-core and print stack trace to failure
5cb7c7b [mahmoudelgamal] Add some changes to doc and pom file
75fc4f7 [mahmoudelgamal] add interpreter to navigation.html and remove extra spaces and lines
9b1b385 [mahmoudelgamal] put beam in alphabetical order
9c1e25d [mahmoudelgamal] Adding changes like logging and conventions and license
2aa6d65 [mahmoudelgamal] changing class name to StaticRepl and adding some modifications
7cf25fb [mahmoudelgamal] Adding some tests
3c5038f [mahmoudelgamal] Modifying the documentation
5695077 [mahmoudelgamal] Modifying pom file and Making documentation
26fc59b [mahmoudelgamal] Refactoring of the code
3a2bd85 [mahmoudelgamal] Adding the beam to zeppelin 7
ab7ee2d [mahmoudelgamal] beam interpreter
85957ff [mfelgamal] Merge pull request #10 from apache/master
852c3d3 [mfelgamal] Merge pull request #9 from apache/master
a4bcc0d [mfelgamal] Merge pull request #8 from apache/master
858f1e1 [mfelgamal] Merge pull request #7 from apache/master
03a1e80 [mfelgamal] Merge pull request #4 from apache/master
2586651 [Fouad] Merge pull request #2 from apache/master
Leemoonsoo pushed a commit that referenced this pull request Nov 2, 2016
### What is this PR for?
This Good Practice Guide promotes the usage of `ng-bind` instead of the classic `{{}}` syntax, to have a performance boost.

### What type of PR is it?
Documentation

### What is the Jira issue?
https://issues.apache.org/jira/browse/ZEPPELIN-1495

### How should this be tested?
Outline the steps to test the PR here.

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? No
* Is there breaking changes for older versions? No
* Does this needs documentation? No

Author: Damien CORNEAU <corneadoug@gmail.com>

Closes apache#1463 from corneadoug/ZEPPELIN-1495 and squashes the following commits:

102b62b [Damien CORNEAU] Add small update to Guide #1
23e64dc [Damien CORNEAU] Fix escaping of angular {{}}
c420d8a [Damien CORNEAU] Add Good Practice #4
Leemoonsoo added a commit that referenced this pull request Aug 13, 2020
Leemoonsoo added a commit that referenced this pull request Aug 19, 2020
Leemoonsoo added a commit that referenced this pull request Oct 15, 2020
Leemoonsoo pushed a commit that referenced this pull request Oct 15, 2020
…Spark Interpreter Scala REPL and fix the CI failure due to low Scala version

### What is this PR for?
- fix the [CI failure](https://travis-ci.org/github/apache/zeppelin/builds/709913046) due to [PR-3852](apache#3852)

### What type of PR is it?
[Bug Fix]

### Todos
* [ ] - Task

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

### How should this be tested?
* CI test

### Screenshots (if appropriate)

### Questions:
* Does the licenses files need update? NO
* Is there breaking changes for older versions? NO
* Does this needs documentation? Yes

Author: xiejiajun <xiejiajun02@163.com>
Author: xie-jia-jun <xiejiajun02@163.com>
Author: JakeXie <xiejiajun02@163.com>

Closes apache#3860 from xiejiajun/ZEPPELIN-4962 and squashes the following commits:

9128c9b [JakeXie] spark.repl.target docs update
ad4c0e3 [xiejiajun] Clear irrelevant code
a12d3a9 [xiejiajun] Support for manually specifying the Java version of Spark Interpreter Scala REPL and fix the CI failure due to low Scala version
ab2b191 [xiejiajun] Merge branch 'master' of https://github.com/apache/zeppelin into apache-master
5569788 [xiejiajun] Merge branch 'master' of https://github.com/apache/zeppelin into apache-master
0a9af6c [xiejiajun] Merge branch 'master' of https://github.com/apache/zeppelin into apache-master
be36b37 [xiejiajun] 合并Apache Master分支冲突解决
1335d55 [xiejiajun] Merge remote-tracking branch 'origin/master'
fc59f57 [JakeXie] Merge pull request #4 from apache/master
9cc70fe [xiejiajun] Merge remote-tracking branch 'origin/master'
6ef9b23 [xie-jia-jun] Merge pull request #3 from apache/master
45af87a [xiejiajun] added timeout for getting Thrift client to avoid situations where the interpreter may not be restarted when the interpreter process exits unexpectedly
f149c3b [xie-jia-jun] Merge pull request #1 from apache/master
5d4b645 [xie-jia-jun] Support OSSConfigStorage of Aliyun
dbb6639 [xie-jia-jun] Add Aliyun OSS SDK
bb47849 [xie-jia-jun] Support S3ConfigStorage of AWS
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

8 participants