Skip to content

Commit b3d23d0

Browse files
Milvus-doc-botMilvus-doc-bot
authored andcommitted
Release new docs to master
1 parent 006b376 commit b3d23d0

File tree

9 files changed

+461
-75
lines changed

9 files changed

+461
-75
lines changed

v2.5.x/site/en/getstarted/install_SDKs/install-go.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ GO (1.17 or later) is required.
2121
Install the Milvus GO SDK and dependencies via `go get`.
2222

2323
```bash
24-
$ go get -u github.com/milvus-io/milvus-sdk-go/v2
24+
$ go get -u github.com/milvus-io/milvus/client/v2
2525
```
2626

2727
## What's next

v2.5.x/site/en/reference/sys_config/configure_common.md

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,24 @@ summary: Learn how to configure common for Milvus.
266266
</table>
267267

268268

269+
## `common.security.enablePublicPrivilege`
270+
271+
<table id="common.security.enablePublicPrivilege">
272+
<thead>
273+
<tr>
274+
<th class="width80">Description</th>
275+
<th class="width20">Default Value</th>
276+
</tr>
277+
</thead>
278+
<tbody>
279+
<tr>
280+
<td> Whether to enable public privilege </td>
281+
<td>true</td>
282+
</tr>
283+
</tbody>
284+
</table>
285+
286+
269287
## `common.security.rbac.overrideBuiltInPrivilegeGroups.enabled`
270288

271289
<table id="common.security.rbac.overrideBuiltInPrivilegeGroups.enabled">
@@ -773,3 +791,57 @@ summary: Learn how to configure common for Milvus.
773791
</table>
774792

775793

794+
## `common.enabledOptimizeExpr`
795+
796+
<table id="common.enabledOptimizeExpr">
797+
<thead>
798+
<tr>
799+
<th class="width80">Description</th>
800+
<th class="width20">Default Value</th>
801+
</tr>
802+
</thead>
803+
<tbody>
804+
<tr>
805+
<td> Indicates whether to enable optimize expr </td>
806+
<td>true</td>
807+
</tr>
808+
</tbody>
809+
</table>
810+
811+
812+
## `common.enabledJSONKeyStats`
813+
814+
<table id="common.enabledJSONKeyStats">
815+
<thead>
816+
<tr>
817+
<th class="width80">Description</th>
818+
<th class="width20">Default Value</th>
819+
</tr>
820+
</thead>
821+
<tbody>
822+
<tr>
823+
<td> Indicates sealedsegment whether to enable JSON key stats </td>
824+
<td>false</td>
825+
</tr>
826+
</tbody>
827+
</table>
828+
829+
830+
## `common.enabledGrowingSegmentJSONKeyStats`
831+
832+
<table id="common.enabledGrowingSegmentJSONKeyStats">
833+
<thead>
834+
<tr>
835+
<th class="width80">Description</th>
836+
<th class="width20">Default Value</th>
837+
</tr>
838+
</thead>
839+
<tbody>
840+
<tr>
841+
<td> Indicates growingsegment whether to enable JSON key stats </td>
842+
<td>false</td>
843+
</tr>
844+
</tbody>
845+
</table>
846+
847+

v2.5.x/site/en/reference/sys_config/configure_datacoord.md

Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -381,6 +381,46 @@ summary: Learn how to configure dataCoord for Milvus.
381381
</table>
382382

383383

384+
## `dataCoord.sealPolicy.channel.blockingL0EntryNum`
385+
386+
<table id="dataCoord.sealPolicy.channel.blockingL0EntryNum">
387+
<thead>
388+
<tr>
389+
<th class="width80">Description</th>
390+
<th class="width20">Default Value</th>
391+
</tr>
392+
</thead>
393+
<tbody>
394+
<tr>
395+
<td>
396+
<li>If the total entry number of l0 logs of each shard </li>
397+
<li>exceeds this threshold, the earliest growing segments will be sealed.</li> </td>
398+
<td>5000000</td>
399+
</tr>
400+
</tbody>
401+
</table>
402+
403+
404+
## `dataCoord.sealPolicy.channel.blockingL0SizeInMB`
405+
406+
<table id="dataCoord.sealPolicy.channel.blockingL0SizeInMB">
407+
<thead>
408+
<tr>
409+
<th class="width80">Description</th>
410+
<th class="width20">Default Value</th>
411+
</tr>
412+
</thead>
413+
<tbody>
414+
<tr>
415+
<td>
416+
<li>The size threshold in MB, if the total entry number of l0 logs of each shard </li>
417+
<li>exceeds this threshold, the earliest growing segments will be sealed.</li> </td>
418+
<td>64</td>
419+
</tr>
420+
</tbody>
421+
</table>
422+
423+
384424
## `dataCoord.autoUpgradeSegmentIndex`
385425

