oracle waits log file sync and log file parallel write on
play

Oracle waits log file sync and log file parallel write on Linux - PowerPoint PPT Presentation

Deutsche Bank Deutsche Bank Technology Center Oracle waits log file sync and log file parallel write on Linux July 2017 Nikolay Kudinov LGWR Process Overview Deutsche Bank Nikolay Kudinov 1 Deutsche Bank Technology Center PG


  1. Deutsche Bank Deutsche Bank Technology Center Oracle waits “log file sync” and “log file parallel write” on Linux July 2017 Nikolay Kudinov

  2. LGWR Process Overview Deutsche Bank Nikolay Kudinov 1 Deutsche Bank Technology Center PG Day 04/07/2017 2010 DB Blue template

  3. You will be able to understand the diagram Deutsche Bank Nikolay Kudinov 2 Deutsche Bank Technology Center PG Day 04/07/2017 2010 DB Blue template

  4. Agenda • Linux semaphores and IO API • semget • semop, semtimedop,semctl • io_submit, io_getevents • Several oracle internal C functions • Tools • strace • systemtap • gdb • LFS and LFPW diagrams Deutsche Bank Nikolay Kudinov 3 Deutsche Bank Technology Center PG Day

  5. Linux semaphores API - semget NAME semget - get a semaphore set identifier SYNOPSIS #include <sys/types.h> #include <sys/ipc.h> #include <sys/sem.h> int semget(key_t key, int nsems, int semflg); DESCRIPTION The semget() system call returns the semaphore set identifier associated with the argument key. A new set of nsems semaphores is created if key has the value IPC_PRIVATE or if no existing semaphore set is associated with key and IPC_CREAT is specified in semflg. If semflg specifies both IPC_CREAT and IPC_EXCL and a semaphore set already exists for key, then semget() fails with errno set to EEXIST. (This is analogous to the effect of the combination O_CREAT | O_EXCL for open(2).) Upon creation, the least significant 9 bits of the argument semflg define the permissions (for owner, group and others) for the semaphore set. The argument nsems can be 0 (a don’t care) when a semaphore set is not being created. Otherwise nsems must be greater than 0 and less than or equal to the maximum number of semaphores per semaphore set. RETURN VALUE If successful, the return value will be the semaphore set identifier (a nonnegative integer), otherwise -1 is returned, with errno indicating the error. Deutsche Bank Deutsche Bank Nikolay Kudinov 4 Deutsche Bank Technology Center PG Day

  6. Example (semget ) #include <sys/sem.h> $ipcs -s -i 524291 #include <stdio.h> Semaphore Array semid=524291 #define KEY (1490) uid=500 gid=500 cuid=500 cgid=500 int main() mode=0666, access_perms=0666 { nsems = 1 int id; otime = Not set id = semget(KEY, 1, 0666 | IPC_CREAT); ctime = Thu ************************** if(id < 0){ semnum value ncount zcount pid fprintf(stderr, "Unable to obtain semaphore.\n"); 0 0 0 0 0 } else{ fprintf(stderr, "Semaphore %d initialized.\n", KEY); } } $strace output: … semget(0x5d2, 1, IPC_CREAT|0666) = 524291 write(2, " Semaphore 1490 initialized.\n", 29 Semaphore 1490 initialized.) = 29 … Deutsche Bank Deutsche Bank Nikolay Kudinov 5 Deutsche Bank Technology Center PG Day

  7. semop, semtimedop NAME semop, semtimedop - semaphore operations SYNOPSIS int semop(int semid, struct sembuf *sops, unsigned nsops); int semtimedop(int semid, struct sembuf *sops, unsigned nsops, struct timespec *timeout); DESCRIPTION Each semaphore in a semaphore set has the following associated values: unsigned short semval; /* semaphore value */ unsigned short semzcnt; /* # waiting for zero */ unsigned short semncnt; /* # waiting for increase */ pid_t sempid; /* process that did last op */ semop() performs operations on selected semaphores in the set indicated by semid. Each of the nsops elements in the array pointed to by sops specifies an operation to be performed on a sin- gle semaphore. The elements of this structure are of type struct sembuf, containing the follow- ing members: unsigned short sem_num; /* semaphore number */ , short sem_op; /* semaphore operation */ , short sem_flg; /* operation flags */ If sem_op is a positive integer, the operation adds this value to the semaphore value (semval) If sem_op is less than zero, the process must have alter permission on the semaphore set. If semval is greater than or equal to the absolute value of sem_op, the operation can proceed immediately: the absolute value of sem_op is subtracted from semval Deutsche Bank Deutsche Bank Nikolay Kudinov 6 Deutsche Bank Technology Center PG Day

  8. Example (semop) #define KEY (1490) $strace output: void main(){ semget(0x5d2, 1, 0666) = 524291 int id; getpid() = 12024 fstat64(1, {st_mode=S_IFCHR|0620, st_rdev=makedev(136, 1), ...}) = 0 struct sembuf operations[1]; mmap2(NULL, 4096, PROT_READ|PROT_WRITE, int retval; MAP_PRIVATE|MAP_ANONYMOUS, -1, 0) = 0xb7f0b000 id = semget(KEY, 1, 0666); write(1, "Process id is 12024\n", 20Process id is 12024 ) = 20 if(id < 0){ semop(524291, 0xbfef4f06, 1) = 0 fprintf(stderr, "Cannot find semaphore, exiting.\n"); exit(0); $ipcs -s -i 524291 } Semaphore Array semid=524291 printf("Process id is %d\n", getpid()); uid=500 gid=500 cuid=500 cgid=500 operations[0].sem_num = 0; mode=0666, access_perms=0666 operations[0].sem_op = 3; nsems = 1 otime = Thu ************************ operations[0].sem_flg = 0; ctime = Thu ************************ retval = semop(id, operations, 1); semnum value ncount zcount pid 0 3 0 0 12024 } Deutsche Bank Deutsche Bank Nikolay Kudinov 7 Deutsche Bank Technology Center PG Day

  9. Example (semop) set operations[0].sem_op = -1 $ipcs -s -i 524291 $ipcs -s -i 524291 Semaphore Array semid=524291 Semaphore Array semid=524291 uid=500 gid=500 cuid=500 cgid=500 uid=500 gid=500 cuid=500 cgid=500 mode=0666, access_perms=0666 mode=0666, access_perms=0666 nsems = 1 nsems = 1 otime = Thu ************************ otime = Thu *********************** ctime = Thu ************************ ctime = Thu *********************** semnum value ncount zcount pid semnum value ncount zcount pid 0 2 0 0 12148 0 1 0 0 12165 $ipcs -s -i 524291 Semaphore Array semid=524291 hungs $ ipcs -s -i524291 uid=500 gid=500 cuid=500 cgid=500 ……………….. mode=0666, access_perms=0666 semget(0x5d2, 1, 0666) = 524291 otime = Thu *********************** nsems = 1 getpid() = 12186 ctime = Thu *********************** otime = Thu *********************** ……… semnum value ncount zcount pid ctime = Thu *********************** semop(524291, 0xbfa4c356, 1 0 0 1 0 12181 semnum value ncount zcount pid 0 0 0 0 12181 Deutsche Bank Deutsche Bank Nikolay Kudinov 8 Deutsche Bank Technology Center PG Day

  10. Example (semtimedop ) void main() { int id; struct sembuf operations[1]; int retval; id = semget(KEY, 1, 0666); if(id < 0){ fprintf(stderr, "Cannot find semaphore, exiting.\n"); exit(0); } printf("Process id is %d\n", getpid()); operations[0].sem_num = 0; operations[0].sem_op = -1; operations[0].sem_flg = 0; struct timespec timeout = { 10, 0 }; retval = semtimedop(id, operations, 1, &timeout); } $strace –T semget(0x5d2, 1, 0666) = 524291 <0.000009> getpid() = 12445 <0.000008> …………………………….. semtimedop(524291, 0xbfb5f2f6, 1, {10, 0}) = -1 EAGAIN (Resource temporarily unavailable) <10.001245> Deutsche Bank Deutsche Bank Nikolay Kudinov 9 Deutsche Bank Technology Center PG Day

  11. semctl NAME semctl - semaphore control operations SYNOPSIS int semctl(int semid, int semnum, int cmd, ...); DESCRIPTION semctl() performs the control operation specified by cmd on the semaphore set identified by semid, or on the semnum-th semaphore of that set. (The semaphores in a set are numbered start- ing at 0.) This function has three or four arguments, depending on cmd. When there are four, the fourth has the type union semun. The calling program must define this union as follows: union semun { int val; /* Value for SETVAL */ struct semid_ds *buf; /* Buffer for IPC_STAT, IPC_SET */ unsigned short *array; /* Array for GETALL, SETALL */ struct seminfo *__buf; /* Buffer for IPC_INFO (Linux specific) */ }; Valid values for cmd are …………… SETVAL Set the value of semval to arg.val for the semnum-th semaphore of the set, updating also the sem_ctime member of the semid_ds structure associated with the set. Undo entries are cleared for altered semaphores in all processes. If the changes to semaphore values would permit blocked semop() calls in other processes to proceed, then those processes are woken up. The calling process must have alter permission on the semaphore set. Deutsche Bank Deutsche Bank Nikolay Kudinov 10 Deutsche Bank Technology Center PG Day

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend