Skip to content

Commit 78528b1

Browse files
committed
add doc
1 parent 8e002f6 commit 78528b1

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
<table class="configuration table table-bordered">
2+
<thead>
3+
<tr>
4+
<th class="text-left" style="width: 20%">Key</th>
5+
<th class="text-left" style="width: 15%">Default</th>
6+
<th class="text-left" style="width: 10%">Type</th>
7+
<th class="text-left" style="width: 55%">Description</th>
8+
</tr>
9+
</thead>
10+
<tbody>
11+
<tr>
12+
<td><h5>async</h5></td>
13+
<td style="word-wrap: break-word;">(none)</td>
14+
<td>Boolean</td>
15+
<td>Value can be 'true' or 'false' to suggest the planner choose the corresponding predict function. If the backend search function provider does not support the suggested mode, it will throw exception to notify users.</td>
16+
</tr>
17+
<tr>
18+
<td><h5>max-concurrent-operations</h5></td>
19+
<td style="word-wrap: break-word;">(none)</td>
20+
<td>Integer</td>
21+
<td>The max number of async i/o operation that the async ml predict can trigger.</td>
22+
</tr>
23+
<tr>
24+
<td><h5>output-mode</h5></td>
25+
<td style="word-wrap: break-word;">(none)</td>
26+
<td><p>Enum</p></td>
27+
<td>Output mode for asynchronous operations which will convert to {@see AsyncDataStream.OutputMode}, ORDERED by default. If set to ALLOW_UNORDERED, will attempt to use {@see AsyncDataStream.OutputMode.UNORDERED} when it does not affect the correctness of the result, otherwise ORDERED will be still used.<br /><br />Possible values:<ul><li>"ORDERED"</li><li>"ALLOW_UNORDERED"</li></ul></td>
28+
</tr>
29+
<tr>
30+
<td><h5>timeout</h5></td>
31+
<td style="word-wrap: break-word;">(none)</td>
32+
<td>Duration</td>
33+
<td>Timeout from first invoke to final completion of asynchronous operation, may include multiple retries, and will be reset in case of failover.</td>
34+
</tr>
35+
</tbody>
36+
</table>

0 commit comments

Comments
 (0)