Message Transfer Agent Error Classification for Crash Prevention

Resolve Bottlenecks,
Find Innovative Solutions
Generate Solutions

Solution Overview

Problem

Message services often experience downtime due to nefarious messages that cause repeated crashes, and existing systems lack the ability to differentiate between transient and permanent errors, leading to inefficient retry strategies that can exacerbate the issue.

Innovation Solution

Implementing a message transfer agent with a transaction result detector and analyzer that monitors message transfers, distinguishes between suspicious and non-suspicious errors, and limits resend attempts based on a crash count threshold to prevent further crashes and downtime.

Engineering Contradictions & Design Principles

VSEngineering Contradiction Analysis

1Reliability

If the service attempts to resend messages after a crash, then message delivery reliability is improved, but the service may be vulnerable to repeated attacks and crashes

Engineering Contradiction:
Improvemessage delivery reliabilityVSAvoidrepeated crashes from nefarious messages
Core Design Contradiction:
ReliabilityVSObject-affected harmful factors

Solution Approach 1:

The system performs preliminary actions by detecting transaction failures and analyzing error types before attempting message resends. By identifying suspicious errors early and determining whether they are transient or permanent, the system prepares appropriate responses in advance, preventing repeated crashes while maintaining reliable message delivery for legitimate messages.

Inventive Principle:
Principle #10Preliminary action

Solution Approach 2:

The system changes the parameter of resend behavior based on error type analysis. For transient errors, the system allows resends with standard retry logic. For suspicious or permanent errors, the system modifies the resend parameter to limit or prevent retry attempts, thereby adapting the message delivery behavior to the specific error condition and avoiding repeated crashes from nefarious messages.

Inventive Principle:
Principle #35Parameter changes

2Stability of the object's composition

If the service limits resend attempts to prevent crashes, then service stability is improved, but message delivery for transient errors may be affected

Engineering Contradiction:
Improveservice stabilityVSAvoidmessage delivery for transient errors
Core Design Contradiction:
Stability of the object's compositionVSReliability

Solution Approach 1:

The system segments error types into distinct categories: transient errors, suspicious errors, and permanent errors. This segmentation allows the system to apply different resend strategies to each category, ensuring that transient errors receive appropriate retry attempts while suspicious and permanent errors are limited or blocked, thereby maintaining both service stability and message delivery reliability.

Inventive Principle:
Principle #1Segmentation

Solution Approach 2:

The system implements feedback by monitoring transaction results and error types, then using this information to dynamically adjust resend behavior. The feedback loop analyzes whether errors are transient or suspicious, and automatically modifies subsequent resend attempts accordingly, ensuring that service stability is maintained while still allowing legitimate transient errors to be delivered successfully.

Inventive Principle:
Principle #23Feedback

3Measurement precision

If the service monitors and analyzes transaction results, then the ability to differentiate error types is improved, but system complexity increases

Engineering Contradiction:
Improveerror type differentiationVSAvoidsystem complexity
Core Design Contradiction:
Measurement precisionVSDevice complexity

Solution Approach 1:

The system performs preliminary error classification by analyzing transaction results immediately when failures occur. By detecting and categorizing error types at the point of failure, the system establishes precise error differentiation early in the process, enabling subsequent automated responses without requiring complex ongoing analysis infrastructure.

Inventive Principle:
Principle #10Preliminary action

Solution Approach 2:

The system implements self-service by autonomously monitoring its own transaction results and analyzing error types without external intervention. The message transfer agent independently detects failures, determines whether they are transient or suspicious, and adjusts resend behavior accordingly, reducing the need for external monitoring systems and simplifying the overall architecture while maintaining high measurement precision.

Inventive Principle:
Principle #25Self-service

Data Source

PatentUS9350494B2Message service downtime
Publication Date: 2016.05.24 MICROSOFT TECHNOLOGY LICENSING LLC
  • US9350494B2 patent drawing
  • US9350494B2 patent drawing
  • US9350494B2 patent drawing

AI summary

The description relates to addressing the downtime of a message service. One example can include determining that an error occurred during a message send process. A decision can be made whether the error is a suspicious error or a non-suspicious error. In an instance where the error is a suspicious error, any resend attempts can be limited to a number of times defined by a crash count threshold.