Vous êtes sur la page 1sur 26

Package Performance

Tuning Packages for Optimal Performance


Stacia Misner
blog.datainspirations.com
smisner@datainspirations.com

Overview

Pipeline Buffer Architecture


Execution Trees and Execution Threads
Package Performance Optimization
Performance Monitoring

Pipeline Buffer Architecture


Buffer

Whalen, Garcia, Patel, Misner, Isakov, Microsoft SQL Server 2005 Administrators Companion (Microsoft Press, 2007)

Buffers
Location of BLOB data types
storage in buffer not BLOB
DT_WSTR
50

DT_I4
4

100

DT_WSTR
25

50

DT_BOOL DT_BOOL

+ 1

+ 1

DT_WSTR
15

+ 30

+ 2

DT_I2
2

DT_I2
2

DT_CY
8

+ 2

+ 8

Column widths affect physical buffer size


201 bytes

10,000

Estimated Row Size

DefaultMaxBufferRows

= 2MB

< DefaultMaxBufferSize (10MB)

DT_CY
8

+ 8

= 201
bytes

Buffers
Row 1

x
x
x
x
.
.
.
x

xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

x
x
x
x
.
.
.
x

x
x
x
x
.
.
.
x

xxxxx
xxxxx
xxxxx
xxxxx
.
.
.
xxxxx

xxx
xxx
xxx
xxx
.
.
.
xxx

xxx
xxx
xxx
xxx
.
.
.
xxx

xxx
xxx
xxx
xxx
.
.
.
xxx

xxxx
xxxx
xxxx
xxxx
.
.
.
xxxx

x
x
x
x
.
.
.
Row
100,000 x

xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

x
x
x
x
.
.
.
x

x
x
x
x
.
.
.
x

xxxxx
xxxxx
xxxxx
xxxxx
.
.
.
xxxxx

xxx
xxx
xxx
xxx
.
.
.
xxx

xxx
xxx
xxx
xxx
.
.
.
xxx

xxx
xxx
xxx
xxx
.
.
.
xxx

xxxx
xxxx
xxxx
xxxx
.
.
.
xxxx

Row
50,000
Row
50,001

To a maximum of 5 buffers receiving data from a source

Non-Blocking Streaming Transformations


Lookup (full cache)
Multicast
Percent Sampling
Row Count
Script Component
(without asynchronous output)

Audit
Character Map
Conditional Split
Copy Column
Data Conversion
Derived Column

x
x
x
x
.
.
.
x

xxxxxxx
ccccccc
xxxxxxx
ccccccc
ccccccc
xxxxxxx
ccccccc
xxxxxxx
.
.
.
xxxxxxx
ccccccc

xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

x
x
x
x
.
.
.
x

x
x
x
x
.
.
.
x

These transforms
operate on the same buffer
from start to finish

Non-Blocking Row-Based Transformations


OLE DB Command
Script (with external interaction)
Slowly Changing Dimension

Export Column
Import Column
Lookup (no cache or partial cache)

Lookup
Col A
x
x
x
x
.
.
.
x

Col B
xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

Col C
xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

Col D
c
c
c
c
.
.
.
c

OLE DB
Command

Col E
x
x
x
x
.
.
.
x

These transforms
operate row by row
but cant work on same
buffer simultaneously

Partially-Blocking Transformations
Term Lookup
Unpivot
Union All

Data Mining Query


Merge
Merge Join
Pivot
Col A
D
x
x
x
x
.
.
.
x

Col B

Col C

xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

Col A

Col

Col E

x
x
x
x
.
.
.
x

x
x
x
x
.
.
.
x

x
x
x
x
.
.
.
x

Merge Join
Col A
x
x
x
x
.
.
.
x

Col B
xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

Col C
xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

Col D
x
x
x
x
.
.
.
x

Col E
x
x
x
x
.
.
.
x

Partially-blocking
transforms
might wait on other
inputs and always
produce new buffer

Blocking Transformations
Sort
Term Extraction
Script Component (if code must read all rows)

