You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/guides/developer/index.md
+3-2Lines changed: 3 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,8 +17,9 @@ This section contains the following advanced guides:
17
17
|[Cascading Materialized Views](../developer/cascading-materialized-views)| A guide on how to create Materialized Views and cascade them together, combine multiple source tables into a single destination table. Contains an example of using cascading materialized views to aggregate data by month and year for a group of domain names. |
18
18
|[Debugging memory issues](../developer/debugging-memory-issues)| A guide on how to debug memory issues within ClickHouse. |
19
19
|[Deduplicating Inserts on Retries](../developer/deduplicating-inserts-on-retries)| A guide on how to handle situations where you might retry failed inserts. |
20
-
|[Deduplication Strategies](../developer/deduplication)| A guide which dives into data deduplication, a technique for removing duplicate rows from your database. Explains differences from primary key-based deduplication in OLTP systems, ClickHouse's approach to deduplication and how to handle duplicate data scenarios within your ClickHouse queries. |
20
+
|[Deduplication strategies](../developer/deduplication)| A guide which dives into data deduplication, a technique for removing duplicate rows from your database. Explains differences from primary key-based deduplication in OLTP systems, ClickHouse's approach to deduplication and how to handle duplicate data scenarios within your ClickHouse queries. |
21
21
|[Filling gaps in time-series data](../developer/time-series-filling-gaps)| A guide which provides insights into ClickHouse's capabilities for handling time-series data, including techniques for filling gaps in data to create a more complete and continuous representation of time-series information. |
22
22
|[Manage Data with TTL (Time-to-live)](../developer/ttl)| A guide discussing how to use the `WITH FILL` clause to fill gaps in time-series data. It covers how to fill gaps with 0 values, how to specify a starting point for filling gaps, how to fill gaps up to a specific end point, and how to interpolate values for cumulative calculations. |
23
-
|[Understanding Query Execution with the Analyzer](../developer/understanding-query-execution-with-the-analyzer)| A guide which demystifies ClickHouse query execution by introducing the analyzer tool. It explains how the analyzer breaks down a query into a series of steps, allowing you to visualize and troubleshoot the entire execution process for optimal performance. |
23
+
|[Stored procedures & query parameters](../developer/stored-procedures-and-prepared-statements)| A guide explaining that ClickHouse does not support traditional stored procedures, and provides recommended alternatives including User-Defined Functions (UDFs), parameterized views, materialized views, and external orchestration. Also covers query parameters for safe parameterized queries (similar to prepared statements). |
24
+
|[Understanding query execution with the Analyzer](../developer/understanding-query-execution-with-the-analyzer)| A guide which demystifies ClickHouse query execution by introducing the analyzer tool. It explains how the analyzer breaks down a query into a series of steps, allowing you to visualize and troubleshoot the entire execution process for optimal performance. |
24
25
|[Using JOINs in ClickHouse](../joining-tables)| A guide that simplifies joining tables in ClickHouse. It covers different join types (`INNER`, `LEFT`, `RIGHT`, etc.), explores best practices for efficient joins (like placing smaller tables on the right), and provides insights on ClickHouse's internal join algorithms to help you optimize your queries for complex data relationships. |
0 commit comments