zoukankan      html  css  js  c++  java
  • 自动重发错误的XI message

    Messages in XI can fail due to many reasons. Most of the common failures are due to connection failure to end systems, wrong or missing configuration settings, exceptions that weren't handled or lack of disk space for processing messages. These errors can be categorized as  those generated in 
                        I.  Integration Engine
                        II. Adapter Engine.

    I. Errors in Integration Engine

    a)  qRFC Errors

    在inbound queues里常常会出出SYSFAIL 状态的数据,当出现这个错误后,整个queue将无法处理,你可以手工的触发queue重新处理,使用t-code:smqr 或者smq2 ,

    image

    可以设置下列参数,实现message queue自动重发
    MONITOR QRFC_RESTART_ALLOWED to value 1

    image

    也可以自定义job report RSQIWKEX ,使之周期性运行.

    b) tRFC Errors
    Like qRFC errors one can either manually or automatically initiated processing of messages hanged tRFC calls.
    Manual Resend of messages: Use transaction SM58 and check through the list. If necessary, start hanging tRFC calls
    under the Edit menu by choosing Execute LUWs.
    For automatic tRfC failure recover, schedule the report RSARFCEX for periodic execution.

    c) Other Errors
    All the errors generated and captured in Integration engine can be viewed using transaction SXMB_MONI. Message that were sent asynchronously and had failed due transient system/configuration failures can be manually restarted in SXMB_MONI.

    image

    But would it be fun to restart many messages manually. What is required is a way to be able to automatically resend messages that error out. Thankfully there are many ways of doing this in XI.

    Option 1
    IS_Retry
    A batch job( internal in XI) is automatically scheduled to reprocess the entry after 2 minutes.
    If the maximum number of retries was reached (10 by default; IS configuration parameter
    TUNING IS_RETRY_LIMIT), a communication error then causes a SYSFAIL status for a queue.
     

    Option 2 The problem with setting IS_RETRY is that every message with a failure status will be retried every 2minitues till the maximum number of retries is reached. Since there is no control on the retry period , a high retry count could cause excessive load on XI. The other option is to do Mass Restart  by scheduling the report RSXMB_RESTART_MESSAGES at a predetermined retry period like 1hr. There is a catch here, RSXMB_RESTART_MESSAGES tries to restart a failed message 800 times by default. So if there is a message that failed due to genuine reasons, we may want to limit the number of retries. It is recommend by SAP to reduce the retry count to 20 restarts. (You can always manually restart a message, from the monitor, up to 990 times).


    This value can be maintained in SXMB_ADM-> specific configuration 'DELETION'  'MAX_VERSION'    'BATCH_RETRY' . If you don't see the DELETION category , you must run the report RSXMB_CREATE_CONF_ENTRIES3 to generate the configuration parameter.


    Finally here is the table that describes ways to handle resubmit of errors in Integration Engine

    Type of Error

    Manual Start

    Automatic Start

    qRFC

    SMQ2

    RSQIWKEX

    tRFC

    SM58

    RSARFCEX

    OTHER errors

    SXMB_MONI

    RSXMB_RESTART_MESSAGES


    II. Errors in Adapter Engine
    Till now we have seen how to resubmit/restart message that failed in Integration Engine.  One a message makes it from Integration Engine to Adapter Engine, the message is flagged as checked in Integration Engine. The status of the message in Adapter engine does not effect the processed state in Integration Engine. Now if this message was asynchronous, XI will by default try to restart the message 3 times at intervals of 5 minutes before the status of the message is changed from Waiting to System Error .

    image


    image


    image

    As shown in the above figures a message is initially put into waiting status, XI tries 3 times before changing the status of the message to System Error. One can Manually resend the error messages by using the RESEND button in RWB. In scenarios where XI was trying to send the message to an end system that was down for maintenance, you would want XI to resubmit the message automatically without human intervention. What would be nice is to able to tune the retries like IS_Retry which is available for Integration engine.
    We can achieve this by changing the retry count used by the Adapter Engine, by default its set to 3 times, 5 minutes apart. This count can be changed in Visual Admin->server->services-> SAP XI Adapter: XI.
    Here  change the number Retries parameter from 3 to 10 and change the retry retryInterval to around 10minutes. For these configuration changes to be picked up, restart SAP XI Adapter: XI.
     

    Conclusion
    Error in XI are inevitable, but when they occur we should be able to restart or resend the messages in a way that requires minimal human intervention, especially if the errors were due to system outage or system memory exceptions. In this weblog I have tried to list out the most commonly occurring errors and the many ways of  restarting these messages.

  • 相关阅读:
    洛谷 P3353【在你窗外闪耀的星星】
    SpirngMVC源码分析
    处理器映射器(HandlerMapping)及处理器适配器(HandlerAdapter)详解(二)
    关于 DispatcherServlet.properties 文件
    处理器映射器(HandlerMapping)及处理器适配器(HandlerAdapter)详解(一)
    SpringMVC的入门程序
    Spring工作原理:初识SpringMVC
    Spring的事务管理
    Spring配置连接池和 Dao 层使用 jdbcTemplate
    Spring 的 jdbcTemplate 操作
  • 原文地址:https://www.cnblogs.com/byfhd/p/1252166.html
Copyright © 2011-2022 走看看