386426
<table id="dataCoord.autoUpgradeSegmentIndex">
@@ -533,6 +573,24 @@ summary: Learn how to configure dataCoord for Milvus.
533573
</table>
534574

535575

576+
## `dataCoord.compaction.scheduleInterval`
577+
578+
<table id="dataCoord.compaction.scheduleInterval">
579+
<thead>
580+
<tr>
581+
<th class="width80">Description</th>
582+
<th class="width20">Default Value</th>
583+
</tr>
584+
</thead>
585+
<tbody>
586+
<tr>
587+
<td> The time interval in milliseconds for scheduling compaction tasks. If the configuration setting is below 100ms, it will be ajusted upwards to 100ms </td>
588+
<td>500</td>
589+
</tr>
590+
</tbody>
591+
</table>
592+
593+
536594
## `dataCoord.compaction.mix.triggerInterval`
537595

538596
<table id="dataCoord.compaction.mix.triggerInterval">
@@ -1361,6 +1419,132 @@ summary: Learn how to configure dataCoord for Milvus.
13611419
</table>
13621420

13631421

1422+
## `dataCoord.slot.indexTaskSlotUsage`
1423+
1424+
<table id="dataCoord.slot.indexTaskSlotUsage">
1425+
<thead>
1426+
<tr>
1427+
<th class="width80">Description</th>
1428+
<th class="width20">Default Value</th>
1429+
</tr>
1430+
</thead>
1431+
<tbody>
1432+
<tr>
1433+
<td> slot usage of index task per 512mb </td>
1434+
<td>64</td>
1435+
</tr>
1436+
</tbody>
1437+
</table>
1438+
1439+
1440+
## `dataCoord.slot.statsTaskSlotUsage`
1441+
1442+
<table id="dataCoord.slot.statsTaskSlotUsage">
1443+
<thead>
1444+
<tr>
1445+
<th class="width80">Description</th>
1446+
<th class="width20">Default Value</th>
1447+
</tr>
1448+
</thead>
1449+
<tbody>
1450+
<tr>
1451+
<td> slot usage of stats task per 512mb </td>
1452+
<td>8</td>
1453+
</tr>
1454+
</tbody>
1455+
</table>
1456+
1457+
1458+
## `dataCoord.slot.analyzeTaskSlotUsage`
1459+
1460+
<table id="dataCoord.slot.analyzeTaskSlotUsage">
1461+
<thead>
1462+
<tr>
1463+
<th class="width80">Description</th>
1464+
<th class="width20">Default Value</th>
1465+
</tr>
1466+
</thead>
1467+
<tbody>
1468+
<tr>
1469+
<td> slot usage of analyze task </td>
1470+
<td>65535</td>
1471+
</tr>
1472+
</tbody>
1473+
</table>
1474+
1475+
1476+
## `dataCoord.jsonStatsTriggerCount`
1477+
1478+
<table id="dataCoord.jsonStatsTriggerCount">
1479+
<thead>
1480+
<tr>
1481+
<th class="width80">Description</th>
1482+
<th class="width20">Default Value</th>
1483+
</tr>
1484+
</thead>
1485+
<tbody>
1486+
<tr>
1487+
<td> jsonkey stats task count per trigger </td>
1488+
<td>10</td>
1489+
</tr>
1490+
</tbody>
1491+
</table>
1492+
1493+
1494+
## `dataCoord.jsonStatsTriggerInterval`
1495+
1496+
<table id="dataCoord.jsonStatsTriggerInterval">
1497+
<thead>
1498+
<tr>
1499+
<th class="width80">Description</th>
1500+
<th class="width20">Default Value</th>
1501+
</tr>
1502+
</thead>
1503+
<tbody>
1504+
<tr>
1505+
<td> jsonkey task interval per trigger </td>
1506+
<td>10</td>
1507+
</tr>
1508+
</tbody>
1509+
</table>
1510+
1511+
1512+
## `dataCoord.enabledJSONKeyStatsInSort`
1513+
1514+
<table id="dataCoord.enabledJSONKeyStatsInSort">
1515+
<thead>
1516+
<tr>
1517+
<th class="width80">Description</th>
1518+
<th class="width20">Default Value</th>
1519+
</tr>
1520+
</thead>
1521+
<tbody>
1522+
<tr>
1523+
<td> Indicates whether to enable JSON key stats task with sort </td>
1524+
<td>false</td>
1525+
</tr>
1526+
</tbody>
1527+
</table>
1528+
1529+
1530+
## `dataCoord.jsonKeyStatsMemoryBudgetInTantivy`
1531+
1532+
<table id="dataCoord.jsonKeyStatsMemoryBudgetInTantivy">
1533+
<thead>
1534+
<tr>
1535+
<th class="width80">Description</th>
1536+
<th class="width20">Default Value</th>
1537+
</tr>
1538+
</thead>
1539+
<tbody>
1540+
<tr>
1541+
<td> the memory budget for the JSON index In Tantivy, the unit is bytes </td>
1542+
<td>16777216</td>
1543+
</tr>
1544+
</tbody>
1545+
</table>
1546+
1547+
13641548
## `dataCoord.ip`
13651549

