16.10 - Monitoring Disk Utilization - Teradata Database

Teradata Database Administration

Product
Teradata Database
Release Number
16.10
Published
April 2018
Language
English (United States)
Last Update
2018-04-26
dita:mapPath
qjg1509413559832.ditamap
dita:ditavalPath
changebar_rev_16_10_exclude_audience_ie.ditaval
dita:id
ujp1472240543947

ResUsage and Disk Utilization

The ResNode macro reports disk utilization averages by second.

Parallel Disk Efficiency

Parallel AMP efficiency does not necessarily match parallel disk efficiency. Monitor parallel disk efficiency using ResUsageSvdsk and ResUsageSpdsk tables.

The following table lists common mistakes that can cause skewing and poor parallel efficiency and suggests solutions.

Mistake Solution
A user did not define a PI. The system uses the first column of the table as the default P1. Define a PI with good data distribution.
A user used a null as PI for the target table in a left outer join. Perform any of the following:
  • Choose a different PI.
  • Handle NULL case separately.
  • Use a multiset table.
A user performed a join on column with poor data distribution. For example, the user entered:
SELECT A.colname, B.x, B.y
FROM A, B
WHERE A.colname =
   B.colname;
  • Identify column value and counts. For example, enter:
    SELECT colname, count(*) 
FROM T 
	  HAVING count(*) > 1000
	  GROUP BY 1 ORDER BY 1 Desc;

    The following displays:

    colname   count(*)
codeXYZ    720,000
codeABC      1,200
  • Break the query into two separate SQL statements. For example, handle codeXYZ only in one SQL statement; handle all other cases in another SQL statement.
  • Collect statistics on the join column.