-
Notifications
You must be signed in to change notification settings - Fork 692
Open
Labels
type/featureType: New feature.Type: New feature.
Milestone
Description
Is your feature request related to a problem? Please describe.
It is currently possible to set the parallelism at the materialized view level. We can set a fixed value but all fragments will have the same parallelism. However some fragment could need more parallelism than others.
The adaptive value seem to try to balance the fragments but it is not very clear how it do it and give less control and predictability.
Describe the solution you'd like
-- First set parallelism 8 for all fragments of the MV
ALTER MATERIALIZED VIEW foo SET parallelism = 8;
-- Then alter a specific fragment
ALTER FRAGMENT 123 SET PARALLELISM = 16;
Describe alternatives you've considered
No response
Additional context
No response
Metadata
Metadata
Assignees
Labels
type/featureType: New feature.Type: New feature.