79121042

Date: 2024-10-24 08:38:20
Score: 1
Natty:
Report link

I just found the answer myself:

spark.read.format("com.crealytics.spark.excel") \
          .option("header", "true") \
          .option("maxByteArraySize", 200000000) \    # that's the solution!
          .schema(input_schema) \
          .load(path) \
          .display()

Source

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Self-answer (0.5):
  • Low reputation (0.5):
Posted by: the_economist