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/preview/guides/performance/my_workload_is_slow.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ title: My Workload Is Slow
5
5
6
6
If you find that your workload in DuckDB is slow, we recommend performing the following checks. More detailed instructions are linked for each point.
7
7
8
-
1. Do you have enough memory? DuckDB works best if you have [5-10 GB memory per CPU core]({% link docs/preview/guides/performance/environment.md %}#cpu-and-memory).
8
+
1. Do you have enough memory? DuckDB works best if you have [1-4 GB memory per thread]({% link docs/preview/guides/performance/environment.md %}#cpu-and-memory).
9
9
1. Are you using a fast disk? Network-attached disks (such as cloud block storage) cause write-intensive and [larger than memory]({% link docs/preview/guides/performance/how_to_tune_workloads.md %}#spilling-to-disk) workloads to slow down. For running such workloads in cloud environments, it is recommended to use instance-attached storage (NVMe SSDs).
10
10
1. Are you using indexes or constraints (primary key, unique, etc.)? If possible, try [disabling them]({% link docs/preview/guides/performance/schema.md %}#indexing), which boosts load and update performance.
11
11
1. Are you using the correct types? For example, [use `TIMESTAMP` to encode datetime values]({% link docs/preview/guides/performance/schema.md %}#types).
0 commit comments