Skip to content

Commit 7c7e31a

Browse files
Update best-practices-serverless-sql-pool.md
1 parent 7c94e45 commit 7c7e31a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

articles/synapse-analytics/sql/best-practices-serverless-sql-pool.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,12 @@ Query performance of Delta Lake format is influenced by the number of JSON files
9090

9191
A balanced approach is to maintain around 10 JSON files between checkpoints, which typically offers good performance for both readers and writers. Be cautious of configurations that delay checkpoint creation, as they can lead to excessive JSON file accumulation and degrade query performance.
9292

93+
Set the following table property to ensure a checkpoint is created after every 10 JSON log files:
94+
95+
```sql
96+
ALTER TABLE tableName SET TBLPROPERTIES ('delta.checkpointInterval' = '10')
97+
```
98+
9399
## Data types
94100

95101
Here are best practices for using data types in serverless SQL pool.

0 commit comments

Comments
 (0)