21
TPump After completing this module, you will be able to: State the capabilities and limitations of TPump. Describe TPump commands and parameters. Prepare a TPump script.

6.4 Tpump

Embed Size (px)

Citation preview

Page 1: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 1/21

TPump

After completing this module, you will be able to:

• State the capabilities and limitations of TPump.

• Describe TPump commands and parameters.

• Prepare a TPump script.

Page 2: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 2/21

TPump

• Allows near real-time updates from transactional systems into the warehouse.

• Performs INSERT, UPDATE, and DELETE operations, or a combination, from the same

source. Up to 63 DML statements can be included for one IMPORT task.

• Alternative to MultiLoad for low-volume batch maintenance of large databases;

replacement for BulkLoad.

• Allows target tables to:

 – Have secondary indexes and Referential Integrity constraints.

 – Be MULTISET or SET.

 – Be populated or empty.

 – Have triggers - invoked as necessary

• Allows conditional processing.

• Supports automatic restarts; uses Support Environment.

• No session limit — use as many sessions as necessary.

• No limit to the number of concurrent instances.

• Uses row-hash locks, allowing concurrent updates on the same table.

• Can always be stopped and locks dropped with no ill effect.

• Designed for highest possible throughput.

• User can specify how many updates occur minute by minute; can be changed as the

 job runs.

Page 3: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 3/21

TPump Limitations

• Use of SELECT is not allowed.

• Concatenation of data files is not supported.

• Exponential operators are not allowed.

• Aggregate operators are not allowed.

• Arithmetic functions are not supported.

• There is a limit of four IMPORT commands within a single TPump "load" task.

• In using TPump with dates before 1900 or after 1999, the year portion of the

date must be represented by four numerals (yyyy).

 – The default of two numerals (yy) to represent the year is interpreted to be the 20th

century. – The correct date format must be specified at the time of table creation.

Page 4: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 4/21

.BEGIN LOAD Statement

Many of the .BEGIN parameters are comparable to those for MultiLoad.

.BEGIN LOAD

SESSIONS max  [min] (required)

ERRORTABLE tablename (defaults to jobname_ET)ERRLIMIT errcount  [errpercent ]

CHECKPOINT frequency  (default is 15 minutes)

TENACITY hours (default is 4)

SLEEP minutes (default is 6)

However, TPump has numerous parameters on the .BEGIN LOAD statement

that are unique to TPump.

SERIALIZE ON | OFF  (default ON if UPSERT)

PACK number  (default is 20, max is 600)

PACKMAXIMUM (use maximum pack factor)

RATE number  (default is unlimited)

LATENCY number  (range is 10 – 600 seconds)

NOMONITOR (default is monitoring on)ROBUST ON | OFF  (default is ON)

MACRODB dbname (default is logtable dbase) ;

Page 5: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 5/21

TPump Specific Parameters

Specific TPump .BEGIN LOAD parameters are:

SERIALIZE ON | OFF  ON guarantees that operations on a given key combination

(row) occur serially. Used only when a primary index is

specified. KEY option must be specified if SERIALIZE ON.

PACK statements Number of statements to pack into a multiple-statement request.

RATE rate If the statement rate is zero or unspecified, the rate is unlimited.

LATENCY seconds # of seconds before a partial buffer is sent to the database.

NOMONITOR Prevents TPump from checking for statement rate changes from

or update status information for the TPump Monitor.

ROBUST ON | OFF  OFF signals TPump to use “simple” restart logic; TPump will

begin where the last checkpoint occurred.

MACRODB dbname Indicate a database to contain any macros used by TPump.

Page 6: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 6/21

.BEGIN LOAD – PACK 

• PACK specifies the number of statements to pack into a multi-statement

request.

• Improves network/channel efficiency by reducing the number of sends and

receives between the application and Teradata.

• Increasing the PACK rate improves throughput performance – to a certain

level.

• Restrictions to consider:

 – 64K message size limit

 –

TPump limit of 600 statements – Teradata USING clause limit of 2560 columns (from 507)

 – Teradata Plastic Steps limit

Page 7: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 7/21

.BEGIN LOAD – SERIALIZE OFF

• With SERIALIZE OFF, transactions are processed in the order they are encountered and

placed in the first available buffer. Buffers are sent to PE sessions and different PEs

process the data independently of other PEs.

• SERIALIZE OFF does not guarantee the order in which transactions are processed.

Transaction

File

PI Time01 8:00

03 8:01

02 8:02

