Skip to content
Open
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
2f441dc
enhance: [skip e2e]increase timeout for image build (#29083)
yellow-shine Jan 5, 2024
23183ff
feat: Add import reader for json (#29252)
bigsheeper Jan 5, 2024
a0cec40
fix: make the entity num metric accurate (#29643)
yah01 Jan 5, 2024
5be9099
enhance: add MockSerializer generation command into Makefile (#29713)
congqixia Jan 5, 2024
b5f039a
fix: Assertion all async invocations in test case (#29737)
congqixia Jan 7, 2024
5dc300c
fix: Fix bug for pk index doesn't have raw data (#29711)
xiaocai2333 Jan 7, 2024
156a0dd
feat: Add import reader for Parquet (#29618)
bigsheeper Jan 7, 2024
635a7f7
feat: add clustering key in create/describe collection (#29506)
wayblink Jan 7, 2024
271edc6
fix: throw exception when upload file failed for DiskIndex (#29627)
foxspy Jan 7, 2024
4b3de64
enhance: add rust to install_dep.sh (#29586)
longjiquan Jan 7, 2024
a3bae80
enhance: print total memory when milvus starts (#29351)
longjiquan Jan 7, 2024
d07197a
enhance: add compare simd function (#29432)
zhagnlu Jan 7, 2024
20fb847
enhance: load delta logs concurrently (#29623)
longjiquan Jan 7, 2024
e9f3df3
fix: inverted index file not found (#29695)
longjiquan Jan 7, 2024
cd34de7
enhance:[skip e2e] use docker pugin to do same thing instead (#29667)
yellow-shine Jan 8, 2024
fe47dee
fix: Set & Return correct SegmentLevel in querynode segment manager (…
congqixia Jan 8, 2024
7e6f73a
feat: Authorize users to query grant info of their roles (#29747)
czs007 Jan 8, 2024
9702cef
feat: Support multiple vector search (#29433)
xige-16 Jan 8, 2024
97e4ec5
enhance: use random root path for minio unit tests (#29753)
yah01 Jan 8, 2024
b9d76f7
Restore the MVCC functionality.
czs007 Dec 27, 2023
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
Prev Previous commit
Next Next commit
enhance: use random root path for minio unit tests (milvus-io#29753)
this avoids the conflicts while running multiple unit tests

Signed-off-by: yah01 <[email protected]>
  • Loading branch information
yah01 authored Jan 8, 2024
commit 97e4ec5a6904c5abe7d068b9b87a26765ef333cd
3 changes: 2 additions & 1 deletion internal/storage/minio_chunk_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ package storage

import (
"context"
"fmt"
"io"
"math/rand"
"path"
Expand Down Expand Up @@ -85,7 +86,7 @@ func TestMinIOCM(t *testing.T) {

configRoot := Params.MinioCfg.RootPath.GetValue()

testMinIOKVRoot := path.Join(configRoot, "milvus-minio-ut-root")
testMinIOKVRoot := path.Join(configRoot, fmt.Sprintf("minio-ut-%d", rand.Int()))

t.Run("test load", func(t *testing.T) {
testLoadRoot := path.Join(testMinIOKVRoot, "test_load")
Expand Down