Supposed that I have this kind of xml structure:
<xml version = "1.0" encoding = "UTF-8"?>
<a>
<title = "Kurosaki Ichigo"
tel = "123-456, 234-567"
class = "Employee"
id = "EM-02"/>
<title = "Abarai Renji"
tel = "345-678, 456-789"
class = "Employee"
id = "EM-03"/>
<title = "Aizen Sosuke"
tel = "567-890, 012-345"
class = "Employee"
id = "EM-04"/>
</a>
I want to let Databricks (Pyspark) read this data. How can I set up the options and other parameters?