Skip to content

Commit

Permalink
Fixed a bug in the README
Browse files Browse the repository at this point in the history
Summary:
In the latest version of new parallel read we decided to make `enableParallelRead` to be `automaticLite` by default. It is mentioned in some places of README. But in the parameters I forgot to change the default.
**Design doc/spec**:
**Docs impact**: none

Test Plan: None

Reviewers: pmishchenko-ua

Reviewed By: pmishchenko-ua

Subscribers: engineering-list

Differential Revision: https://grizzly.internal.memcompute.com/D54016
  • Loading branch information
AdalbertMemSQL committed Jan 20, 2022
1 parent b6b118b commit fa29125
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ global options have the prefix `spark.datasource.singlestore.`.
| `dbtable` | The table to query (mutually exclusive with query)
| `database` | If set, all connections will default to using this database (default: empty)
| `disablePushdown` | Disable SQL Pushdown when running queries (default: false)
| `enableParallelRead` | Enable reading data in parallel for some query shapes; one of (`disabled`, `automaticLite`, `automatic`, `forced`) (default: `disabled`)
| `enableParallelRead` | Enable reading data in parallel for some query shapes; one of (`disabled`, `automaticLite`, `automatic`, `forced`) (default: `automaticLite`)
| `parallelRead.Features` | Specify comma separated list of parallel read features that will be tried. The order in which features are listed determines their priority. Supported features: `ReadFromLeaves`, `ReadFromAggregators`, `ReadFromAggregatorsMaterialized`. Ex. `ReadFromLeaves,ReadFromAggregators` (default: `ReadFromAggregators`).
| `parallelRead.tableCreationTimeoutMS` | Number of milliseconds reader will wait for the result table creation when the `ReadFromAggregators` feature is used; 0 means no timeout (default: `0`)
| `parallelRead.tableCreationTimeoutMaterializedMS` | Number of milliseconds reader will wait for the result table creation when the `ReadFromAggregatorsMaterialized` feature is used; 0 means no timeout (default: `0`)
Expand Down

0 comments on commit fa29125

Please sign in to comment.