I try to read an Avro file, make a basic transformation (remove records with name = Ben) using Wrangler and write the result as JSON file into google cloud storage. The Avro file has the following schema:
{ "type": "record", "name": "etlSchemaBody", "fields": [ { "type": "string", "name": "name" } ] }
Transformation in wrangler is the following: transformation
The following is the output schema for JSON file: output schema
When I run the pipeline it runs successfully and the JSON file is created in cloud storage. But the JSON output is empty. When trying a preview run I get the following message: warning message
Why is the JSON output file in gcloud storage empty?

