How can I somehow run spark.something in a worker? - rdd foreach spark.context
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2022 03:52 PM
i am using rdd to parallelize a function, in this function i format the record i want to save, how can i store from this function the record with a dataframe? because every time i use spark..... an error is generated Caused by: org.apache.spark.api.python.PythonException: 'RuntimeError: SparkContext should only be created and accessed on the driver.'
How can I somehow run spark. something in a worker?
code - images
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-21-2022 03:27 PM
You cannot. It is not serializable and not available on a worker. I would recommend that you use the DataFrame APIs. It should be much more performant and there are very limited reasons why RDDs should be used over a DataFrame. Your function looks like it could be converted to a user defined function.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-02-2022 11:15 PM
Hi @alexander grajales vanegas
Hope all is well! Just wanted to check in if you were able to resolve your issue and would you be happy to share the solution or mark an answer as best? Else please let us know if you need more help.
We'd love to hear from you.
Thanks!

