summaryrefslogtreecommitdiff
path: root/plugins/jobs/drivers/sqs/item.go
diff options
context:
space:
mode:
authorValery Piashchynski <[email protected]>2021-08-12 11:28:45 +0300
committerValery Piashchynski <[email protected]>2021-08-12 11:28:45 +0300
commit4169e8374f581ba2213f8cd1833cc6b9b84438e8 (patch)
treeb1d911fbd0ef5960c0513553d8be94809db8b14b /plugins/jobs/drivers/sqs/item.go
parentbf2f7167ae49ecac981c7c18a9b9b496fd0a514c (diff)
Fix various bugs in the SQS. Implement SQS tests for the
jobs_ok.php/jobs_err.php workers. Signed-off-by: Valery Piashchynski <[email protected]>
Diffstat (limited to 'plugins/jobs/drivers/sqs/item.go')
-rw-r--r--plugins/jobs/drivers/sqs/item.go30
1 files changed, 26 insertions, 4 deletions
diff --git a/plugins/jobs/drivers/sqs/item.go b/plugins/jobs/drivers/sqs/item.go
index f5fac0b3..eac06731 100644
--- a/plugins/jobs/drivers/sqs/item.go
+++ b/plugins/jobs/drivers/sqs/item.go
@@ -17,6 +17,7 @@ import (
const (
StringType string = "String"
NumberType string = "Number"
+ BinaryType string = "Binary"
ApproximateReceiveCount string = "ApproximateReceiveCount"
)
@@ -25,6 +26,7 @@ var itemAttributes = []string{
job.RRDelay,
job.RRTimeout,
job.RRPriority,
+ job.RRHeaders,
}
type Item struct {
@@ -128,7 +130,13 @@ func (i *Item) Ack() error {
}
func (i *Item) Nack() error {
- _, err := i.Options.client.DeleteMessage(context.Background(), &sqs.DeleteMessageInput{
+ // requeue message
+ err := i.Options.requeueFn(context.Background(), i)
+ if err != nil {
+ return err
+ }
+
+ _, err = i.Options.client.DeleteMessage(context.Background(), &sqs.DeleteMessageInput{
QueueUrl: i.Options.queue,
ReceiptHandle: i.Options.receiptHandler,
})
@@ -183,7 +191,13 @@ func fromJob(job *job.Job) *Item {
}
}
-func (i *Item) pack(queue *string) *sqs.SendMessageInput {
+func (i *Item) pack(queue *string) (*sqs.SendMessageInput, error) {
+ // pack headers map
+ data, err := json.Marshal(i.Headers)
+ if err != nil {
+ return nil, err
+ }
+
return &sqs.SendMessageInput{
MessageBody: aws.String(i.Payload),
QueueUrl: queue,
@@ -192,9 +206,10 @@ func (i *Item) pack(queue *string) *sqs.SendMessageInput {
job.RRJob: {DataType: aws.String(StringType), BinaryValue: nil, BinaryListValues: nil, StringListValues: nil, StringValue: aws.String(i.Job)},
job.RRDelay: {DataType: aws.String(StringType), BinaryValue: nil, BinaryListValues: nil, StringListValues: nil, StringValue: aws.String(strconv.Itoa(int(i.Options.Delay)))},
job.RRTimeout: {DataType: aws.String(StringType), BinaryValue: nil, BinaryListValues: nil, StringListValues: nil, StringValue: aws.String(strconv.Itoa(int(i.Options.Timeout)))},
+ job.RRHeaders: {DataType: aws.String(BinaryType), BinaryValue: data, BinaryListValues: nil, StringListValues: nil, StringValue: nil},
job.RRPriority: {DataType: aws.String(NumberType), BinaryValue: nil, BinaryListValues: nil, StringListValues: nil, StringValue: aws.String(strconv.Itoa(int(i.Options.Priority)))},
},
- }
+ }, nil
}
func (j *JobConsumer) unpack(msg *types.Message) (*Item, error) {
@@ -210,6 +225,12 @@ func (j *JobConsumer) unpack(msg *types.Message) (*Item, error) {
}
}
+ var h map[string][]string
+ err := json.Unmarshal(msg.MessageAttributes[job.RRHeaders].BinaryValue, &h)
+ if err != nil {
+ return nil, err
+ }
+
delay, err := strconv.Atoi(*msg.MessageAttributes[job.RRDelay].StringValue)
if err != nil {
return nil, errors.E(op, err)
@@ -233,6 +254,7 @@ func (j *JobConsumer) unpack(msg *types.Message) (*Item, error) {
item := &Item{
Job: *msg.MessageAttributes[job.RRJob].StringValue,
Payload: *msg.Body,
+ Headers: h,
Options: &Options{
Delay: int64(delay),
Timeout: int64(to),
@@ -241,7 +263,7 @@ func (j *JobConsumer) unpack(msg *types.Message) (*Item, error) {
// private
approxReceiveCount: int64(recCount),
client: j.client,
- queue: j.queue,
+ queue: j.queueURL,
receiptHandler: msg.ReceiptHandle,
requeueFn: j.handleItem,
},