Enable Delta Lake in EMR

To enable Delta Lake support for AWS EMR, update the configuration in the emr template as shown below. Then, create a new emr cluster using this template:

JSON
1
2
3
4
5
6
 {
   "Classification":"delta-defaults",
   "ConfigurationProperties":{
      "delta.enabled":"true"
   }
 }

Comments