Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/.vuepress/sidebar_timecho/V0.13.x/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
export const enSidebar = {
'/UserGuide/V0.13.x/': [
{
text: 'IoTDB User Guide (V0.13.x)',
text: 'IoTDB User Guide',
collapsible: false,
children: [],
},
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/sidebar_timecho/V0.13.x/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
export const zhSidebar = {
'/zh/UserGuide/V0.13.x/': [
{
text: 'IoTDB用户手册 (V0.13.x)',
text: 'IoTDB用户手册',
collapsible: false,
children: [],
},
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/sidebar_timecho/V1.0.x/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
export const enSidebar = {
'/UserGuide/V1.0.x/': [
{
text: 'IoTDB User Guide (V1.0.x)',
text: 'IoTDB User Guide',
collapsible: false,
children: [],
},
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/sidebar_timecho/V1.0.x/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
export const zhSidebar = {
'/zh/UserGuide/V1.0.x/': [
{
text: 'IoTDB用户手册 (V1.0.x)',
text: 'IoTDB用户手册',
collapsible: false,
children: [],
},
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/sidebar_timecho/V1.1.x/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
export const enSidebar = {
'/UserGuide/V1.1.x/': [
{
text: 'IoTDB User Guide (V1.1.x)',
text: 'IoTDB User Guide',
children: [],
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/sidebar_timecho/V1.1.x/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
export const zhSidebar = {
'/zh/UserGuide/V1.1.x/': [
{
text: 'IoTDB用户手册 (V1.1.x)',
text: 'IoTDB用户手册',
children: [],
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/sidebar_timecho/V1.2.x/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
export const enSidebar = {
'/UserGuide/V1.2.x/': [
{
text: 'IoTDB User Guide (V1.2.x)',
text: 'IoTDB User Guide',
children: [],
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/sidebar_timecho/V1.2.x/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
export const zhSidebar = {
'/zh/UserGuide/V1.2.x/': [
{
text: 'IoTDB用户手册 (V1.2.x)',
text: 'IoTDB用户手册',
children: [],
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/sidebar_timecho/V1.3.0-2/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
export const enSidebar = {
'/UserGuide/V1.3.0-2/': [
{
text: 'IoTDB User Guide (V1.3.0/1/2)',
text: 'IoTDB User Guide',
children: [],
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/sidebar_timecho/V1.3.0-2/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
export const zhSidebar = {
'/zh/UserGuide/V1.3.0-2/': [
{
text: 'IoTDB用户手册 (V1.3.0/1/2)',
text: 'IoTDB用户手册',
children: [],
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/sidebar_timecho/V1.3.3/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
export const enSidebar = {
'/UserGuide/latest/': [
{
text: 'IoTDB User Guide (V1.3.3)',
text: 'IoTDB User Guide',
children: [],
},
{
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/sidebar_timecho/V1.3.3/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
export const zhSidebar = {
'/zh/UserGuide/latest/': [
{
text: 'IoTDB用户手册 (V1.3.3)',
text: 'IoTDB用户手册',
children: [],
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ The five encodings described in the previous sections are applicable to differen

The correspondence between the data type and its supported encodings is summarized in the Table below.

| **Data Type** | **Best Encoding (default)** | **Supported Encoding** |
| **Data Type** | **Recommended Encoding (default)** | **Supported Encoding** |
| ------------- | --------------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down Expand Up @@ -111,7 +111,7 @@ IoTDB allows you to specify the compression method of the column when creating a

* SNAPPY

* LZ4 (Best compression method)
* LZ4 (Recommended compression method)

* GZIP

Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/V0.13.x/Data-Concept/Compression.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ IoTDB allows you to specify the compression method of the column when creating a

* SNAPPY

* LZ4 (Best compression method)
* LZ4 (Recommended compression method)

* GZIP

Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/V0.13.x/Data-Concept/Encoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ The five encodings described in the previous sections are applicable to differen

**The correspondence between the data type and its supported encodings**

| **Data Type** | **Best Encoding (default)** | **Supported Encoding** |
| **Data Type** | **Recommended Encoding (default)** | **Supported Encoding** |
| ------------- | --------------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/V1.0.x/Data-Concept/Compression.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ IoTDB allows you to specify the compression method of the column when creating a

* SNAPPY

* LZ4 (Best compression method)
* LZ4 (Recommended compression method)

* GZIP

Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/V1.0.x/Data-Concept/Encoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ The five encodings described in the previous sections are applicable to differen

**The correspondence between the data type and its supported encodings**

| **Data Type** | **Best Encoding (default)** | **Supported Encoding** |
| **Data Type** | **Recommended Encoding (default)** | **Supported Encoding** |
| ------------- | --------------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/V1.1.x/Data-Concept/Compression.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ IoTDB allows you to specify the compression method of the column when creating a

* SNAPPY

* LZ4 (Best compression method)
* LZ4 (Recommended compression method)

* GZIP

Expand Down
2 changes: 1 addition & 1 deletion src/UserGuide/V1.1.x/Data-Concept/Encoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ The five encodings described in the previous sections are applicable to differen

The correspondence between the data type and its supported encodings is summarized in the Table below.

| **Data Type** | **Best Encoding (default)** | **Supported Encoding** |
| **Data Type** | **Recommended Encoding (default)** | **Supported Encoding** |
| ------------- | --------------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ The five encodings described in the previous sections are applicable to differen

The correspondence between the data type and its supported encodings is summarized in the Table below.

| **Data Type** | **Best Encoding (default)** | **Supported Encoding** |
| **Data Type** | **Recommended Encoding (default)** | **Supported Encoding** |
| ------------- | --------------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down Expand Up @@ -108,7 +108,7 @@ IoTDB allows you to specify the compression method of the column when creating a

* SNAPPY

* LZ4 (Best compression method)
* LZ4 (Recommended compression method)

* GZIP

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ The five encodings described in the previous sections are applicable to differen
The correspondence between the data type and its supported encodings is summarized in the Table below.


| **Data Type** | **Best Encoding (default)** | **Supported Encoding** |
| **Data Type** | **Recommended Encoding (default)** | **Supported Encoding** |
| ------------- | --------------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down Expand Up @@ -108,7 +108,7 @@ IoTDB allows you to specify the compression method of the column when creating a

* SNAPPY

* LZ4 (Best compression method)
* LZ4 (Recommended compression method)

* GZIP

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ The five encodings described in the previous sections are applicable to differen

The correspondence between the data type and its supported encodings is summarized in the Table below.

| **Data Type** | **Best Encoding (default)** | **Supported Encoding** |
| **Data Type** | **Recommended Encoding (default)** | **Supported Encoding** |
| ------------- | --------------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down Expand Up @@ -111,7 +111,7 @@ IoTDB allows you to specify the compression method of the column when creating a

* SNAPPY

* LZ4 (Best compression method)
* LZ4 (Recommended compression method)

* GZIP

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ The five encodings described in the previous sections are applicable to differen

The correspondence between the data type and its supported encodings is summarized in the Table below.

| **Data Type** | **Best Encoding (default)** | **Supported Encoding** |
| **Data Type** | **Recommended Encoding (default)** | **Supported Encoding** |
| ------------- | --------------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down Expand Up @@ -111,7 +111,7 @@ IoTDB allows you to specify the compression method of the column when creating a

* SNAPPY

* LZ4 (Best compression method)
* LZ4 (Recommended compression method)

* GZIP

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

前文介绍的五种编码适用于不同的数据类型,若对应关系错误,则无法正确创建时间序列。数据类型与支持其编码的编码方式对应关系总结如下表所示。

| **数据类型** | **最佳的编码(默认)** | **支持的编码** |
| **数据类型** | **推荐编码(默认)** | **支持的编码** |
| ------------ | ---------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down Expand Up @@ -107,7 +107,7 @@ IoTDB 允许在创建一个时间序列的时候指定该列的压缩方式。

* UNCOMPRESSED(不压缩)
* SNAPPY 压缩
* LZ4 压缩(最佳压缩方式
* LZ4 压缩(推荐压缩方式
* GZIP 压缩
* ZSTD 压缩
* LZMA2 压缩
Expand Down
2 changes: 1 addition & 1 deletion src/zh/UserGuide/V0.13.x/Data-Concept/Compression.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ IoTDB 允许在创建一个时间序列的时候指定该列的压缩方式。

* UNCOMPRESSED(不压缩)
* SNAPPY 压缩
* LZ4 压缩 (最佳压缩方式
* LZ4 压缩 (推荐压缩方式
* GZIP 压缩

压缩方式的指定语法详见本文 [SQL 参考文档](../Reference/SQL-Reference.md)。
Expand Down
2 changes: 1 addition & 1 deletion src/zh/UserGuide/V0.13.x/Data-Concept/Encoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ GORILLA 编码是一种无损编码,它比较适合编码前后值比较接近

**表格 2-3 数据类型与支持其编码的对应关系**

| **数据类型** | **最佳的编码(默认)** | **支持的编码** |
| **数据类型** | **推荐编码(默认)** | **支持的编码** |
| ------------ | ---------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down
2 changes: 1 addition & 1 deletion src/zh/UserGuide/V1.0.x/Data-Concept/Compression.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ IoTDB 允许在创建一个时间序列的时候指定该列的压缩方式。

* UNCOMPRESSED(不压缩)
* SNAPPY 压缩
* LZ4 压缩 (最佳压缩方式
* LZ4 压缩 (推荐压缩方式
* GZIP 压缩

压缩方式的指定语法详见本文 [SQL 参考文档](../Reference/SQL-Reference.md)。
Expand Down
2 changes: 1 addition & 1 deletion src/zh/UserGuide/V1.0.x/Data-Concept/Encoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ ZigZag编码将有符号整型映射到无符号整型,适合比较小的整

**表格 2-3 数据类型与支持其编码的对应关系**

| **数据类型** | **最佳的编码(默认)** | **支持的编码** |
| **数据类型** | **推荐编码(默认)** | **支持的编码** |
| ------------ | ---------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down
2 changes: 1 addition & 1 deletion src/zh/UserGuide/V1.1.x/Data-Concept/Compression.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ IoTDB 允许在创建一个时间序列的时候指定该列的压缩方式。

* UNCOMPRESSED(不压缩)
* SNAPPY 压缩
* LZ4 压缩 (最佳压缩方式
* LZ4 压缩 (推荐压缩方式
* GZIP 压缩
* ZSTD 压缩

Expand Down
2 changes: 1 addition & 1 deletion src/zh/UserGuide/V1.1.x/Data-Concept/Encoding.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ CHIMP 是一种无损编码。它是一种新的流式浮点数据压缩算法

前文介绍的五种编码适用于不同的数据类型,若对应关系错误,则无法正确创建时间序列。数据类型与支持其编码的编码方式对应关系总结如下表所示。

| **数据类型** | **最佳的编码(默认)** | **支持的编码** |
| **数据类型** | **推荐编码(默认)** | **支持的编码** |
| ------------ | ---------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ RLBE编码是一种无损编码,将差分编码,位填充编码,游程长

前文介绍的五种编码适用于不同的数据类型,若对应关系错误,则无法正确创建时间序列。数据类型与支持其编码的编码方式对应关系总结如下表所示。

| **数据类型** | **最佳的编码(默认)** | **支持的编码** |
| **数据类型** | **推荐编码(默认)** | **支持的编码** |
| ------------ | ---------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand All @@ -107,7 +107,7 @@ IoTDB 允许在创建一个时间序列的时候指定该列的压缩方式。

* UNCOMPRESSED(不压缩)
* SNAPPY 压缩
* LZ4 压缩(最佳压缩方式
* LZ4 压缩(推荐压缩方式
* GZIP 压缩
* ZSTD 压缩
* LZMA2 压缩
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

前文介绍的五种编码适用于不同的数据类型,若对应关系错误,则无法正确创建时间序列。数据类型与支持其编码的编码方式对应关系总结如下表所示。

| **数据类型** | **最佳的编码(默认)** | **支持的编码** |
| **数据类型** | **推荐编码(默认)** | **支持的编码** |
| ------------ | ---------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand All @@ -104,7 +104,7 @@ IoTDB 允许在创建一个时间序列的时候指定该列的压缩方式。

* UNCOMPRESSED(不压缩)
* SNAPPY 压缩
* LZ4 压缩(最佳压缩方式
* LZ4 压缩(推荐压缩方式
* GZIP 压缩
* ZSTD 压缩
* LZMA2 压缩
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

前文介绍的五种编码适用于不同的数据类型,若对应关系错误,则无法正确创建时间序列。数据类型与支持其编码的编码方式对应关系总结如下表所示。

| **数据类型** | **最佳的编码(默认)** | **支持的编码** |
| **数据类型** | **推荐编码(默认)** | **支持的编码** |
| ------------ | ---------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down Expand Up @@ -107,7 +107,7 @@ IoTDB 允许在创建一个时间序列的时候指定该列的压缩方式。

* UNCOMPRESSED(不压缩)
* SNAPPY 压缩
* LZ4 压缩(最佳压缩方式
* LZ4 压缩(推荐压缩方式
* GZIP 压缩
* ZSTD 压缩
* LZMA2 压缩
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@

前文介绍的五种编码适用于不同的数据类型,若对应关系错误,则无法正确创建时间序列。数据类型与支持其编码的编码方式对应关系总结如下表所示。

| **数据类型** | **最佳的编码(默认)** | **支持的编码** |
| **数据类型** | **推荐编码(默认)** | **支持的编码** |
| ------------ | ---------------------- | ----------------------------------------------------------- |
| BOOLEAN | RLE | PLAIN, RLE |
| INT32 | TS_2DIFF | PLAIN, RLE, TS_2DIFF, GORILLA, ZIGZAG, CHIMP, SPRINTZ, RLBE |
Expand Down Expand Up @@ -107,7 +107,7 @@ IoTDB 允许在创建一个时间序列的时候指定该列的压缩方式。

* UNCOMPRESSED(不压缩)
* SNAPPY 压缩
* LZ4 压缩(最佳压缩方式
* LZ4 压缩(推荐压缩方式
* GZIP 压缩
* ZSTD 压缩
* LZMA2 压缩
Expand Down
Loading