Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Run Spark code without Spark?
There's not always a Spark cluster on hand to test Spark code.
Is there some simple program that you can install locally, which has the same behavior as Spark (can run normal Spark scripts) without the performance and complexity?
1 answer
The following users marked this post as Works for me:
User | Comment | Date |
---|---|---|
matthewsnyder | (no comment) | Jul 4, 2024 at 20:08 |
As of version 2.2, installing pyspark will also install spark, so you can run pip install pyspark
or equivalent and use it in your normal python environment.
The pyspark getting started docs also include some links to live notebooks, however as of writing they seem to be unavailable.
1 comment thread