-2

Can I use avro DataFileWriter with schema registry?

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245

1 Answers1

0

You cannot write files into the registry, so, not really.

You can use DataFileReader to get a schema and POST to the Registry.

You can use Registry to get a different schema than the one included in the file (for example, you're doing schema evolution)

OneCricketeer
  • 179,855
  • 19
  • 132
  • 245