MotanFrameworkException(框架异常)

框架异常,比如系统启动、关闭、服务暴露、服务注册等非请求时抛的异常,

状态码错误码异常日志处理建议
50320001RefererConfig is malformed, for protocol not set correctly!服务暴露过程中未定义暴露协议,需要增加暴露协议,例如motan
50320001%s false to registery/unregistery/subscribe/unsubscribe %s to %s服务注册失败/取消失败/订阅/取消订阅,当check为true抛出此异常,当check为false,转入后台线程进行重试,当失败,将会往warn日志中记录False when retry in failback registry。需要检查config server的配置是否正确,config server是否可用。
50320001ExtensionLoader loadExtensionClasses error, prefix:motan通过加载各个定义组件进行提供服务,当加载组件出现错误抛出此异常,需要检查扩展组件是否正确加载。
50320001provider alread exist暴露的服务已经存在,区分服务的唯一性标志为group/interface/version
50320001Class must be interface!暴露的服务必须为Interface
50320001RequestRouter handler(channel, message) params is null服务处理事件缺少channel或者message,检查服务暴露是否正常
50320001RequestRouter message type not support:服务接收到到非request时抛出的异常
50320001XXX call Error: node is not available XXX某一个服务节点出现不可达状态。如果节点是可用状态,同时当前连续失败的次数超过限制maxClientConnection次,那么把该节点标示为不可用。此时需要确认是否该服务节点存在问题。
50320001HeartbeatFactory not exist: XXX定义的心跳监测类不存在,此类异常通常出现在扩展心跳监测类过程中抛出,需要检查是否定义正确
50320001NettyDecoder transport header not support, type: XX不支持codec的方式,需要确认通信的编码方式是否对应。
50320002encode error: isResponse=使用编码协议进行encode失败,检查codec方式是否有问题。
50320003decode error: format problem使用编码协议进行decode失败,检查codec方式是否有问题。
50020004Error when append params for config: / class.configDesc should not be null or empty配置项中的required值未定义,导致初始化失败,例如ProtocolConfig中的Name属性
50020004ServiceConfig must config right export value/has a registryConfig!检查ServiceConfig是否定义了export值以及protocol或者registry。
50020004RefererConfig must has one protocolConfig/registryConfig!检查RefererConfig是否定义了protocol或者registry
50020004"The interface XX has more than one method YY , must set argumentTypes attribute."暴露的方法定义与真实的暴露方法不一致,找不到定义的方法
50020004configService is malformed, for same service (%s) already exists暴露的服务已经存在,需要检查暴露的服务是否存在重复定义,服务的唯一标志:group/interface/version
50020004Please config local server hostname with intranet IP first!暴露服务的机器未配置本地hostname,导致服务暴露过程中无法找到暴露服务的ip
50020004Create registry false for url:无法创建注册中心,需要查看registry的配置是否正确
50020004node init Error:创建服务节点失败,问题可能发生在于无法启动netty server或者client
50020004ReferereConfig initRef Error: Class not foundclient端无法找到使用的接口,检查是否引入了正确的依赖包
50020004Service export Error: share channel but some config param is different, protocol or codec or serialize or maxContentLength or maxServerConnection or maxWorkerThread or heartbeatFactory, source=多个服务共享service channel(port) 对外提供服务,需要保持protocol、codec、serialize、maxContentLength、maxServerConnection、maxWorkerThread、heartbeatFactory一致