Glue Studio Designer: use pyspark functions

0

I designed a glue job using Glue studio designer canvas feature and am using a custom transform in there. However, I am struggling to leverage functions like the ones from 'from pyspark.sql.functions import *' in the code as I get error "NameError: name xyz not defined.
How can I leverage these functions in the canvas tool?

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

AWS
Marco
asked 2 years ago625 views
2 Answers
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.

AWS-TDN
answered 2 years ago
AWS
EXPERT
reviewed 2 years ago
0
Accepted Answer

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,

AWS
EXPERT
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions