Filter activity Failing when input is empty in ADF

Prapul Kumar Dongari 116 Reputation points
2024-02-01T13:41:05.48+00:00

Hi team , In my pipeline I'm using filter activity to filter desired items from json when input to filter is output of another filter activity(which returned out with empty array) as attached in screen shot. please help me how to handle failure. User's image

output of first filter: User's image

error message at second filter: User's image

Azure Databricks
Azure Databricks
An Apache Spark-based analytics platform optimized for Azure.
Azure Data Factory
Azure Data Factory
An Azure service for ingesting, preparing, and transforming data at scale.
{count} votes

Answer accepted by question author
  1. Harishga 6,005 Reputation points Microsoft External Staff
    2024-02-05T04:42:42.3933333+00:00

    Hi Prapul Kumar Dongari
    Welcome to Microsoft Q&A platform and thanks for posting your question. I'm glad that you were able to resolve your issue and thank you for posting your solution so that others experiencing the same thing can easily reference this! Since the Microsoft Q&A community has a policy that "The question author cannot accept their own answer. They can only accept answers by others "I'll repost your solution in case you'd like to accept the answer. Ask: In my pipeline I'm using filter activity to filter desired items from json when input to filter is output of another filter activity (which returned out with empty array) Solution:

    Hi tried with new logic its working as expected.
    
    SQL
    
    AI Convert
    
    Copy
    @if(
        empty(activity('previous_act_name').output.value),
        json('[]'),
        activity('previous_act_name').output.value[0].Params
    )
    

    If you have any other questions, please let me know. Thank you again for your time and patience throughout this issue.

    ---Please don’t forget to Accept Answer and Yes for "was this answer helpful" wherever the information provided helps you, this can be beneficial to other community members.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.