13661550
<table id="dataCoord.ip">

v2.5.x/site/en/reference/sys_config/configure_grpc.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ summary: Learn how to configure grpc for Milvus.
2121
<tbody>
2222
<tr>
2323
<td> second, time to wait graceful stop finish </td>
24-
<td>10</td>
24+
<td>3</td>
2525
</tr>
2626
</tbody>
2727
</table>

v2.5.x/site/en/reference/sys_config/configure_indexnode.md

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -9,24 +9,6 @@ summary: Learn how to configure indexNode for Milvus.
99

1010

1111

12-
## `indexNode.enableDisk`
13-
14-
<table id="indexNode.enableDisk">
15-
<thead>
16-
<tr>
17-
<th class="width80">Description</th>
18-
<th class="width20">Default Value</th>
19-
</tr>
20-
</thead>
21-
<tbody>
22-
<tr>
23-
<td> enable index node build disk vector index </td>
24-
<td>true</td>
25-
</tr>
26-
</tbody>
27-
</table>
28-
29-
3012
## `indexNode.ip`
3113

3214
<table id="indexNode.ip">

v2.5.x/site/en/reference/sys_config/configure_mq.md

Lines changed: 0 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -181,57 +181,3 @@ If you don't set mq.type field as default, there is a note about enabling priori
181181
</table>
182182

183183

184-
## `mq.dispatcher.maxDispatcherNumPerPchannel`
185-
186-
<table id="mq.dispatcher.maxDispatcherNumPerPchannel">
187-
<thead>
188-
<tr>
189-
<th class="width80">Description</th>
190-
<th class="width20">Default Value</th>
191-
</tr>
192-
</thead>
193-
<tbody>
194-
<tr>
195-
<td> The maximum number of dispatchers per physical channel, primarily to limit the number of consumers and prevent performance issues(e.g., during recovery when a large number of channels are watched). </td>
196-
<td>5</td>
197-
</tr>
198-
</tbody>
199-
</table>
200-
201-
202-
## `mq.dispatcher.retrySleep`
203-
204-
<table id="mq.dispatcher.retrySleep">
205-
<thead>
206-
<tr>
207-
<th class="width80">Description</th>
208-
<th class="width20">Default Value</th>
209-
</tr>
210-
</thead>
211-
<tbody>
212-
<tr>
213-
<td> register retry sleep time in seconds </td>
214-
<td>3</td>
215-
</tr>
216-
</tbody>
217-
</table>
218-
219-
220-
## `mq.dispatcher.retryTimeout`
221-
222-
<table id="mq.dispatcher.retryTimeout">
223-
<thead>
224-
<tr>
225-
<th class="width80">Description</th>
226-
<th class="width20">Default Value</th>
227-
</tr>
228-
</thead>
229-
<tbody>
230-
<tr>
231-
<td> register retry timeout in seconds </td>
232-
<td>60</td>
233-
</tr>
234-
</tbody>
235-
</table>
236-
237-

0 commit comments

Comments
 (0)