Nukul Sharma

Results 3 comments of Nukul Sharma

> Interesting.. Have you tried to set this ratio? > > ```scala > ZipSecureFile.setMinInflateRatio(0) > adv2 = spark.read > .format("com.crealytics.spark.excel") > .option("header", "true") > .option("inferSchema", "true") > .load("test.xlsx") > ```...

In addition, i have tried , it is not getting set. ``` ZipSecureFile.setMinInflateRatio(0) val data = spark.read.format("com.crealytics.spark.excel") .option("header", value = true) .option("inferSchema", "true") .option("sheetName", "sheetname1") .option("maxRowsInMemory", 4) .load("./data/sample.xlsx") data.printSchema() ```...

I solved it by writing a spark scala ( python , i couldnt set minInflateRatio on ZipSecureFile to 0. I was making a mistake by using poi native ZipSecureFile version,...