Skip to content

Commit

Permalink
fix: term
Browse files Browse the repository at this point in the history
  • Loading branch information
killme2008 committed Jul 17, 2024
1 parent 481de66 commit c8e1ff7
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions docs/nightly/en/user-guide/logs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,11 @@ From the table structure, you can see that the `origin_logs` table has only two
with the entire log message stored in a single column.
The `pipeline_logs` table stores the log message in multiple columns.

It is recommended to use the pipeline method to split the log message into multiple columns, which offers the advantage of explicitly querying specific values within certain columns. Tag matching queries proves superior to full-text searching for several key reasons:
It is recommended to use the pipeline method to split the log message into multiple columns, which offers the advantage of explicitly querying specific values within certain columns. Tag matching query proves superior to full-text searching for several key reasons:

- **Performance Efficiency**: tag matching queries are typically faster than full-text searching.
- **Resource Consumption**: Due to GreptimeDB's columnar storage engine, structured data is more conducive to compression. Additionally, the inverted index used for tag matching queries typically consumes significantly fewer resources than a full-text index, especially in terms of storage size.
- **Maintainability**: tag matching queries are straightforward and easier to understand, write, and debug.
- **Performance Efficiency**: tag matching query is typically faster than full-text searching.
- **Resource Consumption**: Due to GreptimeDB's columnar storage engine, structured data is more conducive to compression. Additionally, the inverted index used for tag matching query typically consumes significantly fewer resources than a full-text index, especially in terms of storage size.
- **Maintainability**: tag matching query are straightforward and easier to understand, write, and debug.

Of course, if you need keyword searching within large text blocks, you must use full-text searching as it is specifically designed for that purpose.

Expand Down
8 changes: 4 additions & 4 deletions docs/v0.9/en/user-guide/logs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,11 +172,11 @@ From the table structure, you can see that the `origin_logs` table has only two
with the entire log message stored in a single column.
The `pipeline_logs` table stores the log message in multiple columns.

It is recommended to use the pipeline method to split the log message into multiple columns, which offers the advantage of explicitly querying specific values within certain columns. Tag matching queries proves superior to full-text searching for several key reasons:
It is recommended to use the pipeline method to split the log message into multiple columns, which offers the advantage of explicitly querying specific values within certain columns. Tag matching query proves superior to full-text searching for several key reasons:

- **Performance Efficiency**: tag matching queries are typically faster than full-text searching.
- **Resource Consumption**: Due to GreptimeDB's columnar storage engine, structured data is more conducive to compression. Additionally, the inverted index used for tag matching queries typically consumes significantly fewer resources than a full-text index, especially in terms of storage size.
- **Maintainability**: tag matching queries are straightforward and easier to understand, write, and debug.
- **Performance Efficiency**: tag matching query is typically faster than full-text searching.
- **Resource Consumption**: Due to GreptimeDB's columnar storage engine, structured data is more conducive to compression. Additionally, the inverted index used for tag matching query typically consumes significantly fewer resources than a full-text index, especially in terms of storage size.
- **Maintainability**: tag matching query are straightforward and easier to understand, write, and debug.

Of course, if you need keyword searching within large text blocks, you must use full-text searching as it is specifically designed for that purpose.

Expand Down

0 comments on commit c8e1ff7

Please sign in to comment.