You know the score, you are running an impdp
and it looks to have hung up. You’ve watched the log file (or on screen messages) and it’s sitting at something like:
Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
But hasn’t moved from there for what seems hours. The alert log for the database is of no help, as there are no errors or warnings logged there. What’s going on?
Is the import actually running? Check DBA_DATAPUMP_JOBS
to find out:
|
|
Which gives something like:
OWNER_NAME JOB_NAME OPERATION JOB_MODE
---------- ------------------ --------- --------
DUNBARNOR SYS_IMPORT_FULL_01 IMPORT FULL
So, we see at least one full import job is running. Good news. Do we have any sessions running though?
|
|
And we see this:
OWNER_NAME JOB_NAME SESSION_TYPE
---------- ------------------ -------------
DUNBARNOR SYS_IMPORT_FULL_01 DBMS_DATAPUMP
DUNBARNOR SYS_IMPORT_FULL_01 MASTER
DUNBARNOR SYS_IMPORT_FULL_01 WORKER
DUNBARNOR SYS_IMPORT_FULL_01 WORKER
DUNBARNOR SYS_IMPORT_FULL_01 WORKER
DUNBARNOR SYS_IMPORT_FULL_01 WORKER
So, we have the master session, and a few workers. My job is running with parallel=4
in the parameter file, so that’s why there are 4 workers. Are they actually doing anything?
|
|
Hmm, looks like nothing is working at all. Every session appears to be waiting for something to be broadcast. The number of BLOCK_CHANGES
should be increasing if the job was working correctly, shouldn’t it?
The job has definitely hung.
Or has it?
Well, in this particular case, the clue is on screen, in the log file, and noted above.
The job is Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
so, I’m hoping it’s creating indexes. Can we check? Of course!
For reasons of space across the page, I’ve had to
substr()
a couple of columns in the following SQL statement. You should refrain from doing so to get the full picture.
|
|
And now we can see what’s going on, The SQL_TEXT
column shows that a number of parallel sessions are indeed creating indexes:
SID MODULE STATE EVENT SECS SQL_TEXT
---- ---------------- ------- --------------------- ---- ------------------------------
614 Data Pump Master WAITING wait for unread messa 0 BEGIN :1 := sys.kupc$que_int.r
45 Data Pump Worker WAITING PX Deq: Execute Reply 64 CREATE INDEX "DUNBARNOR"."XIE1
192 Data Pump Worker WAITING direct path read temp 0 CREATE INDEX "DUNBARNOR"."XIE1
757 Data Pump Worker WAITING wait for unread messa 1 BEGIN :1 := sys.kupc$que_int.t
757 Data Pump Worker WAITING wait for unread messa 1 BEGIN :1 := sys.kupc$que_int.t
757 Data Pump Worker WAITING wait for unread messa 1 BEGIN :1 := sys.kupc$que_int.t
857 Data Pump Worker WAITING direct path read temp 0 CREATE INDEX "DUNBARNOR"."XIE1
891 Data Pump Worker WAITING wait for unread messa 1 BEGIN :1 := sys.kupc$que_int.t
891 Data Pump Worker WAITING wait for unread messa 1 BEGIN :1 := sys.kupc$que_int.t
891 Data Pump Worker WAITING wait for unread messa 1 BEGIN :1 := sys.kupc$que_int.t
1019 Data Pump Worker WAITING PX Deq: Execution Msg 64 CREATE INDEX "DUNBARNOR"."XIE1
1035 Data Pump Worker WAITING wait for unread messa 1 BEGIN :1 := sys.kupc$que_int.t
1035 Data Pump Worker WAITING wait for unread messa 1 BEGIN :1 := sys.kupc$que_int.t
1035 Data Pump Worker WAITING wait for unread messa 1 BEGIN :1 := sys.kupc$que_int.t
1324 Data Pump Worker WAITING PX Deq: Execution Msg 64 CREATE INDEX "DUNBARNOR"."XIE1
1749 Data Pump Worker WAITING direct path read temp 0 CREATE INDEX "DUNBARNOR"."XIE1
2034 Data Pump Worker WAITING PX Deq: Execution Msg 67 CREATE INDEX "DUNBARNOR"."XIE1
2153 Data Pump Worker WAITING direct path read temp 0 CREATE INDEX "DUNBARNOR"."XIE1
2177 Data Pump Worker WAITING PX Deq: Execution Msg 66 CREATE INDEX "DUNBARNOR"."XIE1
So, the impdp
job is still running and is still working, it’s just not importing at the moment, it is building indexes.
Why does it appear hung? This is an exceedingly large table, with far too many indexes for comfort. They all need to be recreated, so this takes time. Repeatedly executing the above query (the non-substr()
’d version I mean) will show the names of the indexes changing every time it completes one index and moves on to the next. You will also see it moving on to a different table name when it has built all the indexes on the currently displayed table.
You will, I hope, also notice a number of SID
s in the above output which are never mentioned in the preceding query results. This is why, I suspect, that there are a lot of hits on the web about the wait event wait for unread message on broadcast channel
related to impdp
(or expdp
) but so far, none of those hits seem to go into any details about the sessions you don’t find in DBA_DATAPUMP_JOBS
or DBA_DATAPUMP_SESSIONS
, perhaps a quick look in V$SESSION
is more helpful when trying to track down suspected hangs in these utilities?
So, it turns out the job was not hung after all. At least, not in this case.
Enjoy.