Changing timeout parameters

In this blog:
/people/michal.krawczyk2/blog/2006/06/08/xi-timeouts-timeouts-timeouts
mr Michal Krawczyk says changing parameters like xiadapter.inbound.timeout.default should be avoided. However our current problem is really the 180000 millisecond (=3minutes) limit that derives from this setting. Some RFC calls just take more time in the backend system.
Can this particular parameter be changed or not?
The parameter name "...default" sounds like it is just a default and you could override it with some other parameter. But this is just my imagination? I know that there exists parameter syncMessageDeliveryTimeoutMsec as a property of the RfcAdapter J2EE Service (Michal has also mentioned this), but the value of it is already much larger than xiadapter.inbound.timeout.default.
br: Kimmo
PS. I will not reward with points for answers like "optimize you backend RFC function modules and no timeout will occur".

No, I did not changed syncMessageDeliveryTimeoutMsec because it is sufficient already ( 300000 msec ). And the error message MessageExpiredException ( full error message is "com.sap.aii.af.ra.ms.api.MessageExpiredException: Message 433f56a0-2e99-11db-b6e6-00112540039c(INBOUND)"  comes exactly after 3minutes (=180000 msec), that's why I believe the limitation comes from the parameter xiadapter.inbound.timeout.default whose value is 180000.
To be honest, I have some doubts, that execution of RFC-function module does NOT take 3mins. I have tested the rfc fm with same parameters as timeouted messages with SE37 in the backend system and they run quickly. I have been thinking if the RFC-adapter have trouble receiving the call due to sudden system overload and therefore gives MessageExpiredException.
But why I cannot change the parameter xiadapter.inbound.timeout.default?
In your blog Michal you say it's denied in note 791379 but I don't find a word there that denies the change.
br: Kimmo

Similar Messages

  • I have Photoshop cs6 Ext on an ASUS laptop. How can I increase the font size of the contents of the FILTER Panel situated on bottom left of screen. The font size is extreamly small and almost unreadable. I have changed display parameters, not the resoluti

    I have Photoshop cs6 Ext on an ASUS laptop. How can I increase the font size of the contents of the FILTER Panel situated on bottom left of screen. The font size is extreamly small and almost unreadable. I have changed display parameters, not the resolution, to no avail.
    David.

    Paragraph breaks are good for readability. ;-)
    Have you noticed any difference between your MacBook and others at the Apple store? Wondering whether this is a configurable setting at the system level, i.e., DPI.
    You can default Firefox to a larger zoom level to avoid having to zoom every page. You'll still be able to adjust the size for individual sites as needed. It sounds as though you are aware of these add-ons:
    * Default FullZoom Level: https://addons.mozilla.org/firefox/addon/default-fullzoom-level/
    * NoSquint: https://addons.mozilla.org/firefox/addon/nosquint/
    There are some discussions about changing coming in Firefox 22 (I think) to address higher density displays like the Retina display. So perhaps there will be a built-in setting to address this in the future.

  • How to change timeout parameter value in Oracle 10g R2

    Anyone knows how to change timeout parameter value in Oracle 10g Database R2?

    Waheed Azhar wrote:
    actually i am getting ORA-01013 exception which directly relates to the timeout value but i think it's hidden parameter...What makes you think it's a hidden parameter?
    A search of MetaLink for that error turns up a number of hits, most of which a very situational specific. Exactly what are you doing when you get this error? Are you connecting over an ODBC connection? Are you getting it on a connection request? At db shutdown? During a long-running query?

  • How to change NLS parameters in Oracle XE?

    Hi
    I have to change some parameters in database using Oracle XE server but I don't know how to do it. I must change these parameters:
    NLS_CHARACTERSET
    NLS_NCHAR_CHARACTERSET
    How to do it?
    Thanks for help.

    Thanks, but I'm newbie and I have to ask you about more details :)
    What do you mean when you saying: init file (or spfile)? Where can I find these files?
    Registry entry (NLS_LANG) is correct, but when I'm using web based administration application I can see more NLS settings. Unfortunately I can't change them :(
    Using XE version I can't (I'm not sure about that) create another instance, there is only one instance created by installer. Is it possible to change NLS settings in this case?

  • How to change NLS parameters in SQL Developer?

    I think that Oracle National Language Support is quite confusing. How can I easily change NLS parameters for SQL Developer (for all connections) to match exactly those that my database is using?

    Hello,
    SELECT 5/8 x FROM dual;F9 -> 0.625
    Change decimal separator in preferences
    F9 -> 0,625
    It is different when I execute a query/script with F5, then I always get 0.625
    SELECT * FROM nls_session_parameters
    WHERE parameter = 'NLS_NUMERIC_CHARACTERS';
    PARAMETER                      VALUE
    NLS_NUMERIC_CHARACTERS         .,
    SELECT 5/8 x FROM dual;
             X
         0.625
    Change settings
    SELECT * FROM nls_session_parameters
    WHERE parameter = 'NLS_NUMERIC_CHARACTERS';
    PARAMETER                      VALUE
    NLS_NUMERIC_CHARACTERS         ,.
    SELECT 5/8 x FROM dual;
             X
         0.625Even changing the settings with ALTER SESSION makes no difference
    ALTER SESSION SET NLS_NUMERIC_CHARACTERS = ',.';
    SELECT * FROM nls_session_parameters
    WHERE parameter = 'NLS_NUMERIC_CHARACTERS';
    PARAMETER                      VALUE
    NLS_NUMERIC_CHARACTERS         ,.
    SELECT 5/8 x FROM dual;
             X
         0.625
    ALTER SESSION SET NLS_NUMERIC_CHARACTERS = '.,';
    SELECT * FROM nls_session_parameters
    WHERE parameter = 'NLS_NUMERIC_CHARACTERS';
    PARAMETER                      VALUE
    NLS_NUMERIC_CHARACTERS         .,
    SELECT 5/8 x FROM dual;
             X
         0.625It seems the script output does not care about my settings :-(
    Regards
    Marcus

  • Change step parameters in teststand edit mode

    Hello,
    I would like to know if it's possible to change the parameters in a step in edit mode of teststand.
    I have attached a sequence with one step, in this step I want to select DMMx.
    After the selection I want to teststand to fill in the parameters in the step so I can the choose which type of measurement and such.
    If this is not possible how could I make something like this possible.
    As you may see this will be a HAL, and the only option I can see which would do this is bij a string array but I don't want to type in the commands in string.
    Attachments:
    ring.vi ‏14 KB
    Sequence File 1.seq ‏5 KB

    Hi Darkxceed
    My recommendation for doing a HAL i TestStand would be to use an object oriented approach. 
    Create a class hirachy of your instruments like the following inside of LabVIEW:
    Then use Dynamic Dispatch to make TestStand choose the instrument of interest. There is an example of using Dynamic Dispatching in TestStand here:
    TestStand Using LabVIEW OOP Truck Example
    https://decibel.ni.com/content/docs/DOC-24098
    This solution will offcourse require you to read up on creating applications using object oriented programming in LabVIEW. We at NI have a course that walks you through both the theory and practical implementation. It is called Object Oriented Programming in LabVIEW. If you have a SSP agreement, you should be able to find it as Self Paced Online Training as a part of your contract.
    There is also a good introduction to OOP in LabVIEW and HAL here:
    https://decibel.ni.com/content/docs/DOC-32506
    (There is a video embedded in the PDF)
    Best Regards
    Anders Rohde | CLD | Platinum Applications Engineer | National Instruments Denmark

  • How to Change Database parameters as suggested by EWA report

    Dear Experts,
    As per EWA report , i have been asked to change several DB parameters as per note 0124361 . Should i go aghead and change the parameters ? What is the procedure of chaging those parameters? what is the real process that should be followed ? Please revert.Points guaranteed.
    Regards,
    Somya

    Run "brspace -f dbparam"
    Select option 1 "Change parameter value" and change the parameters. After changing select option 3 to create a new init.ora.
    If you change parameters that have the scope "spfile" oracle requires a restart. If you only change parameters with scope "both" you don't need a restart of oracle. This changes are affected on the fly.
    To restart oracle:
    connect / as sysdba
    SQL> shutdown
    SQL> startup
    You don't need to stop SAP if you only change oracle parameters. SAP reconnects automatically if the database is up.

  • ASM timeout parameters?

    Oracle: 11.2.0.3 non-RAC (Oracle Restart grid home)
    OS: RHEL Server 5.8
    Can timeout parameters be set for an ASM instance or for any downstream database instances dependent on an ASM instance? Our storage and sysadmins ran a test (failing over a controller). The Oracle database instance detected a problem reaching +FLASHREC on the NetApp device (it was trying to access a control file evidently). Approximately one second later the database instance decided to terminate itself. The ASM instance remained up. But subsequent checking with ASMCD showed no ASM Diskgroup available using an LS command. After bouncing the ASM instance all was well--the diskgroups reappeared and we were able to restart our database instance. A second seems a bit unforgiving. Can any timeout-related parameters be set on the ASM or ASM-client instance to provide more wiggle room during a controller failover?
    Some errors we encountered from the database instance alert log. Further below are errors from the ASM instance's alert log
    Wed Mar 14 04:00:55 2012
    Archived Log entry 89 added for thread 1 sequence 142 ID 0xbb0a69f4 dest 1:
    Wed Mar 14 17:51:06 2012
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>ckpt310.trc:
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 120864
    Additional information: -1
    WARNING: Read Failed. group:2 disk:0 AU:59 offset:16384 size:16384
    Wed Mar 14 17:51:06 2012
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>arc2399.trc:
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 120864
    Additional information: -1
    WARNING: failed to read mirror side 1 of virtual extent 0 logical extent 0 of file 256 in group [2.2142222202] from disk FLASHREC_0000 allocation unit 59 reason error; if possible, will try another mirror side
    WARNING: Read Failed. group:2 disk:0 AU:59 offset:16384 size:16384
    WARNING: failed to read mirror side 1 of virtual extent 0 logical extent 0 of file 256 in group [2.2142222202] from disk FLASHREC_0000 allocation unit 59 reason error; if possible, will try another mirror side
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>ckpt310.trc:
    ORA-00202: control file: '+FLASHREC/<instance name here>/controlfile/current.256.776099703'
    ORA-15081: failed to submit an I/O operation to a disk
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>arc2399.trc:
    ORA-00202: control file: '+FLASHREC/<instance name here>/controlfile/current.256.776099703'
    ORA-15081: failed to submit an I/O operation to a disk
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>ckpt310.trc:
    ORA-27061: waiting for async I/Os failed
    Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 16384
    WARNING: Write Failed. group:2 disk:0 AU:59 offset:49152 size:16384
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>ckpt310.trc:
    ORA-15080: synchronous I/O operation to a disk failed
    WARNING: failed to write mirror side 1 of virtual extent 0 logical extent 0 of file 256 in group 2 on disk 0 allocation unit 59
    Wed Mar 14 17:51:06 2012
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>m00023737.trc:
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 120864
    Additional information: -1
    WARNING: Read Failed. group:2 disk:0 AU:59 offset:16384 size:16384
    WARNING: failed to read mirror side 1 of virtual extent 0 logical extent 0 of file 256 in group [2.2142222202] from disk FLASHREC_0000 allocation unit 59 reason error; if possible, will try another mirror side
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>m00023737.trc:
    ORA-00202: control file: '+FLASHREC/<instance name here>/controlfile/current.256.776099703'
    ORA-15081: failed to submit an I/O operation to a disk
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>ckpt310.trc:
    ORA-00206: error in writing (block 3, # blocks 1) of control file
    ORA-00202: control file: '+FLASHREC/<instance name here>/controlfile/current.256.776099703'
    ORA-15081: failed to submit an I/O operation to a disk
    ORA-15081: failed to submit an I/O operation to a disk
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>ckpt310.trc:
    ORA-00221: error on write to control file
    ORA-00206: error in writing (block 3, # blocks 1) of control file
    ORA-00202: control file: '+FLASHREC/<instance name here>/controlfile/current.256.776099703'
    ORA-15081: failed to submit an I/O operation to a disk
    ORA-15081: failed to submit an I/O operation to a disk
    CKPT (ospid: 310): terminating the instance due to error 221
    Errors in file /u01/app/oracle/diag/rdbms/<instance name here>/<instance name here>/trace/<instance name here>m00023737.trc:
    ORA-00204: error in reading (block 1, # blocks 1) of control file
    ORA-00202: control file: '+FLASHREC/<instance name here>/controlfile/current.256.776099703'
    ORA-15081: failed to submit an I/O operation to a disk
    Wed Mar 14 17:51:07 2012
    License high water mark = 8
    Instance terminated by CKPT, pid = 310
    USER (ospid: 24054): terminating the instance
    Instance terminated by USER, pid = 24054
    Some errors we encountered from the ASM instance alert log
    Mon Mar 12 14:56:18 2012
    NOTE: ASMB process exiting due to lack of ASM file activity for 305 seconds
    Wed Mar 14 17:51:06 2012
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_gmon_27396.trc:
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 4088
    Additional information: -1
    WARNING: Write Failed. group:1 disk:0 AU:1 offset:1044480 size:4096
    WARNING: Hbeat write to PST disk 0.3916384140 (DATAFILE_0000) in group 1 failed.
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_gmon_27396.trc:
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 4088
    Additional information: -1
    WARNING: Write Failed. group:2 disk:0 AU:1 offset:1044480 size:4096
    WARNING: Hbeat write to PST disk 0.3916384141 (FLASHREC_0000) in group 2 failed.
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_gmon_27396.trc:
    ORA-27072: File I/O error
    Linux-x86_64 Error: 5: Input/output error
    Additional information: 4
    Additional information: 4088
    Additional information: -1
    WARNING: Write Failed. group:3 disk:0 AU:1 offset:1044480 size:4096
    WARNING: Hbeat write to PST disk 0.3916384142 (TEMPFILE_0000) in group 3 failed.
    Wed Mar 14 17:51:06 2012
    NOTE: process b000+asm (23739) initiating offline of disk 0.3916384140 (DATAFILE_0000) with mask 0x7e in group 1
    WARNING: Disk 0 (DATAFILE_0000) in group 1 in mode 0x7f is now being taken offline on ASM inst 1
    NOTE: initiating PST update: grp = 1, dsk = 0/0xe96f478c, mask = 0x6a, op = clear
    Wed Mar 14 17:51:06 2012
    NOTE: process b001+asm (23753) initiating offline of disk 0.3916384141 (FLASHREC_0000) with mask 0x7e in group 2
    WARNING: Disk 0 (FLASHREC_0000) in group 2 in mode 0x7f is now being taken offline on ASM inst 1
    NOTE: initiating PST update: grp = 2, dsk = 0/0xe96f478d, mask = 0x6a, op = clear
    GMON updating disk modes for group 1 at 13 for pid 20, osid 23739
    ERROR: no read quorum in group: required 1, found 0 disks
    Wed Mar 14 17:51:06 2012
    NOTE: process b002+asm (23791) initiating offline of disk 0.3916384142 (TEMPFILE_0000) with mask 0x7e in group 3
    WARNING: Disk 0 (TEMPFILE_0000) in group 3 in mode 0x7f is now being taken offline on ASM inst 1
    NOTE: initiating PST update: grp = 3, dsk = 0/0xe96f478e, mask = 0x6a, op = clear
    GMON updating disk modes for group 2 at 14 for pid 23, osid 23753
    ERROR: no read quorum in group: required 1, found 0 disks
    Wed Mar 14 17:51:06 2012
    NOTE: cache dismounting (not clean) group 1/0x7FAFB779 (DATAFILE)
    NOTE: messaging CKPT to quiesce pins Unix process pid: 23826, image: oracle@dot-oraprd04 (B003)
    Wed Mar 14 17:51:06 2012
    NOTE: halting all I/Os to diskgroup 1 (DATAFILE)
    Wed Mar 14 17:51:06 2012
    NOTE: LGWR doing non-clean dismount of group 1 (DATAFILE)
    NOTE: LGWR sync ABA=6.6196 last written ABA 6.6196
    NOTE: cache dismounted group 1/0x7FAFB779 (DATAFILE)
    SQL> alter diskgroup DATAFILE dismount force /* ASM SERVER */
    Wed Mar 14 17:51:06 2012
    NOTE: cache dismounting (not clean) group 2/0x7FAFB77A (FLASHREC)
    NOTE: messaging CKPT to quiesce pins Unix process pid: 23836, image: oracle@dot-oraprd04 (B004)
    NOTE: halting all I/Os to diskgroup 2 (FLASHREC)
    NOTE: LGWR doing non-clean dismount of group 2 (FLASHREC)
    NOTE: LGWR sync ABA=5.1120 last written ABA 5.1120
    GMON updating disk modes for group 3 at 15 for pid 25, osid 23791
    ERROR: no read quorum in group: required 1, found 0 disks
    NOTE: cache dismounted group 2/0x7FAFB77A (FLASHREC)
    SQL> alter diskgroup FLASHREC dismount force /* ASM SERVER */
    Wed Mar 14 17:51:06 2012
    NOTE: cache dismounting (not clean) group 3/0x7FAFB77B (TEMPFILE)
    NOTE: messaging CKPT to quiesce pins Unix process pid: 23838, image: oracle@dot-oraprd04 (B005)
    NOTE: halting all I/Os to diskgroup 3 (TEMPFILE)
    NOTE: LGWR doing non-clean dismount of group 3 (TEMPFILE)
    NOTE: LGWR sync ABA=6.11 last written ABA 6.11
    NOTE: cache dismounted group 3/0x7FAFB77B (TEMPFILE)
    SQL> alter diskgroup TEMPFILE dismount force /* ASM SERVER */
    WARNING: Offline of disk 0 (TEMPFILE_0000) in group 3 and mode 0x7f failed on ASM inst 1
    WARNING: Offline of disk 0 (DATAFILE_0000) in group 1 and mode 0x7f failed on ASM inst 1
    WARNING: Offline of disk 0 (FLASHREC_0000) in group 2 and mode 0x7f failed on ASM inst 1
    Wed Mar 14 17:51:07 2012
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    Wed Mar 14 17:51:07 2012
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    Wed Mar 14 17:51:07 2012
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ASM Health Checker found 1 new failures
    ASM Health Checker found 1 new failures
    ASM Health Checker found 1 new failures
    Wed Mar 14 17:51:07 2012
    NOTE: ASM client <instance name here>:<instance name here> disconnected unexpectedly.
    NOTE: check client alert log.
    NOTE: Trace records dumped in trace file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_ora_322.trc
    Wed Mar 14 17:51:07 2012
    NOTE: cache deleting context for group FLASHREC 2/0x7fafb77a
    NOTE: cache deleting context for group TEMPFILE 3/0x7fafb77b
    NOTE: cache deleting context for group DATAFILE 1/0x7fafb779
    GMON dismounting group 2 at 16 for pid 27, osid 23836
    GMON dismounting group 1 at 17 for pid 26, osid 23826
    NOTE: Disk in mode 0x8 marked for de-assignment
    GMON dismounting group 3 at 18 for pid 28, osid 23838
    NOTE: Disk in mode 0x8 marked for de-assignment
    NOTE: Disk in mode 0x8 marked for de-assignment
    SUCCESS: diskgroup FLASHREC was dismounted
    SUCCESS: alter diskgroup FLASHREC dismount force /* ASM SERVER */
    SUCCESS: diskgroup DATAFILE was dismounted
    SUCCESS: alter diskgroup DATAFILE dismount force /* ASM SERVER */
    SUCCESS: diskgroup TEMPFILE was dismounted
    SUCCESS: alter diskgroup TEMPFILE dismount force /* ASM SERVER */
    ERROR: PST-initiated MANDATORY DISMOUNT of group TEMPFILE
    ERROR: PST-initiated MANDATORY DISMOUNT of group FLASHREC
    ERROR: PST-initiated MANDATORY DISMOUNT of group DATAFILE
    Wed Mar 14 17:51:07 2012
    NOTE: diskgroup resource ora.FLASHREC.dg is offline
    NOTE: diskgroup resource ora.DATAFILE.dg is offline
    NOTE: diskgroup resource ora.TEMPFILE.dg is offline
    Wed Mar 14 17:51:08 2012
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_ora_24250.trc:
    ORA-17503: ksfdopn:2 Failed to open file +DATAFILE/<instance name here>/spfile<instance name here>.ora
    ORA-15001: diskgroup "DATAFILE" does not exist or is not mounted
    Wed Mar 14 17:51:08 2012
    SQL> ALTER DISKGROUP FLASHREC MOUNT /* asm agent *//* {0:5:72} */
    NOTE: cache registered group FLASHREC number=1 incarn=0xfa7fb7ea
    SQL> ALTER DISKGROUP FLASHREC MOUNT /* asm agent *//* {0:5:72} */
    NOTE: cache registered group FLASHREC number=1 incarn=0xfa7fb7ea
    NOTE: cache began mount (first) of group FLASHREC number=1 incarn=0xfa7fb7ea
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_ora_27411.trc:
    ORA-27061: waiting for async I/Os failed
    Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 4096
    WARNING: Read Failed. group:0 disk:1 AU:0 offset:0 size:4096
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_ora_27411.trc:
    ORA-27061: waiting for async I/Os failed
    Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 4096
    WARNING: Read Failed. group:0 disk:0 AU:0 offset:0 size:4096
    Errors in file /u01/app/oracle/diag/asm/+asm/+ASM/trace/+ASM_ora_27411.trc:
    ORA-27061: waiting for async I/Os failed
    Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 4096
    WARNING: Read Failed. group:0 disk:2 AU:0 offset:0 size:4096
    ERROR: no read quorum in group: required 2, found 0 disks
    NOTE: cache dismounting (clean) group 1/0xFA7FB7EA (FLASHREC)
    NOTE: messaging CKPT to quiesce pins Unix process pid: 27411, image: oracle@dot-oraprd04 (TNS V1-V3)
    NOTE: dbwr not being msg'd to dismount
    NOTE: lgwr not being msg'd to dismount
    NOTE: cache dismounted group 1/0xFA7FB7EA (FLASHREC)
    NOTE: cache ending mount (fail) of group FLASHREC number=1 incarn=0xfa7fb7ea
    NOTE: cache deleting context for group FLASHREC 1/0xfa7fb7ea
    Wed Mar 14 17:51:08 2012
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    ERROR: -9(Error 27061, OS Error (Linux-x86_64 Error: 5: Input/output error
    Additional information: -1
    Additional information: 512)
    GMON dismounting group 1 at 20 for pid 18, osid 27411
    ERROR: diskgroup FLASHREC was not mounted
    ORA-15032: not all alterations performed
    ORA-15017: diskgroup "FLASHREC" cannot be mounted
    ORA-15063: ASM discovered an insufficient number of disks for diskgroup "FLASHREC"
    ORA-15080: synchronous I/O operation to a disk failed
    ORA-15080: synchronous I/O operation to a disk failed
    ORA-15080: synchronous I/O operation to a disk failed
    ERROR: ALTER DISKGROUP FLASHREC MOUNT /* asm agent *//* {0:5:72} */
    ASM Health Checker found 1 new failures

    Thanks Dan. The server had been built recently but not yet released. Testing was uncoordinated but no permanent harm was done. Great group of people and NetApp is new to them. Glad they are testing things like controller failover. But it sounds like ASM may be a victim and not the culprit. If ASM remains suspect during continued failover testing I'll consider opening an SR like you suggested.

  • How to change the parameters(rot x,y,z &dictance) to get Kinect Fusion Explore Multi Static Cameras sample work?

    Recently,I start to pay attention to  the  function 'Kinect Fusion Explore Multi Static Cameras sample' In SDK 1.8.
    Here ,I use two kinects ,but I have no idea how to change the parameters(x,y,z &dictance) in the red rectangle to make it work successfully.
    By the way,I hava calibrated the two kinects' camera and get the related perameters.

    sorry,I can't add the image to my question...~~~~(>_<)~~~~

  • Change J2ee parameters on WAS 640-J2EE add in -config tool

    I have started the config tool to change java paramters per SAP.
    However I notice that config tool shows dispatcher and server and below that an instance (xxx-318782 for example) which has a dispatcher and server also.....
    Why is this and which do I modify to change java parameters?
    Alos where can I find the setting, it is somewhere under services directory?
    Thanks
    John R

    Hi,
    the dispatcher and server nodes that appear right below the root of the tree in the Config tool contain global properties (services and managers' properties). This means those properties are used globally instead of the default properties. For more info, refer to this page: http://help.sap.com/saphelp_nw04/helpdata/en/36/e71bbee9ab4677a744d4c4484b0bf4/frameset.htm
    Next, the dispatcher and server you find under the instance xxx, are actually the elements that you've installed for your system. Changing a property on any of them applies locally, i.e. to the corresponding node (server or dispatcher).
    To set java parameters, you need to click on the dispatcher or server (depending on which element's java props you need to modify). On the right side, under General tab you'll see the Java parameters field. Here is the relevant documentation: http://help.sap.com/saphelp_nw04/helpdata/en/39/7796e0a7be604ab63c2924045710a8/frameset.htm
    Hope that helps!

  • Change request parameters

    Hi,
    I have a servlet and would like to change the request parameters before forwarding that request to another servlet.
    But how can I change the parameters? I thought it would work with request.setAttributes, but the parameters are not being changed. How can I change the parameters then???

    Hi Joberc
    1. Did you read javax.servlet.Filter API of Servlet 2.3.
    It allows us to do some filtering in between and forward to another servlet
    http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/Filter.html
    You can also search for code sample and see how it works.
    2. As for your specific question and if possible, can we view your code to see
    -- Paul.

  • Change step parameters order

    Is it possible to change the parameters order?
    Or are they locked and only defined by the connector pane?

    Hi Darkxceed
    My recommendation for doing a HAL i TestStand would be to use an object oriented approach. 
    Create a class hirachy of your instruments like the following inside of LabVIEW:
    Then use Dynamic Dispatch to make TestStand choose the instrument of interest. There is an example of using Dynamic Dispatching in TestStand here:
    TestStand Using LabVIEW OOP Truck Example
    https://decibel.ni.com/content/docs/DOC-24098
    This solution will offcourse require you to read up on creating applications using object oriented programming in LabVIEW. We at NI have a course that walks you through both the theory and practical implementation. It is called Object Oriented Programming in LabVIEW. If you have a SSP agreement, you should be able to find it as Self Paced Online Training as a part of your contract.
    There is also a good introduction to OOP in LabVIEW and HAL here:
    https://decibel.ni.com/content/docs/DOC-32506
    (There is a video embedded in the PDF)
    Best Regards
    Anders Rohde | CLD | Platinum Applications Engineer | National Instruments Denmark

  • ThSysInfo - How to change the parameters???

    Hi all,
    is it possible to change the parameters which are available with this system call...
    We have changed the hostname in our system... but with this system call we always get the old hostname... Do we have to refresh a buffer or is it not possible to change these values...
    CALL 'ThSysInfo'
          ID 'OPCODE'   FIELD OPCODE_MSGSERVER
          ID 'MSOPCODE' FIELD MS_GET_HWID
          ID 'HW_ID'    FIELD HWID
          ID 'ERRMSG'   FIELD ERRMSG.
    Any ideas?
    regards

    pllz help me what is the solution for these
    ThSysInfo - How to change the parameters???
    CALL 'ThSysInfo'
          ID 'OPCODE'        FIELD OPCODE_GET_VIRT_HOSTDATA
          ID 'PROTOCOL'      FIELD PROTOCOL
          ID 'VIRT_IDX'      FIELD VIRT_IDX
          ID 'HOST'          FIELD HOSTNAME
          ID 'PORT'          FIELD PORT.
    i want to change the hostname as by default through system it is taking some hostname but i want to change that hostname can u plzz guide me how to change that hostname as i am using these FM in my webdynpro method
    pllzz hel me as soon as

  • Comprehensive list of EP timeout parameters?

    I'm looking to document and comparing timeout parameters across our landscape of 7.3 enterprise portals. However I cant find a list of relevant parameters to look for.  Other than the "session.invalidation.timeout" parameter, what other timeout controls come into play?  Any pointers/suggestions would be appreciated.   -Thanks in advance.

    Just wanted to update this.
    Because I use Business Objects OEM, I didn't have direct support with SAP/Business Objects.  However, because of this issue (and other issues) we purchased Business Objects Edge 3.0.
    After getting BOE 3 installed/configured, I migrated those reports and underlying Business Views over.
    And guess what?   The problem still occurred on the new platform.
    I then created a support incident and the person that initially tried to help me couldn't figure out what was going on.
    However, during that time, I did try re-creating the report using a newer version of Crystal (Crystal 2008) and the problem went away.  (note, I didn't recreate the business views.. just the reports).
    So bottom line:
    I created all reports from scratch instead of using the reports that I migrated from BO XI R2/CR XI and no longer had the problem.
    The techs never figured out the exact cause of the issue.
    So far, my experience with their support has been the same on all incidents.  They don't seem to be trained (at least at the 1st level) for actually using the debug/logs/etc to help quickly pinpoint/analyze issues.  They do basically like I do (the end user) and smartly poke around and do trail/error.  I have yet to get a support tech that knew the exact nature of my issue and could solve it without this kind of trial/error approach.

  • Changing Login Parameters

    Hi All,
    We are planning to implement the Password Policy for SAP users in our organization...
    we want to change next parameters
    Login/no_automatic_user_sapstar
    Login/fails_to_session_end
    Login/password_expiration_time
    Login/min_password digit
    Login/min_password_letters
    Login/min_password_special
    Login/min_password_diff
    so I have some questions,
    first of all this change will be applied in our productive system SAP CRM  ABAP 7.0 with MSSQL
    what will be the impact when this change will be applied?, I mean the policies is inmediatly or for example it will be reflect until one user ask to be reset or until the expiration time defined will be get,
    what will happen with comunication users?, I have seen some documentation when mentiion that just communication users of certain type will be affected,  I can't understand it,, someone has experience doing that?
    so I'm worried about communication users because we have some importants users that communicate BPM(JAVA SAP) or ESB (JAVA IBM),
    thank you..
    Alfred

    Alfredo,
    To expand a bit on the answer to your first question, about when it will take effect, the answer is it depends.  It's true that the parameters don't take effect for the system until a restart, but as for when, after that, they impact the users depends on several factors.  Users will not be required to change their password until the expiration time has passed, but chances are that many of your users, if they've had accounts longer than the expiration time, will already be past that expiration time.  In that case, they will be asked to change their password with their next logons following the restart.  The exceptions will be people who have recently changed their password already or who have new user accounts.
    As for the other parameters mandating password complexity, by default they will be applied the next time the user changes their password (which, for many, will be right away, as just described), but if the current password is not yet expired, it will be allowed to stand even if it doesn't meet the complexity rules until it does expire.  You can change this, however, with another parameter:  login/password_compliance_current_policy.  By default this parameter is inactive, but if you set it to 1, then users with passwords that don't meet the current complexity requirement will be forced to change right away, even if they are not expired.
    With regard to your second question, about the impact of the new policy on your Communication users, here is the basic layout of impacts:
    User Type
    GUI Logon
    Password Rules
    Dialog
    Yes
    Yes
    System
    No
    No
    Communications
    No
    Yes*
    Service
    Yes
    No
    So yes, Communications users are subject to the password rules, but as Sunny was saying, generally the rules only impact interactive logons, and Communications users don't logon interactively (GUI Logon).  Still, if you want to be sure, you can change their type to System, and they still will not be able to logon interactively, and they will not be subject to password expiration.  Either way, they also will not be counted during license measurement.
    Best regards,
    Matt

Maybe you are looking for

  • Changing a JButton color...

    This is probably a simple question to most of you out there. I apologise in advance. I am writing a kind of robot simulator program for a university project, at the moment all I need is for the buttons in the centre window to change colour on click a

  • Restore system source in BI with an ABAP

    Hello people, Due to a refresh system from production to quality environnement, we need to restore Info source system in BI. The transaction operation is very simple : RSA1, select the info source, right click and select restore ! I'm trying to devel

  • Setting  a White Point and Black Point

    I would like to suggest for future versions of lIghtroom to have an ability to set the white point and black points similar to levels and curves in Photoshop. This would be in addition to setting middle grey in the white balance settings currently in

  • Bug of scrollbar with "scale to fit" script

    Hi, I encounter a sort of bug with this nice script "scale to fit": http://sarahjustine.com/2013/04/08/create-scale-to-fit-projects-with-adobe-edge-animate/ I create a simple animation composed of a single image (stage = 1024px X 3000px) with the scr

  • Publishing error/ no menu

    I