-
Notifications
You must be signed in to change notification settings - Fork 5.5k
[native-pos] Disable AsyncDataCache (thus prefetching) #20969
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -126,4 +126,36 @@ There is also an additional parameter: | |
| If the time period is less than or equal to the parameter value, the request | ||
| is valid. | ||
| If the time period exceeds the parameter value, the request is rejected as | ||
| authentication failure (HTTP 401). | ||
| authentication failure (HTTP 401). | ||
|
|
||
| Async Data Cache and Prefetching | ||
| -------------------------------- | ||
|
|
||
| ``num-connector-io-threads`` | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
|
||
| * **Type** ``integer`` | ||
| * **Default value:** ``30`` | ||
| * **Presto on Spark default value:** ``0`` | ||
|
|
||
| Size of IO executor for connectors to do preload/prefetch. Prefetch is | ||
| disabled if ``num-connector-io-threads`` is set to zero. | ||
|
|
||
| ``async-data-cache-enabled`` | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | ||
|
|
||
| * **Type** ``bool`` | ||
| * **Default value:** ``true`` | ||
| * **Presto on Spark default value:** ``false`` | ||
|
|
||
| Whether async data cache is enabled. Setting ``async-data-cache-enabled`` | ||
| to ``false`` disables split prefetching in table scan. | ||
|
|
||
| ``async-cache-ssd-gb`` | ||
|
||
| ^^^^^^^^^^^^^^^^^^^^^^ | ||
|
|
||
| * **Type** ``integer`` | ||
| * **Default value:** ``0`` | ||
|
||
|
|
||
| Size of the SSD cache when async data cache is enabled. Must be zero if | ||
| ``async-data-cache-enabled`` is ``false``. | ||
Uh oh!
There was an error while loading. Please reload this page.