forked from duckdb/duckdb-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
223 lines (203 loc) · 8.76 KB
/
index.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
---
layout: default
title: An in-process SQL OLAP database management system
subtitle: An In-Process Analytical Database
description: DuckDB is an in-process SQL OLAP database management system. Simple, feature-rich, fast & open source.
body_class: landing nowrap
---
<div class="dummy">
</div>
<section>
<div class="welcome">
<div id="duckdbdanimationcircled" style="width: 75px; height: 75px; margin: 0 auto; margin-bottom: 35px;"></div>
<!--<img src="{{ site.baseurl }}/images/duckdb-circle.svg" alt="DuckDB Logo">-->
<h1>DuckDB is an <nobr>in-process</nobr> <br class="break">SQL <nobr class="break">OLAP database </nobr>management system</h1>
<div class="mainlinks">
<ul>
<a href="#quickinstall"><li class="highlighted">Installation <span class="duckdbsymbol">↓</span> </li></a>
<a href="/docs/archive/{{ site.currentduckdbversion }}"><li>Documentation</li></a>
<a href="https://shell.duckdb.org"><li>Live Demo</li></a>
<a href="https://duckdblabs.com/support/"><li>Support</li></a>
</ul>
</div>
</div>
</section>
<section>
<div class="wrap">
<div class="whyduckdb">
<h2>Why DuckDB?</h2>
<div class="boxlayout">
<div class="box">
<div>
<div class="icon"><span class="duckdbsymbol"></span></div>
</div>
<div>
<h3>Simple and portable</h3>
<ul>
<li>In-process, serverless</li>
<li>C++11, no dependencies, single-file build</li>
<li>APIs for Python, R, Java, Julia, Swift, …</li>
<li>Runs on Windows, Linux, macOS, OpenBSD, …</li>
</ul>
<a class="readmore" href="{{ site.url }}{{ site.baseurl }}/why_duckdb.html#duckdbissimple">more <span></span></a>
</div>
</div>
<div class="box">
<div>
<div class="icon"><span class="duckdbsymbol"></span></div>
</div>
<div>
<h3>Feature-rich</h3>
<ul>
<li>Transactions, persistence</li>
<li>Extensive SQL support</li>
<li>Direct Parquet, CSV, and JSON querying</li>
<li>Joins, aggregates, window functions</li>
</ul>
<a class="readmore" href="{{ site.url }}{{ site.baseurl }}/why_duckdb.html#duckdbisfeaturerich">more <span></span></a>
</div>
</div>
<div class="box">
<div>
<div class="icon"><span class="duckdbsymbol"></span></div>
</div>
<div>
<h3>Fast</h3>
<ul>
<li>Optimized for analytics</li>
<li>Vectorized and parallel engine</li>
<li>Larger than memory processing</li>
<li>Parallel Parquet, CSV, and NDJSON loaders</li>
</ul>
<a class="readmore" href="{{ site.url }}{{ site.baseurl }}/why_duckdb.html#duckdbisfast">more <span></span></a>
</div>
</div>
<div class="box">
<div>
<div class="icon"><span class="duckdbsymbol"></span></div>
</div>
<div>
<h3>Free and extensible</h3>
<ul>
<li>Free & open-source</li>
<li>Permissive MIT License</li>
<li>Flexible extension mechanism</li>
</ul>
<a class="readmore" href="{{ site.url }}{{ site.baseurl }}/why_duckdb.html#duckdbisfree">more <span></span></a>
</div>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="benefits">
<h1>All the benefits of a database, <nobr>none of the hassle.</nobr></h1>
</div>
</section>
<section id="quickinstall">
<div class="wrap install">
<h2>Installation</h2>
<p>Choose your environment to use for DuckDB</p>
<div class="environment">
<ul>
<li data-id="ver-cli" class="active">Command Line</li>
<li data-id="ver-python">Python</li>
<li data-id="ver-r">R</li>
<li data-id="ver-java">Java</li>
<li data-id="ver-js">Node.js</li>
<li data-id="ver-odbc">ODBC</li>
</ul>
</div>
<label class="onlymobile">
<select name="environment" class="environmentselect onlymobile">
<option value="ver-cli">Command Line</option>
<option value="ver-python">Python</option>
<option value="ver-r">R</option>
<option value="ver-java">Java</option>
<option value="ver-js">Node.js</option>
<option value="ver-odbc">ODBC</option>
</select>
</label>
<div class="result">
<a href="https://github.com/duckdb/duckdb/releases/download/v{{ site.currentduckdbversion }}/duckdb_cli-windows-amd64.zip" target="_blank">https://github.com<wbr>/duckdb/<wbr>duckdb/<wbr>releases/<wbr>download/<wbr>v{{ site.currentduckdbversion }}/duckdb_cli-windows-amd64.zip</a>
</div>
<p class="system">
<span>Latest release: DuckDB {{ site.currentduckdbversion }}</span>
<span class="systemdetected">System detected: </span>
<span><a href="docs/installation/">Other Installations</a></span>
</p>
<div class="hidden">
<p class="ver-python">pip install duckdb=={{ site.currentduckdbversion }}</p>
<p class="ver-r">install.packages("duckdb")</p>
<p class="ver-java">
<dependency><br>
<groupId>org.duckdb</groupId><br>
<artifactId>duckdb_jdbc</artifactId><br>
<version>{{ site.currentjavaversion }}</version><br>
</dependency><br><br>
<a href="https://search.maven.org/artifact/org.duckdb/duckdb_jdbc/{{ site.currentduckdbversion }}/jar">More Options</a>
</p>
<p class="ver-js">npm install duckdb</p>
<p class="ver-cli macos">brew install duckdb<br/>---<br/>Direct download: <a href="https://github.com/duckdb/duckdb/releases/download/v{{ site.currentduckdbversion }}/duckdb_cli-osx-universal.zip" target="_blank">https://github.com<wbr>/duckdb/<wbr>duckdb/<wbr>releases/<wbr>download/<wbr>v{{ site.currentduckdbversion }}/duckdb_cli-osx-universal.zip</a></p>
<p class="ver-cli linux"><a href="https://github.com/duckdb/duckdb/releases/download/v{{ site.currentduckdbversion }}/duckdb_cli-linux-amd64.zip" target="_blank">https://github.com<wbr>/duckdb/<wbr>duckdb/<wbr>releases/<wbr>download/<wbr>v{{ site.currentduckdbversion }}/duckdb_cli-linux-amd64.zip</a></p>
<p class="ver-cli win"><a href="https://github.com/duckdb/duckdb/releases/download/v{{ site.currentduckdbversion }}/duckdb_cli-windows-amd64.zip" target="_blank">https://github.com<wbr>/duckdb/<wbr>duckdb/<wbr>releases/<wbr>download/<wbr>v{{ site.currentduckdbversion }}/duckdb_cli-windows-amd64.zip</a></p>
<p class="ver-odbc linux"><a href="https://github.com/duckdb/duckdb/releases/download/v{{ site.currentduckdbversion }}/duckdb_odbc-linux-amd64.zip" target="_blank">https://github.com/<wbr>duckdb/<wbr>duckdb/<wbr>releases/<wbr>download/<wbr>v{{ site.currentduckdbversion }}/duckdb_odbc-linux-amd64.zip</a></p>
<p class="ver-odbc win"><a href="https://github.com/duckdb/duckdb/releases/download/v{{ site.currentduckdbversion }}/duckdb_odbc-windows-amd64.zip" target="_blank">https://github.com/<wbr>duckdb/<wbr>duckdb/<wbr>releases/<wbr>download/<wbr>v{{ site.currentduckdbversion }}/duckdb_odbc-windows-amd64.zip</a></p>
<p class="ver-odbc macos">Not available</p>
</div>
</div>
</section>
<section>
<div class="wrap">
<div class="using">
<div class="box">
<h2>When to use DuckDB</h2>
<div class="icon">
<span class="duckdbsymbol"></span>
</div>
<div>
<ul>
<li>Processing and storing tabular datasets, e.g., from CSV or Parquet files</li>
<li>Interactive data analysis, e.g., join & aggregate multiple large tables</li>
<li>Concurrent large changes, to multiple large tables, e.g., appending rows, adding/removing/updating columns</li>
<li>Large result set transfer to client</li>
</ul>
</div>
</div>
<div class="box">
<h2>When to not use DuckDB</h2>
<div class="icon">
<span class="duckdbsymbol"></span>
</div>
<div>
<ul>
<li>High-volume transactional use cases (e.g., tracking orders in a webshop)</li>
<li>Large client/server installations for centralized enterprise data warehousing</li>
<li>Writing to a single database from multiple concurrent processes</li>
<li>Multiple concurrent processes reading from a single writable database</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="wrap">
<div class="newsblog">
<h2>Blog</h2><a href="{{ site.url }}{{ site.baseurl }}/news" class="newsarchive">Archive <span></span></a>
<div class="newswrap">
{% for post in site.posts limit:3 %}
{% capture year %}{{post.date | date: "%Y"}}{% endcapture %}
{% capture month %}{{post.date | date: "%B"}}{% endcapture %}
<div class="postpreview" data-year="{{year}}" data-month="{{month}}">
<div class="date">{{ post.date | date: "%Y-%m-%d" }}</div>
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
<p>{{ post.content | strip_html | truncatewords: 50, " […]" }}</p>
<a class="continue" href="{{ post.url }}">continue reading <span></span></a>
</div>
{% endfor %}
</div>
</div>
</div>
</section>