Skip to content

Commit 6a19452

Browse files
authored
Merge pull request #215 from RedisLabs/fix-issue-206-document-dataframe-specific-connection-settings
fix #206: document dataframe specific options to override Redis conne…
2 parents 585c44e + e60a0c3 commit 6a19452

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

doc/dataframe.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -341,6 +341,11 @@ root
341341
| max.pipeline.size | maximum number of commands per pipeline (used to batch commands) | `Int` | 100 |
342342
| scan.count | count option of SCAN command (used to iterate over keys) | `Int` | 100 |
343343
| iterator.grouping.size | the number of items to be grouped when iterating over underlying RDD partition | `Int` | 1000 |
344+
| host | overrides `spark.redis.host` configured in SparkSession (if set, any other connection setting from SparkSession is ignored ) | `String` | `localhost` |
345+
| port | overrides `spark.redis.port` configured in SparkSession (if set, any other connection setting from SparkSession is ignored ) | `Int` | `6379` |
346+
| auth | overrides `spark.redis.auth` configured in SparkSession (if set, any other connection setting from SparkSession is ignored ) | `String` | - |
347+
| dbNum | overrides `spark.redis.dbNum` configured in SparkSession (if set, any other connection setting from SparkSession is ignored ) | `Int` | `0` |
348+
| timeout | overrides `spark.redis.timeout` configured in SparkSession (if set, any other connection setting from SparkSession is ignored ) | `Int` | `2000` |
344349

345350

346351
## Known limitations

0 commit comments

Comments
 (0)