So I created a small pyspark application and converted it to an egg. Uploaded it to dbfs:/FileStore/jar/xyz.egg. In ADF I used jar activity. But in Main Class Name textbox i am confused what to provide.
My Pycharm application has three files, two of them are basically Utility files that contains utility functions that I call and the content of main file is:
Main.py
from CommonUtils import appendZeros
from sampleProgram import writedf
def main():
appendZeros('zzz')
writedf()
if __name__ == "__main__":
main()
Now what to specify in 'Main class name' textbox?