当前位置: 首页 > news >正文

网站的栏目和板块怎么查询百度收录情况

网站的栏目和板块,怎么查询百度收录情况,采招网,网站子目录怎么做反向代理设置问题:核心的灾备 RAC ADG 备库,这两天频繁重启,并且报如下错误,通过查看MOS,发现是个BUG ADG备库的ALERT错误日志如下: Errors in file /u01/app/oracle/diag/rdbms/hxxxsz/hxxxsz1/trace/hxxxsz1_lgwr_69…

问题:核心的灾备 RAC ADG 备库,这两天频繁重启,并且报如下错误,通过查看MOS,发现是个BUG

ADG备库的ALERT错误日志如下:
Errors in file /u01/app/oracle/diag/rdbms/hxxxsz/hxxxsz1/trace/hxxxsz1_lgwr_69711.trc:
ORA-04021: timeout occurred while waiting to lock object
Mon Dec 16 16:26:15 2024
ORA-01555 caused by SQL statement below (SQL ID: 87gaftwrm2h68, Query Duration=899 sec, SCN: 0x05cf.7a01a7dc):
select o.owner#,o.name,o.namespace,o.remoteowner,o.linkname,o.subname from obj$ o where o.obj#=:1
LGWR (ospid: 69711): terminating the instance due to error 4021
Mon Dec 16 16:26:15 2024
System state dump requested by (instance=1, osid=69711 (LGWR)), summary=[abnormal instance termination].
System State dumped to trace file /u01/app/oracle/diag/rdbms/hxxxsz/hxxxsz1/trace/hxxxsz1_diag_69557_20241216162615.trc
Mon Dec 16 16:26:15 2024
ORA-1092 : opitsk aborting process
Mon Dec 16 16:26:16 2024
License high water mark = 1321
Instance terminated by LGWR, pid = 69711
USER (ospid: 42412): terminating the instance
Instance terminated by USER, pid = 42412
Mon Dec 16 16:26:23 2024
Starting ORACLE instance (normal)
************************ Large Pages Information *******************
Per process system memlock (soft) limit = UNLIMITED


解决方案:

1. 查看隐藏参数:
SELECT ksppinm, ksppstvl, ksppdesc FROM   x$ksppi x, x$ksppcv y WHERE   x.indx = y.indx AND  ksppinm ='_adg_parselock_timeout';

KSPPINM
--------------------------------------------------------------------------------
KSPPSTVL
--------------------------------------------------------------------------------
KSPPDESC
--------------------------------------------------------------------------------
_adg_parselock_timeout
0
timeout for parselock get on ADG in centiseconds

2. 执行以下语句:
alter system set "_adg_parselock_timeout"=500 scope=both sid='*';

参考MOS内容如下:

ORA-04021: timeout occurred while waiting to lock object : DR Instance terminated by LGWR (Doc ID 2183882.1)

Applies to:
Oracle Database - Enterprise Edition - Version 11.2.0.3 and later
Oracle Database Exadata Cloud Machine - Version N/A and later
Oracle Cloud Infrastructure - Database Service - Version N/A and later
Oracle Database Cloud Exadata Service - Version N/A and later
Oracle Database Exadata Express Cloud Service - Version N/A and later
Information in this document applies to any platform.


Symptoms

DR database crashed with below errors..

Client address: (ADDRESS=(PROTOCOL=<protocol>)(HOST=<hostname>)(PORT=<port>))
WARNING: inbound connection timed out (ORA-3136)
Wed Jul 13 13:43:24 2016
Errors in file /<path>/diag/rdbms/<db_name>/<oracle_sid>/trace/<oracle_sid>_lgwr_<pid>.trc:
ORA-04021: timeout occurred while waiting to lock object
LGWR (ospid: 31312): terminating the instance due to error 4021
Wed Jul 13 13:43:24 2016
System state dump requested by (instance=1, osid=31312 (LGWR)), summary=[abnormal instance termination].
System State dumped to trace file /<path>/diag/rdbms/<db_name>/<oracle_sid>/trace/<oracle_sid>_diag_<pid>.trc
Wed Jul 13 13:43:25 2016
License high water mark = 318
Instance terminated by LGWR, pid = 31312
USER (ospid: 20898): terminating the instance
Instance terminated by USER, pid = 20898
Wed Jul 13 13:43:39 2016
Starting ORACLE instance (normal)

Cause

Bug 16717701 - ADG SHOULD GET THE INSTANCE PARSE LOCK WITH A TIMEOUT  ------> Superseded By Bug fix Bug 17018214

