aws-samples / aws-glue-samples

AWS Glue code samples
MIT No Attribution
1.42k stars 812 forks source link

Wrong escape character in avro.schema.url #150

Open yiannis-gkoufas opened 10 months ago

yiannis-gkoufas commented 10 months ago

When doing the export from hive to S3 it creates the following:

WITH SERDEPROPERTIES (
  'avro.schema.url'='s3\\://bucket/directory/_schema.avsc')

and this cannot be parsed correctly Is it possible to fix to avoid that? Because when I replace with:

WITH SERDEPROPERTIES (
  'avro.schema.url'='s3://bucket/directory/_schema.avsc')

it works as expected