org.apache.nifi.processors.aws.sqs.DeleteSQS.java Source code

Java tutorial

Introduction

Here is the source code for org.apache.nifi.processors.aws.sqs.DeleteSQS.java

Source

/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to You under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.apache.nifi.processors.aws.sqs;

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;

import org.apache.nifi.annotation.behavior.InputRequirement;
import org.apache.nifi.annotation.behavior.InputRequirement.Requirement;
import org.apache.nifi.annotation.behavior.SupportsBatching;
import org.apache.nifi.annotation.documentation.CapabilityDescription;
import org.apache.nifi.annotation.documentation.SeeAlso;
import org.apache.nifi.annotation.documentation.Tags;
import org.apache.nifi.components.PropertyDescriptor;
import org.apache.nifi.flowfile.FlowFile;
import org.apache.nifi.processor.ProcessContext;
import org.apache.nifi.processor.ProcessSession;
import org.apache.nifi.processor.util.StandardValidators;

import com.amazonaws.services.sqs.AmazonSQSClient;
import com.amazonaws.services.sqs.model.DeleteMessageBatchRequest;
import com.amazonaws.services.sqs.model.DeleteMessageBatchRequestEntry;

@SupportsBatching
@SeeAlso({ GetSQS.class, PutSQS.class })
@InputRequirement(Requirement.INPUT_REQUIRED)
@Tags({ "Amazon", "AWS", "SQS", "Queue", "Delete" })
@CapabilityDescription("Deletes a message from an Amazon Simple Queuing Service Queue")
public class DeleteSQS extends AbstractSQSProcessor {

    public static final PropertyDescriptor RECEIPT_HANDLE = new PropertyDescriptor.Builder().name("Receipt Handle")
            .description("The identifier that specifies the receipt of the message")
            .expressionLanguageSupported(true).required(true).addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
            .defaultValue("${sqs.receipt.handle}").build();

    public static final List<PropertyDescriptor> properties = Collections
            .unmodifiableList(Arrays.asList(ACCESS_KEY, SECRET_KEY, CREDENTIALS_FILE,
                    AWS_CREDENTIALS_PROVIDER_SERVICE, REGION, QUEUE_URL, TIMEOUT, PROXY_HOST, PROXY_HOST_PORT));

    @Override
    protected List<PropertyDescriptor> getSupportedPropertyDescriptors() {
        return properties;
    }

    @Override
    public void onTrigger(final ProcessContext context, final ProcessSession session) {
        List<FlowFile> flowFiles = session.get(1);
        if (flowFiles.isEmpty()) {
            return;
        }

        final FlowFile firstFlowFile = flowFiles.get(0);
        final String queueUrl = context.getProperty(QUEUE_URL).evaluateAttributeExpressions(firstFlowFile)
                .getValue();

        final AmazonSQSClient client = getClient();
        final DeleteMessageBatchRequest request = new DeleteMessageBatchRequest();
        request.setQueueUrl(queueUrl);

        final List<DeleteMessageBatchRequestEntry> entries = new ArrayList<>(flowFiles.size());

        for (final FlowFile flowFile : flowFiles) {
            final DeleteMessageBatchRequestEntry entry = new DeleteMessageBatchRequestEntry();
            entry.setReceiptHandle(
                    context.getProperty(RECEIPT_HANDLE).evaluateAttributeExpressions(flowFile).getValue());
            entries.add(entry);
        }

        request.setEntries(entries);

        try {
            client.deleteMessageBatch(request);
            getLogger().info("Successfully deleted {} objects from SQS", new Object[] { flowFiles.size() });
            session.transfer(flowFiles, REL_SUCCESS);
        } catch (final Exception e) {
            getLogger().error("Failed to delete {} objects from SQS due to {}",
                    new Object[] { flowFiles.size(), e });
            final List<FlowFile> penalizedFlowFiles = new ArrayList<>();
            for (final FlowFile flowFile : flowFiles) {
                penalizedFlowFiles.add(session.penalize(flowFile));
            }
            session.transfer(penalizedFlowFiles, REL_FAILURE);
        }
    }

}