Hi, > Do you guys have this problem when casting Array<String> to String[]? > Am I missing something here :(
whenever you ask for an "array" in the schema, the avro specific compiler gives you a java.util.List, which cannot be cast to a Java array. I'm personally pretty interested in a way around this, as my data usually consists of primitive type arrays, where the overhead for a Object Collection can be prohibitive. Take care, Markus
