問題タブ [dead-letter]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
jms - How to go about messages in Dead Letter Queue
We are using WebLogic 10.3.6.0 and IBM MQ 7.5. Application design is to send messages to a dead letter queue (in WebLogic) on re-delivery. The re-delivery happens as the first delivery has failed due to some network issue or database data source failure.
My Client wants a way to browse the messages in the dead letter queue from the application GUI and pull them for processing when the network issue or data source issue has been resolved.
What is the best way to go about this?
I cam across QueueBrowser coupled with activemq or some other implementation. Is QueueBrowser possible with WebLogic? Please suggest on best ways to achieve this requirement. Kindly pardon if my question is too naive. I am only a PL/SQL programmer.
azure - Azure Web ジョブ、キューで利用可能な古いメッセージに対してサービス バス トリガーがトリガーされない
Azure Service Bus からのメッセージを使用するために、Azure Web ジョブを実装しました。サービス バス トリガーは、サービス バスに到着した新しいメッセージに対しては正常に機能しますが、サービス開始前にサービス バスで既に利用可能だったメッセージを取得しません。既存のメッセージを Web ジョブに送信するための構成はありますか?
何らかの理由で、一部のメッセージが放棄されました。これらのメッセージを再処理する最善の方法は何ですか?
java - Akka-Java が ask-await で DeadLetterException をスローしている
このようなファイルにドライバー/メインクラスがあります。(基本的にはSTORMとAKKAをミックスしようとしています)。TenderEventSpout2 クラスで、アクターとの間でメッセージを送受信しようとしています。
私のアクターは:
}
EventSpoutActor にメッセージを送信できます。しかし、メッセージの受信に問題が発生しています。何故ですか??コンソールに次のメッセージが表示されます。
f# - 親アクターを停止するときの DeathWatchNotification
次のアクター階層があります。
は、receiver
HTTP 要求の処理を担当します。リクエストが来ると、このアクターは子アクターをcoordinator
(実際には動的な名前で) 作成します。
が作業を終了した後、coordinator
を実行しContext.Stop(Self)
ます。これにより、すべての子が正常に停止しますが、コンソールに次のメッセージが表示されます。
[INFO][23.05.2016 08:48:45][スレッド 0013][akka://FSharpSystem/user/receiver/$b] akka://FSharpSystem/user/receiver/$b から akka:/ へのメッセージ DeathWatchNotification /FSharpSystem/user/receiver/$b は配信されませんでした。1 件のデッド レターが発生しました。
[INFO][23.05.2016 08:48:45][スレッド 0013][akka://FSharpSystem/user/receiver/$b] akka://FSharpSystem/user/receiver/$b から akka:/ へのメッセージ DeathWatchNotification /FSharpSystem/user/receiver/$b は配信されませんでした。デッドレターが 2 件見つかりました。
[INFO][23.05.2016 08:48:45][スレッド 0013][akka://FSharpSystem/user/receiver/$b] akka://FSharpSystem/user/receiver/$b から akka:/ へのメッセージ DeathWatchNotification /FSharpSystem/user/receiver/$b は配信されませんでした。デッドレターが 3 件見つかりました。
DeathWatchNotification
3 つのアクターすべてが に aを送信しているように見えますcoordinator
($b は動的な名前です)。この通知を購読していないため、ログに表示したくありません。この動作を無効にする方法 (できれば F#)?
PSここにサンプルコードの要点があります。