01 8:03

04 8:0405 8:05

03 8:06

01 8:07

08 8:08

06 8:09

07 8:1001 8:11

03 8:12

02 8:13

Session 1

01 8:00

03 8:01

02 8:02

01 8:03

08 8:08

06 8:09

07 8:10

01 8:11

Session 2

04 8:04

05 8:05

03 8:06

01 8:07

03 8:12

02 8:13

AMP

0

AMP

1

AMP

2

AMP

3

AMP

N

AMP

TPump

Buffers

01 8:0003 8:01

02 8:02

01 8:03

04 8:04

05 8:0503 8:06

01 8:07

08 8:08

06 8:09

07 8:10

01 8:11

:

: Teradata

This set of transactions

may be processed first.

Page 8: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 8/21

.BEGIN LOAD – SERIALIZE ON

• SERIALIZE ON can eliminate lock delays or potential deadlocks caused by primary index

collisions, improving performance.

• SERIALIZE guarantees both input record order and all records with the same PI value

will be handled in the same session. It is recommended to specify the PI in the

statement column(s) as KEY.

• KEY Fields determine the PE session in which TPump send the transaction to.

Transaction

File

PI Time01 8:00

03 8:01

02 8:02

01 8:03

04 8:0405 8:05

03 8:06

01 8:07

08 8:08

06 8:09

07 8:1001 8:11

03 8:12

02 8:13

Session 1

01 8:00

02 8:02

01 8:03

01 8:07

08 8:08

06 8:09

01 8:11

02 8:13

Session 2

03 8:01

04 8:04

05 8:05

03 8:06

07 8:10

03 8:12

AMP

0

AMP

1

AMP

2

AMP

3

AMP

N

AMP

TPump

Buffers

01 8:0002 8:02

01 8:03

01 8:07

03 8:01

04 8:0405 8:05

03 8:06

08 8:08

06 8:09

01 8:11

02 8:13

:

: Teradata

Page 9: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 9/21

.BEGIN LOAD – ROBUST ON

• ROBUST ON is the default for all TPUMP jobs.

• This option avoids re-applying rows that have already been processed in the

event of a restart.

• Causes a row to be written to the log table each time a buffer has successfully

completed its updates.

 – The larger the TPump PACK factor, the less overhead involved in this activity.

•These rows are deleted from the log when a checkpoint is taken.

• ROBUST ON is recommended for these specific conditions:

 – INSERTS into multi-set tables, as such tables will allow re-insertion of the same

rows multiple times.

 – When UPDATEs are based on calculations or percentage increases.

 – If PACK factors are large, and applying and rejecting duplicates after a restart

would be time-consuming.

 – If data is time-stamped at the time it is inserted into the database.

• ROBUST ON is always a good idea for TPump jobs that read from queues. It

keeps duplicates from being re-inserted into the table in the event of a restart.

Page 10: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 10/21

Sample TPump Script (1 of 2)

.LOGTABLE restart_log_tpp;

.LOGON tdpid/username,password;

.BEGIN LOAD SESSIONS 4 SERIALIZE OFF

PACK 40 RATE 4800

ERRORTABLE Errors_tpp ERRLIMIT 50 ;

.LAYOUT layout12;.FIELD table_code 1 CHAR(1);

.FIELD A_Account_Number 2 INTEGER;

.FIELD A_Number * INTEGER;

.FIELD A_Street * CHAR(25);

.FIELD A_City * CHAR(20);.FIELD A_State * CHAR(2);

.FIELD A_Zip_Code * INTEGER;

.FIELD A_Balance_Forward * DECIMAL(10,2);

.FIELD A_Balance_Current * DECIMAL (10,2);

.FIELD C_Customer_Number 2 INTEGER;

.FIELD C_Last_Name * CHAR(30);

.FIELD C_First_Name * CHAR(20);

.FIELD C_Social_Security * INTEGER;

.FIELD T_Trans_Number 2 INTEGER;

.FIELD T_Trans_Date * CHAR(10);

.FIELD T_Account_Number * INTEGER;

.FIELD T_Trans_ID * CHAR(4);

.FIELD T_Trans_Amount * DECIMAL(10,2);

Page 11: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 11/21

Sample TPump Script (2 of 2)

.DML LABEL lns_Account;

INSERT INTO Accounts (account_number, number, street, city, state, zip_code, balance_forward,

balance_current )

VALUES ( :A_Account_Number, :A_Number, :A_Street, :A_City, :A_State, :A_Zip_Code,

:A_Balance_Forward, :A_Balance_Current );

