Hi,
Instead of passing the Redis credential in the spark session creation moment, Is it possible to pass the info at reading or writing time?
Something like:
conf = df.write \
.option("url", self.url) \
.option("user", self.user) \
.option("password", self.password).save()