I have used a sequence file stage as the job's output. The file is defined as a fix length file and some of the columns can have null values. When I run the job, it gives me the following warning:
When checking operator: When validating export schema: At field "<field name>": Exporting nullable field without null handling properties
1. In Sequential File >format there is property tab null to value u can use that one
2. Use modify stage before Sequential File and handle the null value
I have tried to set the format property null field value to '' but it gives me "Error when checking operator: "record_length=fixed" (no length given) and record field format is variable-length.".
For the 2nd solution, do you mean to set the value to '' before entering the sequence file stage?