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
The Postgres Analytics Accelerator (PGAA) achieves its high performance by offloading analytical workloads to Seafowl and Apache Spark, a vectorized execution engine designed for massive scale. By understanding how PGAA selects execution paths, you can ensure your queries stay on the "fast path" for maximum acceleration.
Copy file name to clipboardExpand all lines: product_docs/docs/pgaa/1.7/monitoring.mdx
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -48,7 +48,7 @@ Analytical performance is heavily impacted by the "small file problem", where fr
48
48
49
49
### Performing table maintenance with pgaa.launch_task
50
50
51
-
Maintenance for both Delta and Iceberg tables is handled asynchronously by a native background worker using the `pgaa.launch_task()` function. This allows you to trigger heavy operations without blocking your active SQL session and does not require an external Spark integration.
51
+
Maintenance for both Delta and Iceberg tables is handled asynchronously by a native background worker using the `pgaa.launch_task()` function. This allows you to trigger heavy operations without blocking your active SQL session.
52
52
53
53
```sql
54
54
SELECTpgaa.launch_task(
@@ -59,7 +59,7 @@ SELECT pgaa.launch_task(
59
59
```
60
60
61
61
!!! Note
62
-
While Delta Lake supports all task types below, Iceberg tables currently only support the `compaction` operation via this function.
62
+
While Delta Lake supports all available task types, Iceberg tables currently only support the `compaction` operation. Furthermore, Iceberg compaction does not support the granular configuration keys available for Delta Lake, except for `dry_run`.
63
63
64
64
Supported task types include:
65
65
@@ -70,7 +70,7 @@ Supported task types include:
70
70
71
71
**Examples**
72
72
73
-
- Use compaction to merge small files into larger, 256MB blocks to speed up scan performance:
73
+
- Use compaction against a Delta Lake table to merge small files into larger, 256MB blocks to speed up scan performance:
0 commit comments