ZEPPELIN-773 add documentation for configuring Spark master uri.

This commit is contained in:
Prabhjyot Singh 2016-05-12 09:47:36 +05:30
parent 23b78117cd
commit fef108153a
2 changed files with 6 additions and 1 deletions

View file

@ -22,6 +22,11 @@ Livy is an open source REST interface for interacting with Spark from anywhere.
<th>Default</th>
<th>Description</th>
</tr>
<tr>
<td>zeppelin.livy.master</td>
<td>local[*]</td>
<td>Spark master uri. ex) spark://masterhost:7077</td>
</tr>
<tr>
<td>zeppelin.livy.url</td>
<td>http://localhost:8998</td>

View file

@ -34,7 +34,7 @@ import java.util.Properties;
public class LivySparkInterpreter extends Interpreter {
static String DEFAULT_URL = "http://localhost:8998";
static String LOCAL = "local";
static String LOCAL = "local[*]";
Logger LOGGER = LoggerFactory.getLogger(LivySparkInterpreter.class);
private LivyOutputStream out;