RE: [EXTERNAL] Re: enq: TS - contention

From: Hameed Amir <"Hameed>
Date: Fri, 10 Nov 2023 18:46:54 +0000
Message-ID: <SN7PR14MB647090B140548036B90FB20CE0AEA_at_SN7PR14MB6470.namprd14.prod.outlook.com>



Hi Jonathan,
Thank you for the explanation. I looked through DBA_HIST views for information on job A for periods when it finished successfully, and I found the following statement in all those periods: DELETE FROM AR_AUTOREM_INTERIM WHERE BATCH_ID = :B1 It is a standard Oracle EBS table. It is partitioned and has no index on it.

Can you please show me how to convert P2 into TS name below?

Event = enq: TS – contention
P1 = 1414725635
P2= 196611
P3= 2

Thank you,
Amir
From: Jonathan Lewis <jlewisoracle_at_gmail.com> Sent: Thursday, November 9, 2023 6:13 PM To: Hameed, Amir <amir.hameed_at_sleepnumber.com> Cc: oracle-l_at_freelists.org
Subject: [EXTERNAL] Re: enq: TS - contention

CAUTION: External source

I don't know all the options that might appear for the TS enqueue, but it is requested during the creation and dropping of many (probably all) types of segments. It's not restricted to temporary segments in the temporary tablespace.

The p1, p2, p3 values for the event are   name || mode, (0x5453000n) --- n is the mode, values 0 - 6   con_id || ts#, (0xcccctttt) ,,, typical top 4 / bottom 4 hex characters, but the con_id might not be there   tablespace relative block address

If you can query v$lock id1 will be the (con_id || ts#) and id2 will be the block address.

For creating a segment Oracle gets the TS lock once in exclusive mode on the segment header block. For dropping a segment Oracle gets the TS lock twice in exclusive mode, first for the segment header block, then for the first "data" block of the segment.

It seems unlikely that the SQL you've shown would lead to any type segment creation - possibly in a RAC system and with a large number of PDBs, object types and users some feature of the view definition might cause a SYS-recursive query to generate a very bad plan with a huge temporary segment - but that would be a little surprising.

Is there anything you know about procedures A and B that would lead to excessive numbers of segments being rapidly created and dropped, and possibly hitting some strange boundary conditions (e.g. lots being created - which take the TS enqueue - but the purge option not being specified on the drop - which would mean the TS enqueue wouldn't be taken, but a background might start dropping segments from the recyclebin when space pressure got too high). Another hypothetical problem could be excessive demand leading to automatic file extensions and an undetected deadlock.

I think you need to work out what the procedures are doing around the time of the fail, and see if that gives you any clues. Perhaps you could be guided by the SQL_IDs in the ASH data in the couple of minutes leading up to the wait.

Regards
Jonathan Lewis

On Wed, 8 Nov 2023 at 18:02, Hameed Amir <dmarc-noreply_at_freelists.org<mailto:dmarc-noreply_at_freelists.org>> wrote: Hi,
The database version is 19.17.0.0, running on OEL8. In our Oracle E-Business Suite production database, a batch job (A) runs and spawns another job (B). Intermittently, job A runs longer and ends up getting terminated by the user. ASH data shows that the process running job A awaited the event "enq: TS - contention".

Based on the limited information I have found, this event seems related to the TEMP tablespace. There is no SQL_ID associated with the session ID waiting on the event. There is a TOP_LEVEL_SQL_ID, which shows the following SQL statement:

select directory_name from all_directories where directory_path = :1

Has anyone run into this issue? Any feedback will be greatly appreciated.

Thank you,
Amir

--
http://www.freelists.org/webpage/oracle-l
Received on Fri Nov 10 2023 - 19:46:54 CET

Original text of this message