-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcli.html
90 lines (77 loc) · 3.75 KB
/
cli.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>2.2. Command Line Interface — Presto 0.163 Documentation</title>
<link rel="stylesheet" href="../_static/presto.css" type="text/css" />
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: '../',
VERSION: '0.163',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="../_static/jquery.js"></script>
<script type="text/javascript" src="../_static/underscore.js"></script>
<script type="text/javascript" src="../_static/doctools.js"></script>
<link rel="index" title="Index" href="../genindex.html" />
<link rel="search" title="Search" href="../search.html" />
<link rel="top" title="Presto 0.163 Documentation" href="../index.html" />
<link rel="up" title="2. Installation" href="../installation.html" />
<link rel="next" title="2.3. JDBC Driver" href="jdbc.html" />
<link rel="prev" title="2.1. Deploying Presto" href="deployment.html" />
</head>
<body role="document">
<div class="header">
<h1 class="heading"><a href="../index.html">
<span>Presto 0.163 Documentation</span></a></h1>
<h2 class="heading"><span>2.2. Command Line Interface</span></h2>
</div>
<div class="topnav">
<p class="nav">
<span class="left">
« <a href="deployment.html">2.1. Deploying Presto</a>
</span>
<span class="right">
<a href="jdbc.html">2.3. JDBC Driver</a> »
</span>
</p>
</div>
<div class="content">
<div class="section" id="command-line-interface">
<h1>2.2. Command Line Interface</h1>
<p>The Presto CLI provides a terminal-based interactive shell for running
queries. The CLI is a
<a class="reference external" href="http://skife.org/java/unix/2011/06/20/really_executable_jars.html">self-executing</a>
JAR file, which means it acts like a normal UNIX executable.</p>
<p>Download <a class="reference external" href="https://repo1.maven.org/maven2/com/facebook/presto/presto-cli/0.163/presto-cli-0.163-executable.jar">presto-cli-0.163-executable.jar</a>, rename it to <code class="docutils literal"><span class="pre">presto</span></code>,
make it executable with <code class="docutils literal"><span class="pre">chmod</span> <span class="pre">+x</span></code>, then run it:</p>
<div class="highlight-none"><div class="highlight"><pre><span></span>./presto --server localhost:8080 --catalog hive --schema default
</pre></div>
</div>
<p>Run the CLI with the <code class="docutils literal"><span class="pre">--help</span></code> option to see the available options.</p>
<p>By default, the results of queries are paginated using the <code class="docutils literal"><span class="pre">less</span></code> program
which is configured with a carefully selected set of options. This behavior
can be overridden by setting the environment variable <code class="docutils literal"><span class="pre">PRESTO_PAGER</span></code> to the
name of a different program such as <code class="docutils literal"><span class="pre">more</span></code>, or set it to an empty value
to completely disable pagination.</p>
</div>
</div>
<div class="bottomnav">
<p class="nav">
<span class="left">
« <a href="deployment.html">2.1. Deploying Presto</a>
</span>
<span class="right">
<a href="jdbc.html">2.3. JDBC Driver</a> »
</span>
</p>
</div>
<div class="footer" role="contentinfo">
</div>
</body>
</html>