.DML LABEL lns_Trans;

INSERT INTO Trans (trans_number, trans_date, account_number, trans_id, trans_amount)

VALUES ( :T_Trans_Number, :T_Trans_Date, :T_Account_Number, :T_Trans_Id, :T_Trans_Amount );

.DML LABEL lns_Customer;

INSERT INTO Customer (customer_number, last_name, first_name, social_security)VALUES ( :C_Customer_Number, :C_Last_Name, :C_First_Name, :C_Social_Security);

.IMPORT INFILE datafile1 LAYOUT layout12

APPLY lns_Account WHERE table_code = 'A'

APPLY lns_Trans WHERE table_code = 'T'APPLY lns_Customer WHERE table_code = 'C';

.IMPORT INFILE datafile2 LAYOUT layout12

APPLY lns_Account WHERE table_code = 'A'

APPLY lns_Trans WHERE table_code = 'T'

APPLY lns_Customer WHERE table_code = 'C';

.END LOAD;

.LOGOFF;

Page 12: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 12/21

TPump Compared with MultiLoad

• MultiLoad performance improves as the volume of changes increases.

• TPump does better on relatively low volumes of changes.

• TPump improves performance via a multiple statement request.

• TPump uses macros to modify tables rather than the actual DMLcommands.

Ex. of macro name - M2000216_105642_01_0001

•MultiLoad uses the DML statements.

• TPump uses row hash locking to allow for concurrent read and write access

to target tables. It can be stopped with target tables fully accessible.• In Phase 4, MultiLoad locks tables for write access until it completes.

Page 13: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 13/21

Additional TPump Statements

DATABASE Changes the default database qualification for all DML statements.

EXEC(UTE) Specifies a user-created macro for execution. The macro named is

resident in the Teradata database.

EXECUTE [database.]macro_name UPDATE/UPD

INSERT/INS ;DELETE/DEL

UPSERT/UPS

DATABASE database ;

Commands and statements in common with MultiLoad:

ACCEPT IMPORT RUN

DELETE INSERT SET

DISPLAY LAYOUT SYSTEM

DML LOGON TABLEFIELD LOGOFF UPDATE

FILLER LOG

IF / ELSE / ENDIF ROUTE

Page 14: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 14/21

TPump Statistics

. IMPORT 1 Total thus far  

. ========= ===========

Candidate records considered:.....… 200 200

Apply conditions satisfied:.......… 200 200

Candidate records not applied:....... 0 0

Candidate records rejected:.......... 0 0

** Statistics for Apply Label : UPS_ACCOUNT

Type Database Table or Macro Name Activity

U TLJC25 Accounts 100

I TLJC25 Accounts 100

**** 17:33:50 UTY0821 Error table TLJC25.errtable_tpp is EMPTY, dropping table.

0018 .LOGOFF;

====================================================================== == Logoff/Disconnect == ======================================================================

**** 17:34:08 UTY6216 The restart log table has been dropped.

**** 17:34:08 UTY6212 A successful disconnect was made from the RDBMS.

**** 17:34:08 UTY2410 Total processor time used = '2.43 Seconds'. Start : 17:33:13 - TUE MAY 06, 2003

. End : 17:34:08 - TUE MAY 06, 2003

. Highest return code encountered = '0'.

Note: These

statistics are not for 

the example TPump job shown earlier in

this module.

Page 15: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 15/21

TPump Monitor 

Tool to control and track TPump imports.

• The table SysAdmin.TPumpStatusTbl is updated once a minute.

• Alter the statement rate on an import by updating this table using

macros.• Use macros and views to access this table.

DBA Tools

View

• SysAdmin.TPumpStatus - view allows DBAs to view all of the TPump jobs.

Macro

• SysAdmin.TPumpUpdateSelect - allows DBAs to manage individual TPump jobs.

User Tools

View

• SysAdmin.TPumpStatusX - allows users to view their own TPump jobs.

Macro

• TPumpMacro.UserUpdateSelect - allows users to manage their own jobs.

Page 16: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 16/21

Application Utility Checklist

Feature BTEQ FastLoad FastExport MultiLoad TPump

DDL Functions ALL LIMITED No ALL ALL

DML Functions ALL INSERT SELECT INS/UPD/DEL INS/UPD/DEL

Multiple DML Yes No Yes Yes  Yes

Multiple Tables Yes No Yes Yes  Yes

