2 Answers
- Newest
- Most votes
- Most comments
1
Try importing specific function instead of import *. For example, "from pyspark.sql.functions import split" to import split function.
I tried replicating your problem, it complained that import * can only be used at module level. But when I changed to specific function, it worked.
Hope this help.
0
Hi ,
yes, any library you need for your custom transform should be imported within the function.
just to consider if you want to run SparkSQL you could also use the SQL transform.
hope this helps,
Relevant content
- asked 3 years ago
- AWS OFFICIALUpdated 10 months ago

so is it a best practice to run the imports within the function fo the custom transform?