Skip to content

Commit

Permalink
Merge pull request #215 from RedisLabs/fix-issue-206-document-datafra…
Browse files Browse the repository at this point in the history
…me-specific-connection-settings

fix #206: document dataframe specific options to override Redis conne…
  • Loading branch information
gkorland authored Feb 13, 2020
2 parents 585c44e + e60a0c3 commit 6a19452
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions doc/dataframe.md
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,11 @@ root
| max.pipeline.size | maximum number of commands per pipeline (used to batch commands) | `Int` | 100 |
| scan.count | count option of SCAN command (used to iterate over keys) | `Int` | 100 |
| iterator.grouping.size | the number of items to be grouped when iterating over underlying RDD partition | `Int` | 1000 |
| host | overrides `spark.redis.host` configured in SparkSession (if set, any other connection setting from SparkSession is ignored ) | `String` | `localhost` |
| port | overrides `spark.redis.port` configured in SparkSession (if set, any other connection setting from SparkSession is ignored ) | `Int` | `6379` |
| auth | overrides `spark.redis.auth` configured in SparkSession (if set, any other connection setting from SparkSession is ignored ) | `String` | - |
| dbNum | overrides `spark.redis.dbNum` configured in SparkSession (if set, any other connection setting from SparkSession is ignored ) | `Int` | `0` |
| timeout | overrides `spark.redis.timeout` configured in SparkSession (if set, any other connection setting from SparkSession is ignored ) | `Int` | `2000` |


## Known limitations
Expand Down

0 comments on commit 6a19452

Please sign in to comment.