Why can’t I get a parallel plan when rebuilding my index?

In support, we frequently have customers who call us and want to find out why a particular query doesn’t use parallelism.  Recently, we had a user who wanted to know why his index rebuild didn’t use parallelism.  In some cases, NonParallelPlanReason in query plan tells you the reason. 

But in this case, the query plan just say “CouldNotGenerateValidParallelPlan” like <QueryPlan DegreeOfParallelism="0" NonParallelPlanReason="CouldNotGenerateValidParallelPlan" CachedPlanSize="184" CompileTime="2" CompileCPU="2" CompileMemory="512">.

Upon closer look, it’s customer’s data distribution.  Thought the index is a unique clustered index (primary key) with multiple key columns, the leading column has just one value.

https://technet.microsoft.com/en-us/library/ms189329(v=sql.120).aspx and https://technet.microsoft.com/en-us/library/ms191292(v=sql.105).aspx have documentation on how parallelism works with index operations.  On a very high level, the leading key of the index of non-partitioned tables need to have multiple distinct values in order for parallelism to work.  Essentially, each parallel thread gets a set of value ranges and work on them and later ‘merge’ them together.  So if you just have one value for the leading key column, only one thread can work on it.  In other words, you won’t get a parallel plan.

This customer wanted parallelism regardless.  So we did some testing to see if a parallel plan actually helps.  Even if you force a parallel plan, it won’t make your index rebuild (create) faster.  In the testing scenario, I first populated the leading column with lots of unique values.  I was able to get a parallel plan and then change the leading column to just one distinct value. The result is that parallel plan didn’t make it faster. 

Here were the steps to do it

  1. script out the statistics which have good data distribution with leading column being fairly unique. See https://support.microsoft.com/en-us/kb/914288 for more details
  2. Update the leading column with same value for all rows.
  3. update statistics scripted out form step 1 using UPDATE STATISTICS WITH STATS_STREAM =<binary value).   This would make optimizer thinks the leading column has lots of distinct values. 
  4. run index rebuild. Note that I did get a parallel plan. But index rebuild didn’t run any shorter.

From the actual execution plan, you can see why.  Below was the scan operation from the plan.  Note that only thread 1 did all the work of 2416640 rows. All other threads were doing nothing.

 

                   <RunTimeInformation>

                        <RunTimeCountersPerThread Thread="8" ActualRows="0" Batches="0" ActualExecutionMode="Row" ActualEndOfScans="1" ActualExecutions="1" />

                        <RunTimeCountersPerThread Thread="2" ActualRows="0" Batches="0" ActualExecutionMode="Row" ActualEndOfScans="1" ActualExecutions="1" />

                        <RunTimeCountersPerThread Thread="6" ActualRows="0" Batches="0" ActualExecutionMode="Row" ActualEndOfScans="1" ActualExecutions="1" />

                        <RunTimeCountersPerThread Thread="5" ActualRows="0" Batches="0" ActualExecutionMode="Row" ActualEndOfScans="1" ActualExecutions="1" />

                        <RunTimeCountersPerThread Thread="7" ActualRows="0" Batches="0" ActualExecutionMode="Row" ActualEndOfScans="1" ActualExecutions="1" />

                        <RunTimeCountersPerThread Thread="1" ActualRows="2416640" Batches="0" ActualExecutionMode="Row" ActualRowsRead="2416640" ActualEndOfScans="1" ActualExecutions="1" />

                        <RunTimeCountersPerThread Thread="4" ActualRows="0" Batches="0" ActualExecutionMode="Row" ActualEndOfScans="1" ActualExecutions="1" />

                        <RunTimeCountersPerThread Thread="3" ActualRows="0" Batches="0" ActualExecutionMode="Row" ActualEndOfScans="1" ActualExecutions="1" />

                        <RunTimeCountersPerThread Thread="0" ActualRows="0" ActualEndOfScans="0" ActualExecutions="0" />

                      </RunTimeInformation>

 

Another question is what is the usefulness of an index if leading column has just one value?  So slow rebuilding index won’t be the only problem to solve.

Demo

use master
go
create database testdb2
go
use testdb2
go
create table t (c1 int, c2 int, c3 int)

set nocount on
begin tran

declare @i int = 0
while @i < 10000000
begin
    insert into t values (@i, @i, @i)
    set @i = @i + 1
end
commit tran

go

create unique clustered index ix on t(c1,c2,c3)

go
--this will use parallel plan
ALTER INDEX ix on [dbo].t rebuild WITH (maxdop=10, online=on)

go
--set leading column as dup
update t set c1 = 1

go
update statistics t with fullscan
go
--this will use serial plan
ALTER INDEX ix on [dbo].t rebuild WITH (maxdop=10, online=on)

go
--dbcc show_statistics (t, ix)

 

 

Jack Li |Senior Escalation Engineer | Microsoft SQL Server

twitter| pssdiag |Sql Nexus