|
Comments
|
|
Would be nice to tell how to stop if you don't want it and how to tell when it is faster or slower. But still a good topic
|
|
|
Either change the max degree of parallelism to something other than 0, 1 to shut it down completely, or change the cost threshold higher than the default value of 5.
Another good idea for a video.
|
|
|
Good video Grant. I might also add that this can be set at te server level (Properties|Advanced), Table level (ALTER TABLE) ad also at the query hint level (MAXDOP). But, as Grant points out in this video there is a cost factor involved in doing this so you have to weigh using this for small to medium-sized recordsets against this cost. <ost small to midsized OLTP tables do not tend to benefit as much from using this option (although there is nothing stopping you from using it) as much as Data Warehouse tbles do where recordsets can regularly be extremely enormous in size. This is where using Maximum Degree of parellism reallt shines!
|
|
|
The volume was extremely low. It was also very quick in its explanation. I spent most of my time restarting the video.
|
|
|
First statement is incorrect - MAXDOP=1 - forces all query plans to be sequential (not parallel). Assume you meant MAXDOP=0. I think the key thing to emphasize for parallel queries is that it is intended to deliver the results in a shorter elapsed time, using more resources (cpu, memory) than the sequential plan.
|
|
|
MAXDOP = 0 is the default which uses all available processors. MAXDOP = 1 shuts it down as Grant already stated...
|
|
|
My first statement wasn't that the MAXDOP was equal to 1 but that the parallelism threshold was set to 1. That means any query with an estimated cost greater than 1 would result in a parallel plan if the MAXDOP was set to either 0 or greater than 1. I think the sound was a bit off on that one, leading to the confusion.
|
|
|
Excellent video!!! Straight to the point!
|
|
|
I continue to be impressed by the information that Grant provides within these videos as well as his books...His Apress Query Performance book is one of the best I have read.
|
|
|
The video didn't have much introduction, but the topic was very good.
|