taeef_najib
07/08/2024, 12:14 AMkey: metadata has no fields defined, this may cause saving parquet failure as parquet doesn't support empty/null complex types [array, structs]
I tried changing the type to pa.string
and even pa.null
but that produced a type mismatch with singer schema. In postgresql, it is a dict
which is empty. But while trying to write the parquet file, empty structs is not supported.
How would you handle this kind of issue?Edgar Ramírez (Arch.dev)
07/08/2024, 12:33 AMobject
types by serializing them as JSON strings and storing them as pa.string
.taeef_najib
07/08/2024, 5:25 AM