Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-20-2022 08:21 AM
spark.conf.set("spark.scheduler.mode", "FAIR")
sc.setLocalProperty("spark.scheduler.pool", "pool1")Please use the above conf setting to enable FAIR (round robin) mode instead of default FIFO.
Using the above example, you can also set a separate pool for each job/notebook.
My blog: https://databrickster.medium.com/