hdfs.md 4.1 KB
Newer Older
I
Ivan Blinkov 已提交
1
---
2
toc_priority: 4
I
Ivan Blinkov 已提交
3 4 5
toc_title: HDFS
---

6
# HDFS {#table_engines-hdfs}
7

8
This engine provides integration with [Apache Hadoop](https://en.wikipedia.org/wiki/Apache_Hadoop) ecosystem by allowing to manage data on [HDFS](https://hadoop.apache.org/docs/current/hadoop-project-dist/hadoop-hdfs/HdfsDesign.html)via ClickHouse. This engine is similar
9
to the [File](../../../engines/table-engines/special/file.md#table_engines-file) and [URL](../../../engines/table-engines/special/url.md#table_engines-url) engines, but provides Hadoop-specific features.
10

11
## Usage {#usage}
12

13
``` sql
14 15
ENGINE = HDFS(URI, format)
```
16

S
stavrolia 已提交
17
The `URI` parameter is the whole file URI in HDFS.
18 19
The `format` parameter specifies one of the available file formats. To perform
`SELECT` queries, the format must be supported for input, and to perform
20
`INSERT` queries – for output. The available formats are listed in the
I
Ivan Blinkov 已提交
21
[Formats](../../../interfaces/formats.md#formats) section.
S
stavrolia 已提交
22
The path part of `URI` may contain globs. In this case the table would be readonly.
23 24 25

**Example:**

26
**1.** Set up the `hdfs_engine_table` table:
27

28
``` sql
29 30
CREATE TABLE hdfs_engine_table (name String, value UInt32) ENGINE=HDFS('hdfs://hdfs1:9000/other_storage', 'TSV')
```
S
stavrolia 已提交
31 32

**2.** Fill file:
33 34

``` sql
S
stavrolia 已提交
35 36 37 38
INSERT INTO hdfs_engine_table VALUES ('one', 1), ('two', 2), ('three', 3)
```

**3.** Query the data:
39

40
``` sql
41 42 43
SELECT * FROM hdfs_engine_table LIMIT 2
```

44
``` text
45 46 47 48 49 50
┌─name─┬─value─┐
│ one  │     1 │
│ two  │     2 │
└──────┴───────┘
```

51
## Implementation Details {#implementation-details}
52

53 54 55 56 57
-   Reads and writes can be parallel
-   Not supported:
    -   `ALTER` and `SELECT...SAMPLE` operations.
    -   Indexes.
    -   Replication.
58

S
stavrolia 已提交
59 60 61 62
**Globs in path**

Multiple path components can have globs. For being processed file should exists and matches to the whole path pattern. Listing of files determines during `SELECT` (not at `CREATE` moment).

63 64 65 66
-   `*` — Substitutes any number of any characters except `/` including empty string.
-   `?` — Substitutes any single character.
-   `{some_string,another_string,yet_another_one}` — Substitutes any of strings `'some_string', 'another_string', 'yet_another_one'`.
-   `{N..M}` — Substitutes any number in range from N to M including both borders.
S
stavrolia 已提交
67

68
Constructions with `{}` are similar to the [remote](../../../sql-reference/table-functions/remote.md) table function.
S
stavrolia 已提交
69 70 71

**Example**

72 73
1.  Suppose we have several files in TSV format with the following URIs on HDFS:

A
Alexey Milovidov 已提交
74 75 76 77 78 79
-   ‘hdfs://hdfs1:9000/some_dir/some_file_1’
-   ‘hdfs://hdfs1:9000/some_dir/some_file_2’
-   ‘hdfs://hdfs1:9000/some_dir/some_file_3’
-   ‘hdfs://hdfs1:9000/another_dir/some_file_1’
-   ‘hdfs://hdfs1:9000/another_dir/some_file_2’
-   ‘hdfs://hdfs1:9000/another_dir/some_file_3’
S
stavrolia 已提交
80

81
1.  There are several ways to make a table consisting of all six files:
S
stavrolia 已提交
82

83
<!-- -->
S
stavrolia 已提交
84

85
``` sql
S
stavrolia 已提交
86 87 88 89 90
CREATE TABLE table_with_range (name String, value UInt32) ENGINE = HDFS('hdfs://hdfs1:9000/{some,another}_dir/some_file_{1..3}', 'TSV')
```

Another way:

91
``` sql
S
stavrolia 已提交
92 93 94 95 96
CREATE TABLE table_with_question_mark (name String, value UInt32) ENGINE = HDFS('hdfs://hdfs1:9000/{some,another}_dir/some_file_?', 'TSV')
```

Table consists of all the files in both directories (all files should satisfy format and schema described in query):

97
``` sql
S
stavrolia 已提交
98 99 100
CREATE TABLE table_with_asterisk (name String, value UInt32) ENGINE = HDFS('hdfs://hdfs1:9000/{some,another}_dir/*', 'TSV')
```

101
!!! warning "Warning"
S
stavrolia 已提交
102 103 104 105
    If the listing of files contains number ranges with leading zeros, use the construction with braces for each digit separately or use `?`.

**Example**

106
Create table with files named `file000`, `file001`, … , `file999`:
S
stavrolia 已提交
107

108
``` sql
陈小玉 已提交
109
CREATE TABLE big_table (name String, value UInt32) ENGINE = HDFS('hdfs://hdfs1:9000/big_dir/file{0..9}{0..9}{0..9}', 'CSV')
S
stavrolia 已提交
110 111
```

112
## Virtual Columns {#virtual-columns}
113

114 115
-   `_path` — Path to the file.
-   `_file` — Name of the file.
116 117 118

**See Also**

119
-   [Virtual columns](../../../engines/table-engines/index.md#table_engines-virtual_columns)
120

I
Ivan Blinkov 已提交
121
[Original article](https://clickhouse.tech/docs/en/operations/table_engines/hdfs/) <!--hide-->