### 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

- After

### 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#589 from AhyoungRyu/ADD-interpreter.md and squashes the following commits:
28e1ac4 [Ryu Ah young] Add a link of interpreter.md to navbar menu
### 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#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?
Adds elasticsearch to interpreter menu in navigation and fixes max image size for screenshots
### What type of PR is it?
Documentation | Hot Fix
### Is there a relevant Jira issue?
### How should this be tested?
Build docs, go to elasticsearch one.
Author: Alexander Bezzubov <bzz@apache.org>
Closes#566 from bzz/fix/elasticsearch-docs and squashes the following commits:
638ab69 [Alexander Bezzubov] Elasticsearch: docs - keeping alphabetical order of interpreters
43ffcf9 [Alexander Bezzubov] Elasticsearch: docs - fix GFM markdown syntax
b7be462 [Alexander Bezzubov] Elasticsearch: docs - fix image size
243b0d1 [Alexander Bezzubov] Elasticsearch: docs - add interpreter to navigation menu
This is very basic implementation of the [ZEPPELIN-143](https://issues.apache.org/jira/browse/ZEPPELIN-143) at the backend.
It makes a local git repository our of your `/notebook` dir and commits a new revision for each save/update.
It does not:
- add any remotes to the git repo. It is totally possible to do that manually though. It would be interesting to add this later, to be able to push the notebook to hostings like GH
- have any GUI modifications. It is left as further work, to add the ability for a user to switch "versions" of the notebook, navigating between previous runs.
Feedback is very welcome!
Author: Alexander Bezzubov <bzz@apache.org>
Closes#497 from bzz/add-git-notebook-repo and squashes the following commits:
468a858 [Alexander Bezzubov] ZEPPELIN-143: add all new dependencies to LICENCE
5d7ffea [Alexander Bezzubov] ZEPPELIN-143: introduce NotebookRepo.close()
978e62c [Alexander Bezzubov] ZEPPELIN-143: muting down the logs
fca2300 [Alexander Bezzubov] ZEPPELIN-143: general Notebook storage doc update
94720d9 [Alexander Bezzubov] Merge branch 'master' into add-git-notebook-repo
85de737 [Alexander Bezzubov] ZEPPELIN-143: last-minute cleanup
8d66c51 [Alexander Bezzubov] ZEPPELIN-143: docs and conf updated
274830f [Alexander Bezzubov] ZEPPELIN-143: .history() implemented
4ef879a [Alexander Bezzubov] ZEPPELIN-143: initial repo creation + tests
bdee039 [Alexander Bezzubov] ZEPPELIN-143: simple case save() implemented
20a93a4 [Alexander Bezzubov] ZEPPELIN-143: adding JGit as initial impl
c21b3e6 [Alexander Bezzubov] ZEPPELIN-143: WIP - very basic sketch of GitNotebookRepo
cf0b4bc [Alexander Bezzubov] Small cleanup: JavaDoc, annotations, warning for NotebookRepos
This PR enable HiveInterpreter to configure several connection information. For using specific configurations, you should use some tricks like ``%hive(configuration_prefix)``. without it, you can use default settings starting with ``default``.
<img width="673" alt="screen shot 2015-11-21 at 1 51 31 am" src="https://cloud.githubusercontent.com/assets/3612566/11305933/835601e8-8ff2-11e5-9632-6fbbd97010c5.png">
<img width="692" alt="screen shot 2015-11-21 at 1 53 59 am" src="https://cloud.githubusercontent.com/assets/3612566/11306006/dd0882c4-8ff2-11e5-9094-e92dc762a7a6.png">
Author: Jongyoul Lee <jongyoul@gmail.com>
Closes#455 from jongyoul/ZEPPELIN-440 and squashes the following commits:
af4c64b [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Rebased and fixed links of docs
d68bcc5 [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Fixed typos on docs
fc33a30 [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Fixed Apaceh license header - Fixed some codestyle - Removed unused codes and classes
4e01265 [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Updated docs for hive
b4f1a1c [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Fixed test case to be more general
4867c6f [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Fixed test case to be more general
dcb65ae [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Revised executeSql from Postgresql.executeSql
f2b61c0 [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Restored ParallelScheduler from FIFOScheduler
2616050 [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Restored some tests from the beginning
5fa4fd7 [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Fixed getScriptBody return after trimming
8aa7601 [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Fixed some tests
85e4914 [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Fixed style
9293d78 [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Fixed linefeed to variable
df9f3cb [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Remove commented codes - Fixed license part
87ee87a [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Revert log4j.properties
97bfa65 [Jongyoul Lee] ZEPPELIN-440 HiveInterpreter with multiple configuration - Enable multiple connection properties
Author: Jeff Steinmetz <jeffrey.steinmetz@gmail.com>
Closes#495 from jeffsteinmetz/vagrant-navigation and squashes the following commits:
437421f [Jeff Steinmetz] virtual machine documenation link
Author: Renjith Kamath <renjith.kamath@gmail.com>
Closes#467 from r-kamath/markdownDocUpdate and squashes the following commits:
3ebed22 [Renjith Kamath] update top nav and add basepath
f7e954a [Renjith Kamath] Merge branch 'master' of https://github.com/apache/incubator-zeppelin into markdownDocUpdate
d839992 [Renjith Kamath] add link to markdown4j page
95442b4 [Renjith Kamath] Merge branch 'master' of https://github.com/apache/incubator-zeppelin into markdownDocUpdate
e429355 [Renjith Kamath] Add basic documentation for Markdown
Details at the [ZEPPELIN-279](https://issues.apache.org/jira/browse/ZEPPELIN-279)
Author: Alexander Bezzubov <bzz@apache.org>
Closes#282 from bzz/ZEPPELIN-279-move-docs-to-master and squashes the following commits:
16d2cd0 [Alexander Bezzubov] ZEPPELIN-279: updating refs to new /docs location
a051a35 [Alexander Bezzubov] ZEPPELIN-279: moving website gh-pages -> master:/docs