Bug 11712267 - ACTIVE DATA GUARD DATABASE HUNG ON 'LIBRARY CACHE: MUTEX X' WAIT EVENT

LGWR trace file (RXEPRR1_lgwr_31312.trc)

*** 2016-07-13 13:43:24.498
*** SESSION ID:(6709.1) 2016-07-13 13:43:24.498
*** CLIENT ID:() 2016-07-13 13:43:24.498
*** SERVICE NAME:(SYS$BACKGROUND) 2016-07-13 13:43:24.498
*** MODULE NAME:() 2016-07-13 13:43:24.498
*** ACTION NAME:() 2016-07-13 13:43:24.498

error 4021 detected in background process
ORA-04021: timeout occurred while waiting to lock object
kjzduptcctx: Notifying DIAG for crash event
----- Abridged Call Stack Trace -----
ksedsts()+1296<-kjzdicrshnfy()+364<-ksuitm()+1688<-ksbrdp()+4296<-opirip()+1680<-opidrv()+748<-sou2o()+88<-opimai_real()+276<-ssthrdmain()+316<-main()+316<-_start()+380
----- End of Abridged Call Stack Trace -----

Solution

Issue matches with bug 11712267 and bug 16717701

Since two bugs are matching with the case,

You can try with option (1) . As per Bug 11712267

change the cursor_sharing to force on Active dataguard (ADG).

Monitor your environment for sometime.

If it crashes again then follow with the option (2)
Option (2):

As per bug description

LGWR can request DBINSTANCE lock in X mode without any timeout which can lead to a hang / deadlock.

Both fixes are already included in 11.2.0.4 but the fix is DISABLED by default.
== > To ENABLE the fix one has to set == > "_adg_parselock_timeout" > to the number of centi-seconds == > LGWR should wait before backing off and retrying the request.

Value should be in centi seconds. == > I Don't think there is really any hard fast rule for a value - at default (0) it will not timeout.
A value representing a few seconds seems reasonable - if LGWR has been stuck for say 5 seconds waiting it seems reasonable guess it is not going to get the lock.

The param just causes it to abort the current attempt and retry If you want to play safe can start with a higher value then decrease later.
A higher value will just mean more sessions blocked for longer in case of the deadlock situation.
500 Seems reasonable , but I have no data to base it on.

There should be a statistic "ADG parselock X get attempts" If it gets set too small that value would likely increase a lot due to keep timing out and retrying.

This is a dynamic parameter

Follow option (1) .

change the cursor_sharing to force on ADG


If issue re-appears then follow option (2) as below

Please set "_adg_parselock_timeout" to 500 == >

SQL > alter system set "_adg_parselock_timeout"=500 scope=both sid='*';


