Mauricio Rojas Fernandez
Mauricio Rojas Fernandez
Sure common DataFrame Writer patterns: ``` # Write CSV file with column header (column names) df.write.option("header",True) \ .csv("/tmp/spark_output/zipcodes") ``` ``` # Other CSV options df2.write.options(header='True', delimiter=',') \ .csv("/tmp/spark_output/zipcodes") ``` ```...
Hi @Wittline do you think it will possible to consider this change ?
Sure. Currently the code depends on the multiprocessing lib. The problem is that in some environments I cannot spawn new processes. I think there is PR using job lib that...
Mauricio Rojas / Snowflake
@karuppayya sorry to bother. I am able to get the action and called from Java liek this: actions.computeTableStats(table).columns(columns.toArray(new String[0])).execute(); What what will be the Spark SQL / Pypsark ways to...
@sfc-gh-aalam is this ready to merge? or there is something else missing
@Zyiqin-Miranda is there any progress on supporting equality deletes in pyiceberg ?