I am New to Pyspark world. I understand That Encoders are used by Spark SQl to serialize deserialize objects internally by Spark SQL. I know it is about converting Objects to spark sql internal storage types. I see lot of examples on internet about Encoders in spark scala world. I donot see any example in Pyspark world. Moreover , I could not find Encoders in any of Pyspark imports
eg.
from pyspark.sql.catalyst.encoders import RowEncoder
Does not exist in spark
infact catalyst package does not exist in pyspark. Can anyone explain why Encoders are not meaningful in Pyspark?