mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
ZEPPELIN-773 add documentation for configuring Spark master uri.
This commit is contained in:
parent
23b78117cd
commit
fef108153a
2 changed files with 6 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue