wei liu
aed074d83e
fix: unexpected password for root user ( #41818 )
...
issue: #41816
pr: #41817
pr #37983 introduced an issue, if doesn't specified
`defaultRootPassword` in milvus.yaml, then `"Milvus"` will be used as
default password for root user, instead of `Milvus`.
This PR fix the unexpected password for root, and add comment for case
which use large numeric password requires double quotes.
Signed-off-by: Wei Liu <wei.liu@zilliz.com>
2025-05-14 19:40:22 +08:00
cai.zhang
813bcb14a7
fix: [2.5]prevent crash when contains_all/any is used with empty array ( #41756 )
...
issue: https://github.com/milvus-io/milvus/issues/41348
related and optimized by https://github.com/milvus-io/milvus/pull/41347
master pr: #41739
---------
Signed-off-by: Cai Zhang <cai.zhang@zilliz.com>
Co-authored-by: Sangho Park <hoyaspark@gmail.com>
2025-05-14 14:30:22 +08:00
congqixia
e6bfa12064
enhance: [2.5][Restful] Add consistency level for query/get API ( #41825 ) ( #41830 )
...
Cherry-pick from master
pr: #41825
Related to #41805
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2025-05-14 14:16:22 +08:00
Julien Salleyron
9b8a8f7607
fix: Allow to compile on windows ( #41617 )
...
This PR fixes https://github.com/milvus-io/milvus/issues/41384 on 2.5.
Related to #41448 .
When using milvus client and compile on windows, the compilation failed
with the undefined RSS error.
On windows, the way to get memory used is the same as on darwin.
Signed-off-by: Julien Salleyron <julien.salleyron@gmail.com>
2025-05-14 11:33:40 +08:00
yihao.dai
841f02cf0e
fix: [2.5] Disable block and mutex profiling on arm to prevent SIGSEGV ( #41823 )
...
issue: https://github.com/milvus-io/milvus/issues/41821
pr: https://github.com/milvus-io/milvus/pull/41822
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
2025-05-14 10:56:50 +08:00
foxspy
96f7ab592b
enhance: [2.5] update knowhere version ( #41828 )
...
issue: #37644
/kind branch-feature
Signed-off-by: foxspy <xianliang.li@zilliz.com>
2025-05-14 10:50:23 +08:00
yihao.dai
a7c818cadb
fix: [2.5] Fix no candidate segments error for small import ( #41772 )
...
When autoID is enabled, the preimport task estimates row distribution by
evenly dividing the total row count (numRows) across all vchannels:
`estimatedCount = numRows / vchannelNum`.
However, the actual import task hashes real auto-generated IDs to
determine
the target vchannel. This mismatch can lead to inaccurate row
distribution estimation
in such corner cases:
- Importing 1 row into 2 vchannels:
• Preimport: 1 / 2 = 0 → both v0 and v1 are estimated to have 0 rows
• Import: real autoID (e.g., 457975852966809057) hashes to v1
→ actual result: v0 = 0, v1 = 1
To resolve such corner case, we now allocate at least one segment for
each vchannel
when autoID is enabled, ensuring all vchannels are prepared to receive
data even
if no rows are estimated for them.
issue: https://github.com/milvus-io/milvus/issues/41759
pr: https://github.com/milvus-io/milvus/pull/41771
---------
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
2025-05-14 10:36:22 +08:00
groot
2fbd7eddb2
enhance: add multiAnalyzerParams for Go SDK ( #41813 )
...
issue: https://github.com/milvus-io/milvus/issues/41213
pr: https://github.com/milvus-io/milvus/pull/41814
Signed-off-by: yhmo <yihua.mo@zilliz.com>
2025-05-14 09:52:22 +08:00
Xianhui Lin
548754a5e3
fix: fallback to mixcoord session when upgrade to mixCoord ( #41773 )
...
fix: fallback to mixcoord session when upgrade to mixCoord
issue:https://github.com/milvus-io/milvus/issues/41737
Signed-off-by: Xianhui.Lin <xianhui.lin@zilliz.com>
2025-05-13 23:12:58 +08:00
shaoyue
0ecf99934a
enhance: update golang-jwt to v4.5.2 to fix cve ( #41742 )
...
master pr: #41734
Signed-off-by: haorenfsa <haorenfsa@gmail.com>
2025-05-13 14:00:57 +08:00
zhagnlu
5b8ea84d38
fix: add params to ignore config type exception ( #41777 )
...
pr: #41776
Signed-off-by: luzhang <luzhang@zilliz.com>
Co-authored-by: luzhang <luzhang@zilliz.com>
2025-05-13 11:28:57 +08:00
congqixia
8b026f93a9
enhance: [2.5] Add mutex preventing concurrent plugin.Open ( #41761 ) ( #41764 )
...
Cherry pick from master
pr: #41761
Concurrent calling plugin.Open might cause empty pluginpath issue
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2025-05-12 23:20:57 +08:00
groot
bf8e6e8ac0
enhance: Alter collection description ( #41547 )
...
issue: https://github.com/milvus-io/milvus/issues/41557
master pr: https://github.com/milvus-io/milvus/pull/41558
Signed-off-by: yhmo <yihua.mo@zilliz.com>
2025-05-12 11:22:56 +08:00
zhikunyao
4dccc46222
enhance: update go env version for 2.5 ( #41745 )
...
Signed-off-by: Zhikun Yao <zhikun.yao@zilliz.com>
2025-05-09 21:46:54 +08:00
cai.zhang
a69ae760e2
fix: Set worker totalSlot in standalone mode is half of cluster mode ( #41731 )
...
issue: #41616 , #41732
master pr: #41730
Signed-off-by: Cai Zhang <cai.zhang@zilliz.com>
2025-05-09 18:30:58 +08:00
Xianhui Lin
dbcdb30db2
fix: [2.5]set quota center metrics configuration before watch ( #41708 )
...
fix: [2.5]set quota center metrics configuration before watch
pr:https://github.com/milvus-io/milvus/pull/41706
issue:https://github.com/milvus-io/milvus/issues/35177
Signed-off-by: Xianhui.Lin <xianhui.lin@zilliz.com>
2025-05-09 14:30:55 +08:00
shaoyue
973f6d80a1
enhance: update go version to fix cve ( #41697 )
...
master pr: #41696
/cc @congqixia @czs007
Signed-off-by: haorenfsa <haorenfsa@gmail.com>
2025-05-09 11:22:55 +08:00
zhagnlu
418c35630b
fix: GetValueFromConfig return nullopt instead of exception ( #41711 )
...
pr: #41709
Signed-off-by: luzhang <luzhang@zilliz.com>
Co-authored-by: luzhang <luzhang@zilliz.com>
2025-05-09 11:20:54 +08:00
SimFG
4c656e8a7a
enhance: support more ddl apis to replicate according to cdc ( #41679 )
...
- issue: #41677
- pr: #41678
Signed-off-by: SimFG <bang.fu@zilliz.com>
2025-05-08 20:02:58 +08:00
Bingyi Sun
22582a45b0
feat: Add json index support for json contains expr ( #41478 ) ( #41658 )
...
pr: #41478
issue: #35528
---------
Signed-off-by: sunby <sunbingyi1992@gmail.com>
2025-05-07 10:40:53 +08:00
SimFG
57c472e41f
enhance: [2.5] add timeout for message reception in mqMsgStream ( #41603 )
...
- pr: #41602
Signed-off-by: SimFG <bang.fu@zilliz.com>
2025-05-06 10:16:52 +08:00
congqixia
ecf3841ae9
enhance: [GoSDK] cherry pick patches for 2.5.3 ( #41631 )
...
pr: #41498 #41576 #41606 #39973
---------
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
Signed-off-by: aoiasd <zhicheng.yue@zilliz.com>
Co-authored-by: aoiasd <45024769+aoiasd@users.noreply.github.com>
client/v2.5.3
2025-04-30 15:10:53 +08:00
zhuwenxing
3df2156ee2
test: [cherry-pick]add icu tokenizer testcases ( #41630 )
...
pr: https://github.com/milvus-io/milvus/pull/41501
/kind improvement
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
2025-04-30 14:18:54 +08:00
SimFG
b69bf42a04
enhance: [2.5] Implement OperatePrivilegeV2 message handling and unmarshal support ( #41594 )
...
- issue: #41353
- pr: #41355
Signed-off-by: SimFG <bang.fu@zilliz.com>
2025-04-30 11:52:53 +08:00
Xianhui Lin
d41f6839e9
fix:add exclusive lock mutex in DropSegmentsOfPartition ( #41619 )
...
issue:https://github.com/milvus-io/milvus/issues/41615
---------
Signed-off-by: Xianhui.Lin <xianhui.lin@zilliz.com>
2025-04-30 11:24:53 +08:00
XuanYang-cn
1510dea7e3
enhance: Upgrade pymilvus to 2.5.8rc3 ( #41580 )
...
Signed-off-by: yangxuan <xuan.yang@zilliz.com>
2025-04-30 11:22:54 +08:00
Xianhui Lin
17465ffe9e
feat: [2.5]add str update ts in describecollection ( #41600 )
...
issue:https://github.com/milvus-io/milvus/issues/39093
pr:https://github.com/milvus-io/milvus/pull/39096
Signed-off-by: Xianhui.Lin <xianhui.lin@zilliz.com>
2025-04-29 17:50:53 +08:00
liliu-z
324168a77a
enhance: Upgrade dependcies to fix CVEs ( #41590 )
...
Natsmq support will be removed from 2.6, for 2.5 we need to update the
version to fix related CVEs
pr: #41565
Signed-off-by: liliu-z <li.liu@zilliz.com>
2025-04-29 15:50:51 +08:00
yihao.dai
c891f17391
enhance: [2.5] Skip disk quota check for l0 import ( #41572 )
...
issue: https://github.com/milvus-io/milvus/issues/41569
pr: https://github.com/milvus-io/milvus/pull/41571
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
2025-04-29 10:46:54 +08:00
zhuwenxing
c40e8cf44b
test: add run_analyzer api test and lindera tokenizer test ( #41487 )
...
/kind improvement
pr: https://github.com/milvus-io/milvus/pull/40160
https://github.com/milvus-io/milvus/pull/41064
---------
Signed-off-by: zhuwenxing <wenxing.zhu@zilliz.com>
2025-04-28 19:38:49 +08:00
sre-ci-robot
c0edb99fed
[automated] Bump milvus version to v2.5.11 ( #41581 )
...
Bump milvus version to v2.5.11
Signed-off-by: sre-ci-robot sre-ci-robot@users.noreply.github.com
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-28 16:52:40 +08:00
Chun Han
69a80b9ce3
enhance: resize high priority wqthreadpool dynamically( #40838 ) ( #41549 )
...
related: #40838
Signed-off-by: MrPresent-Han <chun.han@gmail.com>
Co-authored-by: MrPresent-Han <chun.han@gmail.com>
pkg/v2.5.11
v2.5.11
2025-04-28 00:44:39 +08:00
aoiasd
8af350d9db
fix: [2.5] bulk insert should use function runner's input field list instead schema's ( #41561 )
...
relate: https://github.com/milvus-io/milvus/issues/41213
pr: https://github.com/milvus-io/milvus/pull/41560
Signed-off-by: aoiasd <zhicheng.yue@zilliz.com>
2025-04-27 22:16:40 +08:00
congqixia
41d910451f
enhance: Bump milvus & proto version to v2.5.11 ( #41541 )
...
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2025-04-27 19:56:39 +08:00
yihao.dai
23634e197f
enhance: [2.5] Accelerate delete filtering during binlog import ( #41552 )
...
Use map for deleteData instead of slice to accelerate delete filtering
during binlog import.
issue: https://github.com/milvus-io/milvus/issues/41550
pr: https://github.com/milvus-io/milvus/pull/41551
---------
Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
2025-04-27 18:16:39 +08:00
Xianhui Lin
21ca05e445
feat: refine drop parition through the new interface notifydroppartition in datacoord ( #41543 )
...
refine drop parition through the new interface notifydroppartition in
datacoord
issue: https://github.com/milvus-io/milvus/issues/41542
---------
Signed-off-by: Xianhui.Lin <xianhui.lin@zilliz.com>
2025-04-27 17:42:40 +08:00
SimFG
6e18ededab
fix: [2.5] mockery too unavailable after upgrade golang version ( #41522 )
...
- issue: ##41291
- pr: #41481
Signed-off-by: SimFG <bang.fu@zilliz.com>
2025-04-25 14:40:40 +08:00
SimFG
18eb627533
fix: [2.5] Update logging context and upgrade dependencies ( #41319 )
...
- issue: #41291
- pr: #41318
---------
Signed-off-by: SimFG <bang.fu@zilliz.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-04-24 23:50:40 +08:00
aoiasd
87b9cbffaf
fix:[2.5] bm25 search failed when avgdl == nan ( #41503 )
...
relate: https://github.com/milvus-io/milvus/issues/41490
pr: https://github.com/milvus-io/milvus/pull/41502
---------
Signed-off-by: aoiasd <zhicheng.yue@zilliz.com>
2025-04-24 23:16:38 +08:00
zhagnlu
66f40fba85
enhance: add expr filter ratio monitor params ( #41403 )
...
pr: #41402
Signed-off-by: luzhang <luzhang@zilliz.com>
Co-authored-by: luzhang <luzhang@zilliz.com>
2025-04-24 21:58:39 +08:00
Xiaowei Shi
2f78f25c7f
fix: correct wrong querynode metric labels ( #41344 ) ( #41422 )
...
cherry-pick from master: https://github.com/milvus-io/milvus/pull/41344
related: https://github.com/milvus-io/milvus/issues/41343
Signed-off-by: Xiaowei Shi <shallwe.shih@gmail.com>
2025-04-24 21:40:40 +08:00
Xianhui Lin
db602da685
fix: [2.5]json stats add map null check before insert into tantivity ( #41506 )
...
json stats add map null check before insert into tantivity
issue:https://github.com/milvus-io/milvus/issues/41494
pr:https://github.com/milvus-io/milvus/pull/41505
---------
Signed-off-by: Xianhui.Lin <xianhui.lin@zilliz.com>
2025-04-24 21:10:39 +08:00
Bingyi Sun
4ac57f1217
enhance: support binary range expression for json path index ( #41317 )
...
pr: #41025
issue: #35528
---------
Signed-off-by: sunby <sunbingyi1992@gmail.com>
2025-04-24 20:04:39 +08:00
aoiasd
8b3353cdab
feat: [2.5] Support run analyzer and more tokenizer. ( #41444 )
...
relate: https://github.com/milvus-io/milvus/issues/39659
https://github.com/milvus-io/milvus/issues/39705
pr: https://github.com/milvus-io/milvus/pull/40416
https://github.com/milvus-io/milvus/pull/40458
https://github.com/milvus-io/milvus/pull/39723
https://github.com/milvus-io/milvus/pull/40813
https://github.com/milvus-io/milvus/pull/39854
https://github.com/milvus-io/milvus/pull/39660
---------
Signed-off-by: aoiasd <zhicheng.yue@zilliz.com>
2025-04-24 10:48:39 +08:00
sparknack
45ad8ecb29
enhance: add simde package ( #41446 )
...
issue: #40942
pr: #40943
Add simde package, which can make porting SIMD code to other
architectures much easier.
Signed-off-by: Shawn Wang <shawn.wang@zilliz.com>
2025-04-24 10:46:43 +08:00
foxspy
d5977ec521
enhance: [2.5] add force rebuild index configuration ( #41432 )
...
issue: #41431
pr: #41473
Signed-off-by: xianliang.li <xianliang.li@zilliz.com>
2025-04-23 21:44:38 +08:00
congqixia
dbfbfd744a
fix: [2.5] Save update timestamp in catalog.AlterCollection API ( #41469 )
...
Cherry-pick from master
pr: #41468
Related to #41467
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
2025-04-23 21:06:39 +08:00
aoiasd
544493e3e2
feat:[2.5] support multi analyzer for bm25 function ( #41456 )
...
relate: https://github.com/milvus-io/milvus/issues/41213
pr: https://github.com/milvus-io/milvus/pull/41351
---------
Signed-off-by: aoiasd <zhicheng.yue@zilliz.com>
2025-04-23 20:52:39 +08:00
XuanYang-cn
143ca8c02b
enhance: Upgrade pymilvus to 2.5.7rc10 ( #41464 )
...
Signed-off-by: yangxuan <xuan.yang@zilliz.com>
2025-04-23 20:26:38 +08:00
Xianhui Lin
83b993afb6
fix: [2.5]JsonStats filter by conjunctExpr and improve the task slot calculation logic ( #41458 )
...
Optimized JSON filter execution by introducing
ProcessJsonStatsChunkPos() for unified position calculation and
GetNextBatchSize() for better batch processing.
Improved JSON key generation by replacing manual path joining with
milvus::Json::pointer() and adjusted slot size calculation for JSON key
index jobs.
Updated the task slot calculation logic in calculateStatsTaskSlot() to
handle the increased resource needs of JSON key index jobs.
issue: https://github.com/milvus-io/milvus/issues/41378
https://github.com/milvus-io/milvus/issues/41218
pr: https://github.com/milvus-io/milvus/pull/41459
---------
Signed-off-by: Xianhui.Lin <xianhui.lin@zilliz.com>
2025-04-23 14:36:38 +08:00