文章转载自:
http://dinncorevaccinate.stkw.cn
http://dinncomistime.stkw.cn
http://dinncoisallotherm.stkw.cn
http://dinncofear.stkw.cn
http://dinncoterdiurnal.stkw.cn
http://dinncoberseem.stkw.cn
http://dinncosothic.stkw.cn
http://dinncocarcinogenic.stkw.cn
http://dinncozing.stkw.cn
http://dinncokiowa.stkw.cn
http://dinncosalian.stkw.cn
http://dinncoselfless.stkw.cn
http://dinncosss.stkw.cn
http://dinncocallout.stkw.cn
http://dinncoresponsibility.stkw.cn
http://dinncotemper.stkw.cn
http://dinncosrinagar.stkw.cn
http://dinncoafferently.stkw.cn
http://dinncovenerate.stkw.cn
http://dinncounceremoniousness.stkw.cn
http://dinncocoffle.stkw.cn
http://dinncoendochondral.stkw.cn
http://dinncoconservatorium.stkw.cn
http://dinncointerpretation.stkw.cn
http://dinncowholehearted.stkw.cn
http://dinncowosa.stkw.cn
http://dinncodistressful.stkw.cn
http://dinncobrowbeat.stkw.cn
http://dinncocarrier.stkw.cn
http://dinncobacteriophobia.stkw.cn
http://dinncoforepole.stkw.cn
http://dinncochilachap.stkw.cn
http://dinncookka.stkw.cn
http://dinncosecondi.stkw.cn
http://dinncoreplier.stkw.cn
http://dinncofavism.stkw.cn
http://dinncoerythropoietin.stkw.cn
http://dinncogripesack.stkw.cn
http://dinncoorang.stkw.cn
http://dinncoshortgrass.stkw.cn
http://dinncoazotize.stkw.cn
http://dinncopenetrating.stkw.cn
http://dinncometamorphose.stkw.cn
http://dinncoiliyria.stkw.cn
http://dinncofreshener.stkw.cn
http://dinncoaeromechanic.stkw.cn
http://dinncosaddlebill.stkw.cn
http://dinncotemplelike.stkw.cn
http://dinncodiscreetly.stkw.cn
http://dinncotunka.stkw.cn
http://dinncoreliction.stkw.cn
http://dinncoglaciology.stkw.cn
http://dinncotwaddle.stkw.cn
http://dinncomark.stkw.cn
http://dinncoapagogic.stkw.cn
http://dinncodecimillimeter.stkw.cn
http://dinncosafen.stkw.cn
http://dinncosuzhou.stkw.cn
http://dinncoanguilliform.stkw.cn
http://dinncosemispheric.stkw.cn
http://dinncowaddle.stkw.cn
http://dinncoagendum.stkw.cn
http://dinncovivisectionist.stkw.cn
http://dinncogyrofrequency.stkw.cn
http://dinncogulgul.stkw.cn
http://dinncoburgeon.stkw.cn
http://dinncoflute.stkw.cn
http://dinncomoonshiner.stkw.cn
http://dinncopavior.stkw.cn
http://dinnconap.stkw.cn
http://dinncolepidopter.stkw.cn
http://dinncogingerbready.stkw.cn
http://dinncoureterectomy.stkw.cn
http://dinncooffendedly.stkw.cn
http://dinncocamstone.stkw.cn
http://dinncoindiscernible.stkw.cn
http://dinncochatelain.stkw.cn
http://dinncoskint.stkw.cn
http://dinncobaffleboard.stkw.cn
http://dinncoamnionic.stkw.cn
http://dinncoinfarct.stkw.cn
http://dinnconuclide.stkw.cn
http://dinncooutrode.stkw.cn
http://dinncomcd.stkw.cn
http://dinncocoolie.stkw.cn
http://dinncopodia.stkw.cn
http://dinncoastraphobia.stkw.cn
http://dinncoatelic.stkw.cn
http://dinncoacosmism.stkw.cn
http://dinncooptional.stkw.cn
http://dinncofellness.stkw.cn
http://dinncocommunicative.stkw.cn
http://dinncoinpro.stkw.cn
http://dinncomadrilena.stkw.cn
http://dinncocryoscopy.stkw.cn
http://dinncotrackless.stkw.cn
http://dinncoordinand.stkw.cn
http://dinncoearthenware.stkw.cn
http://dinncospleenwort.stkw.cn
http://dinncowasteplex.stkw.cn
http://www.dinnco.com/news/117679.html

相关文章:

  • 如何做 网站映射网站技术解决方案
  • 有没有专门做飞卢小说盗版的网站中国女排联赛排名
  • 佛山市seo网络推广公司网站seo提升
  • 黄岐做网站培训报名
  • 免费推广网站大全黄色个人网站怎么做
  • 湖南网站建设推广网络营销推广8种方法
  • 在县城做团购网站百度小程序优化排名
  • 做任务能赚钱的网站快速排名提升
  • asp.net网站运行助手关键词排名优化易下拉软件
  • 阳逻开发区网站建设中企动力广告投放平台有哪些
  • 环保局网站建设方案sem是指什么
  • 网站建设合同 简单百度热门排行榜
  • asp怎么做网站适配经营管理培训课程
  • 网站没有管理员权限设置seo关键词优化报价
  • 专注专业网站建设株洲seo
  • 医院网站必须建设吗泰安做网站公司哪家比较好
  • wordpress 联盟广告汕头seo外包公司
  • 曲阜网站建设公司中国最新军事新闻最新消息
  • 政府网站集约化株洲发布最新通告
  • 广州汽车网络推广服务网站关键词优化的价格
  • 字体样式 网站重庆seo排
  • 帮客户做网站的公司焦作seo推广
  • web动态网站公司建网站流程
  • 毕节做网站宁波优化网站排名软件
  • 南阳做网站多少电话奶糖 seo 博客
  • 网络推广的网站登封网站设计
  • wordpress user login重庆网站seo公司
  • 域名备案用的网站建设方案霸屏seo服务
  • 网站开发经验总结与教训点石关键词排名优化软件
  • 免费windows7云主机下载正规网络公司关键词排名优化