Multiple Sessions Yes Yes Yes Yes  Yes

Protocol Used SQL FASTLOAD EXPORT MULTILOAD SQL

Conditional Expressions Yes No Yes Yes  Yes

Arithmetic Calculations Yes No Yes Yes NoData Conversion Yes 1 per column  Yes Yes  Yes

Error Files No Yes No Yes  Yes

Error Limits No Yes No Yes  Yes

User-written Routines No Yes Yes Yes  Yes

Page 17: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 17/21

Summary

• Allows near real-time updates from transactional systems into the

warehouse.

• Performs INSERTs, UPDATEs, and DELETEs to more than 60 tables at a

time.• Alternative to MultiLoad for low-batch maintenance of large databases;

replacement for BulkLoad.

• Uses row-hash locks, allowing concurrent updates on the same table.

• Can always be stopped and locks dropped with no ill effect.

• User can specify how many updates occur minute by minute; can be

changed as the job runs.

• No arithmetic functions or file concatenations.

Page 18: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 18/21

Review Questions

Match the item in the first column to its corresponding statement in the second column.

  _____ 1. TPump purpose A. Query against TPump status table

  _____ 2. MultiLoad purpose B. Concurrent updates on same table

 _____ 3. Row hash locking C. Low-volume changes

 _____ 4. PACK D. Use to specify how many statements to put in a multi-statement

request

 _____ 5. MACRO E. Large volume changes

 _____ 6. Statement rate change F. Used instead of DML

Page 19: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 19/21

Review Question Answers

Match the item in the first column to its corresponding statement in the second column.

 __ C   __ 1. TPump purpose A. Query against TPump status table

 __ E   __ 2. MultiLoad purpose B. Concurrent updates on same table

 __ B __ 3. Row hash locking C. Low-volume changes

 __ D __ 4. PACK D. Use to specify how many statements to put in a multi-statement

request

 __ F  __ 5. MACRO E. Large volume changes

 __  A __ 6. Statement rate change F. Used instead of DML

Page 20: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 20/21

Lab Exercises

Lab ExercisePurpose

In this lab, you will perform an operation similar to lab 7-2, using TPump instead of MultiLoad. For this

exercise, use a PACK of 20 and a RATE of 2400.

What you need

Data file (data8_1) created from macro AU.Lab8_1.

Tasks

1. Delete all rows from the Accounts Table and use the following INSERT/SELECT to create 100 rows of 

test data:

INSERT INTO Accounts SELECT * FROM AU.Accounts WHERE Account_Number LT 20024101 ;

2. Export data to the file data8_1 using the macro AU.lab8_1.

3. Prepare a TPump script which performs an UPSERT operation (INSERT MISSING UPDATE) on your 

Accounts table as a single operation. Use the data from data8_1 as input to the UPSERT script. If therow exists, UPDATE the Balance_Current with the appropriate incoming value. If not, INSERT a row

into the Accounts table. In your script, be sure to set a statement rate.

4. Run the script.

5. Validate your results. TPump should have performed 100 UPDATES and 100 INSERTS with a final

return code of zero.

Page 21: 6.4 Tpump

8/9/2019 6.4 Tpump

http://slidepdf.com/reader/full/64-tpump 21/21

Lab Solutions

cat lab813.tpp.LOGTABLE Restartlog813_tpp ;

.LOGON u4455/tljc30,tljc30 ;

.BEGIN LOAD SESSIONS 4 PACK 40 RATE 4800;

.LAYOUT Record_Layout_813;

.FIELD in_accountno 1 INTEGER KEY;

.FIELD in_number * INTEGER;

.FIELD in_street * CHAR(25);

.FIELD in_city * CHAR(20);

.FIELD in_state * CHAR(2);

.FIELD in_zip_code * INTEGER;

.FIELD in_balancefor * DECIMAL (10,2);

.FIELD in_balancecur * DECIMAL (10,2);

.DML LABEL Fix_Account DO INSERT FOR MISSING UPDATE ROWS ;

UPDATE Accounts SET Balance_Current = :in_balancecur 

WHERE Account_Number = :in_accountno ;

INSERT INTO Accounts VALUES (:in_accountno, :in_number, :in_street, :in_city,

:in_state, :in_zip_code, :in_balancefor, :in_balancecur);

.IMPORT INFILE data8_1 LAYOUT Record_Layout_813 APPLY Fix_Account;

.END LOAD;

.LOGOFF;

tpump < lab813.tpp > lab813.out