at a point it probably makes sense to pair program...
# daft-dev
a
at a point it probably makes sense to pair program soon. (perhaps @Desmond Cheong ) trying to impl https://github.com/Eventual-Inc/Daft/blob/b00d23c3e42ae506527341673847d27e52708fbe/src/daft-connect/src/command.rs#L9-L63
.
could also be someone else
just requires general daft knowledge probably
connect.py
I heard we cannot do ranges in daft atm... how could I rewrite this to be a simple thing I can impl?
d
Copy code
df = spark.range(5)
df.write.mode("overwrite").parquet("myparquet.parquet")
is just a convenient way for you to generate a parquet file. For spark connect, let's just focus on one line:
Copy code
df.filter(col("id") > 2).withColumn("id2", col("id") + 2).show()
a
@Desmond Cheong or @Colin Ho either of you willing to pair program? trying to impl somehing like this
im @Desmond Cheong @Colin Ho I am going to grab my shirt. I will be back
c
how did you get the image on the left?
a
image on left is protobuf sent in @Colin Ho
print("\nDataFrame content:") df.show()