Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 5781e57

Browse files
dilipbiswalsrowen
authored andcommitted
[SPARK-30589][DOC] Document DISTRIBUTE BY Clause of SELECT statement in SQL Reference
### What changes were proposed in this pull request? Document DISTRIBUTE BY clause of SELECT statement in SQL Reference Guide. ### Why are the changes needed? Currently Spark lacks documentation on the supported SQL constructs causing confusion among users who sometimes have to look at the code to understand the usage. This is aimed at addressing this issue. ### Does this PR introduce any user-facing change? Yes. **Before:** There was no documentation for this. **After.** <img width="972" alt="Screen Shot 2020-01-20 at 3 08 24 PM" src="https://user-images.githubusercontent.com/14225158/72763045-c08fbc80-3b96-11ea-8fb6-023cba5eb96a.png"> <img width="972" alt="Screen Shot 2020-01-20 at 3 08 34 PM" src="https://user-images.githubusercontent.com/14225158/72763047-c38aad00-3b96-11ea-80d8-cd3d2d4257c8.png"> ### How was this patch tested? Tested using jykyll build --serve Closes apache#27298 from dilipbiswal/sql-ref-select-distributeby. Authored-by: Dilip Biswal <[email protected]> Signed-off-by: Sean Owen <[email protected]>
1 parent 7e1b991 commit 5781e57

File tree

1 file changed

+84
-0
lines changed

1 file changed

+84
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
---
2+
layout: global
3+
title: DISTRIBUTE BY Clause
4+
displayTitle: DISTRIBUTE BY Clause
5+
license: |
6+
Licensed to the Apache Software Foundation (ASF) under one or more
7+
contributor license agreements. See the NOTICE file distributed with
8+
this work for additional information regarding copyright ownership.
9+
The ASF licenses this file to You under the Apache License, Version 2.0
10+
(the "License"); you may not use this file except in compliance with
11+
the License. You may obtain a copy of the License at
12+
13+
http://www.apache.org/licenses/LICENSE-2.0
14+
15+
Unless required by applicable law or agreed to in writing, software
16+
distributed under the License is distributed on an "AS IS" BASIS,
17+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18+
See the License for the specific language governing permissions and
19+
limitations under the License.
20+
---
21+
The <code>DISTRIBUTE BY</code> clause is used to repartition the data based
22+
on the input expressions. Unlike the `CLUSTER BY` clause, this does not
23+
sort the data within each partition.
24+
25+
### Syntax
26+
{% highlight sql %}
27+
DISTRIBUTE BY { expression [ , ... ] }
28+
{% endhighlight %}
29+
30+
### Parameters
31+
<dl>
32+
<dt><code><em>expression</em></code></dt>
33+
<dd>
34+
Specifies combination of one or more values, operators and SQL functions that results in a value.
35+
</dd>
36+
</dl>
37+
38+
### Examples
39+
{% highlight sql %}
40+
CREATE TABLE person (name STRING, age INT);
41+
INSERT INTO person VALUES
42+
('Zen Hui', 25),
43+
('Anil B', 18),
44+
('Shone S', 16),
45+
('Mike A', 25),
46+
('John A', 18),
47+
('Jack N', 16);
48+
49+
-- Reduce the number of shuffle partitions to 2 to illustrate the behavior of `DISTRIBUTE BY`.
50+
-- It's easier to see the clustering and sorting behavior with less number of partitions.
51+
SET spark.sql.shuffle.partitions = 2;
52+
53+
-- Select the rows with no ordering. Please note that without any sort directive, the result
54+
-- of the query is not deterministic. It's included here to just contrast it with the
55+
-- behavior of `DISTRIBUTE BY`. The query below produces rows where age columns are not
56+
-- clustered together.
57+
SELECT age, name FROM person;
58+
59+
+---+-------+
60+
|age|name |
61+
+---+-------+
62+
|16 |Shone S|
63+
|25 |Zen Hui|
64+
|16 |Jack N |
65+
|25 |Mike A |
66+
|18 |John A |
67+
|18 |Anil B |
68+
+---+-------+
69+
70+
-- Produces rows clustered by age. Persons with same age are clustered together.
71+
-- Unlike `CLUSTER BY` clause, the rows are not sorted within a partition.
72+
SELECT age, name FROM person DISTRIBUTE BY age;
73+
74+
+---+-------+
75+
|age|name |
76+
+---+-------+
77+
|25 |Zen Hui|
78+
|25 |Mike A |
79+
|18 |John A |
80+
|18 |Anil B |
81+
|16 |Shone S|
82+
|16 |Jack N |
83+
+---+-------+
84+
{% endhighlight %}

0 commit comments

Comments
 (0)