Skip to content

Commit 57bb869

Browse files
committed
added 'iterator.grouping.size' option to documentation
1 parent f6534c7 commit 57bb869

File tree

1 file changed

+11
-10
lines changed

1 file changed

+11
-10
lines changed

doc/dataframe.md

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -332,16 +332,17 @@ root
332332

333333
## DataFrame options
334334

335-
| Name | Description | Type | Default |
336-
| ------------------- | ------------------------------------------------------------------------------------------| --------------------- | ------- |
337-
| model | defines Redis model used to persist DataFrame, see [Persistence model](#persistence-model)| `enum [binary, hash]` | `hash` |
338-
| filter.keys.by.type | make sure the underlying data structures match persistence model | `Boolean` | `false` |
339-
| partitions.number | number of partitions (applies only when reading dataframe) | `Int` | `3` |
340-
| key.column | when writing - specifies unique column used as a Redis key, by default a key is auto-generated. <br/> When reading - specifies column name to store hash key | `String` | - |
341-
| ttl | data time to live in `seconds`. Data doesn't expire if `ttl` is less than `1` | `Int` | `0` |
342-
| infer.schema | infer schema from random row, all columns will have `String` type | `Boolean` | `false` |
343-
| max.pipeline.size | maximum number of commands per pipeline (used to batch commands) | `Int` | 100 |
344-
| scan.count | count option of SCAN command (used to iterate over keys) | `Int` | 100 |
335+
| Name | Description | Type | Default |
336+
| -----------------------| ------------------------------------------------------------------------------------------| --------------------- | ------- |
337+
| model | defines Redis model used to persist DataFrame, see [Persistence model](#persistence-model)| `enum [binary, hash]` | `hash` |
338+
| filter.keys.by.type | make sure the underlying data structures match persistence model | `Boolean` | `false` |
339+
| partitions.number | number of partitions (applies only when reading dataframe) | `Int` | `3` |
340+
| key.column | when writing - specifies unique column used as a Redis key, by default a key is auto-generated. <br/> When reading - specifies column name to store hash key | `String` | - |
341+
| ttl | data time to live in `seconds`. Data doesn't expire if `ttl` is less than `1` | `Int` | `0` |
342+
| infer.schema | infer schema from random row, all columns will have `String` type | `Boolean` | `false` |
343+
| max.pipeline.size | maximum number of commands per pipeline (used to batch commands) | `Int` | 100 |
344+
| scan.count | count option of SCAN command (used to iterate over keys) | `Int` | 100 |
345+
| iterator.grouping.size | the number of items to be grouped when iterating over underlying RDD partition | `Int` | 1000 |
345346

346347

347348
## Known limitations

0 commit comments

Comments
 (0)