I'd love to use sail for faster local development of PySpark code - and on the long run maybe even execute production workloads on sail.
However, currently sail does not have 100% feature parity with PySpark.
So, I need to check if at the PySpark functions that we use are already supported by sail - and I need to repeat this after every sail release.
What I do is to search our code repo for import pyspark.sql.function occurrences and identify the function names that we use.
Then I need to cross reference this with the sail documentation: https://docs.lakesail.com/sail/main/guide/functions/scalar.html
I think it would be very helpful if sail came with a "compatibility checker" that automates this and highlights gaps.