Aggregate
Fuzzy Grouping
Fuzzy Lookup
Row Sampling
Col A
D
x
x
x
x
.
.
.
x

Col B

Col C

xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

xxxxxxx
xxxxxxx
xxxxxxx
xxxxxxx
.
.
.
xxxxxxx

Col
x
x
x
x
.
.
.
x

Aggregate
Col A
x
x

Col D
x
x

These transforms
stop pipeline until all rows read
and always produce new buffer

Synchronous versus Asynchronous Outputs


Non-blocking

Synchronous
Operate
on
Same buffer

Asynchronous

Buffer 0

Partially blocking
Blocking

Output into
Buffer 1 New buffer

Buffer 0
Buffer 2

Input rows
=
Output rows

Buffer 0
Buffer 1

Input rows
<>
Output rows
(usually)

Execution Trees

Tree 2
Tree 3

Tree 1

Tree 0

Execution Trees

Tree 1

Buffer size =
greatest number of columns x data length
at any point in execution tree

Execution Threads

Tree 2
Tree 3

Tree 1

Tree 0

Thread 0
Thread 1
Thread 2

Thread 3
Thread 4
Thread 5

Increase parallelism by increasing EngineThreads value


(Data Flow Task property)
Minimum: # of Execution Trees + Sources

Performance Optimization: Buffer Sizing


Data Flow Task Properties
Estimated
Row
x
Size
Is EBS
> 65,536 bytes (min)
and
< DefaultBufferSize?

Estimated
Max
Buffer
=
Buffer
Size
Rows
(EBS)

Yes

Actual Buffer Size


=
Multiple of 65,536 bytes

Yes

Fewer rows per buffer,


More buffers

No
Is EBS
> DefaultBufferSize?

No
Is EBS
< 65,536 bytes?

Yes

More rows per buffer

Performance Optimization: Buffer Sizing

Reduce the number of columns and use smallest data types possible

Use query conversions to reduce data length


if possible

Warnings alert you to unused columns in data flow

Performance Optimization: Buffer Sizing

Log package with BufferSizeTuning to see adjustment of buffers

Log the data flow task

User:BufferSizeTuning
DFT Transform-Load
Rows in buffer type 5 would cause a buffer size greater than the configured
maximum.
There will be only 15065 rows in buffers of this type.

Package Performance: Parallelism

Increase MaxConcurrentExecutables on dedicated machine

-1 = Number of processors +2

Use parallel pipelines in data flow with separate data sets

Package Performance: Transformations


Choose transformations carefully
Best choice: Non-blocking

Audit
Character Map
Conditional Split
Copy Column
Data Conversion
Derived Column

Lookup (full cache)


Multicast
Percent Sampling
Row Count
Script Component
(without asynchronous output)

Reduce rows with Conditional Split where possible

Optimize the Lookup cache

Package Performance: Sources


Data Access Mode: SQL Command for relational sources

Uses sp_executesql
(faster than OPENROWSET)

FastParse for flat file sources

Use for when data types


Not required to be locale-specific

Package Performance: OLE DB Destinations

Bulk insert with Fast Load option

Table lock performs faster

Clustered index?
Set rows per batch for faster inserts
Or
Drop the index, load rows, and rebuild index

Performance Monitoring: Memory


Page Reads/sec > 500
= memory pressure

Performance Monitoring: CPU

Performance Monitoring: Network

Performance Monitoring: Integration Services

Summary
Pipeline Buffers

Buffers, transformations, synchronous and asynchronous outputs

Execution Trees and Execution Threads

Asynchronous output starts new execution tree and allocation of at least


one thread

Package Performance Optimization

Buffer size, parallelism, transformation selection, and adapter optimization


(sources, destinations)

Performance Monitoring

Memory, CPU, network, Integration Services buffers (especially buffer spool)

Resources
Top 10 SQL Server Integration Services Best Practices

http://tinyurl.com/7hasrbm

Integration Services: Performance Tuning Techniques

http://tinyurl.com/lzaeszr

Integration Services Performance Counters

http://tinyurl.com/lk57stq

Vous aimerez peut-être aussi