OOP programming in Pyspark on Databricks platform
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2023 10:30 PM
Hello Expert,
I have a doubt so I need your advice and opinion on below query.
Does OOP is a good chioce of programming for distributed data processing ? like Pysaprk in Databricks platform ? If not then what it is and what kinfd of challenges could be there ? or will the functional programming approach be the best option in this case?
Please help me to understand the concept.
Thanks!!!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-31-2025 11:31 PM
Functional programming is generally better suited for distributed data processing with PySpark on Databricks due to its emphasis on immutability, stateless operations, and higher-order functions. These features align well with Spark's execution model and make it easier to write scalable and maintainable code. While OOP can be used, it introduces additional complexity and challenges that are better avoided in a distributed environment.

