1
次の機能は、sqs
から複数のメッセージを受信します。各メッセージは処理されなければならず、データベースはそれに応じて更新されなければならない。SQSからの複数のメッセージをどのように処理しますか?
モジュールからpull
関数を呼び出すことで、1つのメッセージを処理できます。しかし、どのように複数のメッセージに対処するには? worker
モジュールのpull
メソッドをループ内で呼び出し続けることはできません。なぜならスレッドをブロックするからです。ここで可能な最良の方法は何ですか? Worker
モジュールから
function checkMessage(){
var params = {
QueueUrl : Constant.QUEUE_URL,
VisibilityTimeout: 0,
WaitTimeSeconds: 20,
MaxNumberOfMessages: 10
}
sqs.receiveMessage(params,(err,data) => {
if(data){
var workerId = uuidV4();
// Now worker will pull the message for processing
// The worker response is returned in the callback function
Worker.pull(data,workerId,(err,respData) => {
if(respData){
// If the message was successfully processed
// set the final job status to complete and
// progress to 100%
}else{
// If the processing failed set the final
// job status to error
}
});
}
});
}
Pull
方法:
function pull(messageObject,workerId,cb){
if(messageObject){
var messageProcessed = true;
/*
* Process the message as required. Before starting the processing
* set the job status to processing.
*/
/**
* After the message has been processed, call the callback function
* inside monitor module.
*/
var callbackObject = {jobid : jobId, serverid : workerId};
if(messageProcessed){
return cb(null,callbackObject);
}else {
return cb(new Error('Failed to process messgae'),callbackObject);
}
}
}
プルをスリープ状態にしたときに/何かメッセージがないときにいつか待つときの問題は何ですか? – mootmoot