Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

remove uncertain description of enabling index #2781

Merged
merged 1 commit into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/userguide_2.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ Set `isolationLevel` to `NONE` to avoid large single transactions which might le
| `spark.tispark.grpc.framesize` | `2147483647` | The maximum frame size of gRPC response in bytes (default 2G) |
| `spark.tispark.grpc.timeout_in_sec` | `10` | The gRPC timeout time in seconds |
| `spark.tispark.plan.allow_agg_pushdown` | `true` | Whether aggregations are allowed to push down to TiKV (in case of busy TiKV nodes) |
| `spark.tispark.plan.allow_index_read` | `true` | Whether index is enabled in planning (which might cause heavy pressure on TiKV) |
| `spark.tispark.plan.allow_index_read` | `true` | Whether index is enabled in planning |
| `spark.tispark.index.scan_batch_size` | `20000` | The number of row key in batch for the concurrent index scan |
| `spark.tispark.index.scan_concurrency` | `5` | The maximal number of threads for index scan that retrieves row keys (shared among tasks inside each JVM) |
| `spark.tispark.table.scan_concurrency` | `512` | The maximal number of threads for table scan (shared among tasks inside each JVM) |
Expand Down
2 changes: 1 addition & 1 deletion docs/userguide_3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ spark.sql("select t1.id,t2.id from spark_catalog.default.t t1 left join tidb_cat
| `spark.tispark.grpc.framesize` | `2147483647` | The maximum frame size of gRPC response in bytes (default 2G) |
| `spark.tispark.grpc.timeout_in_sec` | `180` | The gRPC timeout time in seconds |
| `spark.tispark.plan.allow_agg_pushdown` | `true` | Whether aggregations are allowed to push down to TiKV (in case of busy TiKV nodes) |
| `spark.tispark.plan.allow_index_read` | `true` | Whether index is enabled in planning (which might cause heavy pressure on TiKV) |
| `spark.tispark.plan.allow_index_read` | `true` | Whether index is enabled in planning |
| `spark.tispark.index.scan_batch_size` | `20000` | The number of row key in batch for the concurrent index scan |
| `spark.tispark.index.scan_concurrency` | `5` | The maximal number of threads for index scan that retrieves row keys (shared among tasks inside each JVM) |
| `spark.tispark.table.scan_concurrency` | `512` | The maximal number of threads for table scan (shared among tasks inside each JVM) |
Expand Down
Loading