vote up 1 vote down star
1

I have a fairly complex query that looks something like this:

create table Items(SomeOtherTableID int,SomeField int)
create table SomeOtherTable(Id int,GroupID int)
with cte1 as
(
	select 
		SomeOtherTableID,COUNT(*) SubItemCount 
	from 
		Items t 
	where 
		t.SomeField is not null 
	group by 
		SomeOtherTableID

),cte2 as
(
	select
		tc.SomeOtherTableID,ROW_NUMBER() over (partition by a.GroupID order by tc.SubItemCount desc) SubItemRank
	from 
		Items t
		inner join SomeOtherTable a on a.Id=t.SomeOtherTableID 
		inner join cte1 tc on tc.SomeOtherTableID=t.SomeOtherTableID
	where 
		t.SomeField is not null 

),cte3 as
(
	select 
		SomeOtherTableID 
	from 
		cte2 
	where 
		SubItemRank=1
)
select 
	* 
from 
	cte3 t1 
	inner join cte3 t2 on t1.SomeOtherTableID<t2.SomeOtherTableID 
option (maxdop 1)

The query is such that cte3 is filled with 6222 distinct results. In the final select, I am performing a cross join on cte3 with itself, (so that I can compare every value in the table with every other value in the table at a later point). Notice the final line :

option (maxdop 1)

Apparently, this switches off parallelism.

So, with 6222 results rows in cte3, I would expect (6222*6221)/2, or 19353531 results in the subsequent cross joining select, and with the final maxdop line in place, that is indeed the case.

However, when I remove the maxdop line, the number of results jumps to 19380454. I have 4 cores on my dev box.

WTF? Can anyone explain why this is? Do I need to reconsider previous queries that cross join in this way?

flag

Have you looked at the set difference to see what rows are in set 2 that are not in set 1? – JP May 9 at 23:05
set 1, set 2? Do you mean cte1 and cte2? If so, the final join is only on cte3, which has a single field of distinct results (I have checked), so what goes on in cte1 and cte2 shouldn't matter right? – spender May 9 at 23:12
No, sorry, what I mean is result set. You get two different results, I'm wondering what extra rows are in the result when you turn maxdop off. It might give you a clue as to what is happening. – JP May 9 at 23:20
Kind of tricky with 19 million results in memory because I don't have enough memory for both result sets. Of course, inserting cte3 into a declared table and using that 2nd table works as expected. – spender May 9 at 23:40
Is it consistently reproducable with and without MAXDOP every single time? What about MAXDOP 2? – gbn May 10 at 5:52
show 2 more comments

3 Answers

vote up 0 vote down check

Aside from a bug, parallelism should not affect the result.

link|flag
vote up 0 vote down

Looks like there is a similar parallism bug with SCOPE_IDENTITY too

Or are you using snaphot isolation, another bug too? There are also some blogs that demonstrate snapshot isolation being turned off temporarily under certain conditions.

Edit:

Going back to Snapshot isolation, number 3 here: Six reasons you should be nervous about parallelism

link|flag
vote up 0 vote down

Assuming there is no other activity on those tables (i.e. INSERT/UPDATE/DELETE) then it definitely looks like a bug.

A possible culprit looks like the ROW_NUMBER() function. Can you check that cte2 has the same number of rows in both cases. If you can narrow it down a bit, I would definitely post this to Microsoft's connect.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.