Map<String, ? extends ValueSerde> edits,
String... removes) {
ParquetFileFormat<T> format = new ParquetFileFormat<T>(
"testing",
new ParquetFormatConfiguration(),
new DataModelDescriptorEditor(FieldPropertyDescriptor.extract(type))
.editAll(edits)
.removeAll(Arrays.asList(removes))
.build());
format.setConf(new org.apache.hadoop.conf.Configuration());
return format;