How can parallelism affect number of results? - Stack Overflow most recent 30 from stackoverflow.com2009-12-05T20:13:03Zhttp://stackoverflow.com/feeds/question/844261http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/844261/how-can-parallelism-affect-number-of-results1How can parallelism affect number of results?spender2009-05-09T23:00:30Z2009-05-12T06:16:52Z
<p>I have a fairly complex query that looks something like this:</p>
<pre><code>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)
</code></pre>
<p>The query is such that <strong>cte3</strong> is filled with <strong>6222</strong> <em>distinct</em> results. In the final <strong>select</strong>, I am performing a cross join on <strong>cte3</strong> 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 : </p>
<pre><code>option (maxdop 1)
</code></pre>
<p>Apparently, this switches off parallelism.</p>
<p>So, with <strong>6222</strong> results rows in <strong>cte3</strong>, I would expect (6222*6221)/2, or <strong>19353531</strong> results in the subsequent cross joining select, and with the final <strong>maxdop</strong> line in place, that is indeed the case.</p>
<p>However, when I remove the <strong>maxdop</strong> line, the number of results jumps to <strong>19380454</strong>. I have 4 cores on my dev box.</p>
<p>WTF? Can anyone explain why this is? Do I need to reconsider previous queries that cross join in this way?</p>
http://stackoverflow.com/questions/844261/how-can-parallelism-affect-number-of-results/844594#8445940Answer by JohnOpincar for How can parallelism affect number of results?JohnOpincar2009-05-10T02:59:33Z2009-05-10T02:59:33Z<p>Aside from a bug, parallelism should not affect the result.</p>
http://stackoverflow.com/questions/844261/how-can-parallelism-affect-number-of-results/844608#8446080Answer by Mitch Wheat for How can parallelism affect number of results?Mitch Wheat2009-05-10T03:10:58Z2009-05-10T03:10:58Z<p>Assuming there is no other activity on those tables (i.e. INSERT/UPDATE/DELETE) then it definitely looks like a bug.</p>
<p>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.</p>
http://stackoverflow.com/questions/844261/how-can-parallelism-affect-number-of-results/845001#8450010Answer by gbn for How can parallelism affect number of results?gbn2009-05-10T09:25:22Z2009-05-12T06:16:52Z<p>Looks like there is a similar parallism bug with <a href="https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=328811" rel="nofollow">SCOPE_IDENTITY</a> too</p>
<p>Or are you using <a href="http://connect.microsoft.com/SQL/feedback/ViewFeedback.aspx?FeedbackID=384262" rel="nofollow">snaphot isolation</a>, another bug too? There are also some blogs that demonstrate snapshot isolation being turned off temporarily under certain conditions.</p>
<p>Edit:</p>
<p>Going back to Snapshot isolation, number 3 here: <a href="http://sqlblog.com/blogs/aaron%5Fbertrand/archive/2009/03/21/six-reasons-you-should-be-nervous-about-parallelism.aspx" rel="nofollow">Six reasons you should be nervous about parallelism</a></p>