Skip to content

Commit 3a79f48

Browse files
authored
Update concepts-performance-tuning.md
make last "Tips" list bulleted
1 parent b3e33e7 commit 3a79f48

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

articles/postgresql/hyperscale/concepts-performance-tuning.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -339,16 +339,16 @@ particularly the IOPS metric maxing out.
339339

340340
Tips:
341341

342-
1. If your data is naturally ordered, such as in a time series, use PostgreSQL
342+
- If your data is naturally ordered, such as in a time series, use PostgreSQL
343343
table partitioning. See [this
344344
guide](https://docs.citusdata.com/en/stable/use_cases/timeseries.html) to learn
345345
how to partition distributed tables in Hyperscale (Citus).
346346

347-
2. Remove unused indices. Index maintenance causes I/O amplification during
347+
- Remove unused indices. Index maintenance causes I/O amplification during
348348
ingestion. To find which indices are unused, use [this
349349
query](howto-useful-diagnostic-queries.md#identifying-unused-indices).
350350

351-
3. If possible, avoid indexing randomized data. For instance, some UUID
351+
- If possible, avoid indexing randomized data. For instance, some UUID
352352
generation algorithms follow no order. Indexing such a value causes a lot
353353
overhead. Try a bigint sequence instead, or monotonically increasing UUIDs.
354354

0 commit comments

Comments
 (0)