-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[Feature]: Add database level Resource Group/Replica #30040
Labels
kind/feature
Issues related to feature request from users
Comments
/assign @weiliu1031 please help on this one. |
sre-ci-robot
pushed a commit
that referenced
this issue
Mar 19, 2024
issue: #30040 This PR add properties in database meta, so we can store some database level info. Signed-off-by: Wei Liu <[email protected]>
sre-ci-robot
pushed a commit
that referenced
this issue
Apr 25, 2024
issue: #30040 --------- Signed-off-by: Wei Liu <[email protected]>
sre-ci-robot
pushed a commit
that referenced
this issue
Apr 28, 2024
issue: #30040 --------- Signed-off-by: Wei Liu <[email protected]>
sre-ci-robot
pushed a commit
to milvus-io/milvus-sdk-go
that referenced
this issue
May 10, 2024
issue: milvus-io/milvus#32707 milvus-io/milvus#30040 Signed-off-by: Wei Liu <[email protected]>
This was referenced May 13, 2024
sre-ci-robot
pushed a commit
to milvus-io/pymilvus
that referenced
this issue
May 13, 2024
issue: milvus-io/milvus#32707 milvus-io/milvus#30040 Signed-off-by: Wei Liu <[email protected]>
sre-ci-robot
pushed a commit
to milvus-io/pymilvus
that referenced
this issue
May 14, 2024
issue: milvus-io/milvus#32707 milvus-io/milvus#30040 Signed-off-by: Wei Liu <[email protected]>
sre-ci-robot
pushed a commit
that referenced
this issue
May 29, 2024
…ading collection (#33052) issue: #30040 This PR introduce two database level props: 1. database.replica.number 2. database.resource_groups User can set those two database props by AlterDatabase API, then can load collection without specified replica_num and resource groups. then it will use database level load param when try to load collections. Signed-off-by: Wei Liu <[email protected]>
weiliu1031
added a commit
to weiliu1031/milvus
that referenced
this issue
Jun 19, 2024
…ading collection (milvus-io#33052) issue: milvus-io#30040 This PR introduce two database level props: 1. database.replica.number 2. database.resource_groups User can set those two database props by AlterDatabase API, then can load collection without specified replica_num and resource groups. then it will use database level load param when try to load collections. Signed-off-by: Wei Liu <[email protected]>
sre-ci-robot
pushed a commit
that referenced
this issue
Jun 21, 2024
…ading collection (#33052) (#33981) pr: #33052 issue: #30040 This PR introduce two database level props: 1. database.replica.number 2. database.resource_groups User can set those two database props by AlterDatabase API, then can load collection without specified replica_num and resource groups. then it will use database level load param when try to load collections. Signed-off-by: Wei Liu <[email protected]>
yellow-shine
pushed a commit
to yellow-shine/milvus
that referenced
this issue
Jul 2, 2024
…ading collection (milvus-io#33052) issue: milvus-io#30040 This PR introduce two database level props: 1. database.replica.number 2. database.resource_groups User can set those two database props by AlterDatabase API, then can load collection without specified replica_num and resource groups. then it will use database level load param when try to load collections. Signed-off-by: Wei Liu <[email protected]>
This was referenced Jul 3, 2024
Merged
Merged
sre-ci-robot
pushed a commit
that referenced
this issue
Jul 10, 2024
…collection creation (#34403) issue: #30040 --------- Signed-off-by: Wei Liu <[email protected]>
weiliu1031
added a commit
to weiliu1031/milvus
that referenced
this issue
Jul 10, 2024
…collection creation (milvus-io#34403) issue: milvus-io#30040 --------- Signed-off-by: Wei Liu <[email protected]>
sre-ci-robot
pushed a commit
to milvus-io/pymilvus
that referenced
this issue
Jul 11, 2024
issue: milvus-io/milvus#30040 Signed-off-by: Wei Liu <[email protected]>
weiliu1031
added a commit
to weiliu1031/pymilvus
that referenced
this issue
Jul 12, 2024
…2168) issue: milvus-io/milvus#30040 Signed-off-by: Wei Liu <[email protected]>
sre-ci-robot
pushed a commit
to milvus-io/pymilvus
that referenced
this issue
Jul 15, 2024
) issue: milvus-io/milvus#30040 pr: #2168 Signed-off-by: Wei Liu <[email protected]>
sre-ci-robot
pushed a commit
to milvus-io/milvus-sdk-go
that referenced
this issue
Jul 16, 2024
issue: milvus-io/milvus#30040 Signed-off-by: Wei Liu <[email protected]>
sre-ci-robot
pushed a commit
that referenced
this issue
Aug 6, 2024
…collection creation (#34403) (#34561) issue: #30040 pr: #34403 --------- Signed-off-by: Wei Liu <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Is there an existing issue for this?
Is your feature request related to a problem? Please describe.
Support to add resource group, replica property on a db.
All the collections under the db will load multiple replicas on different resource groups.
usage example :
utility.create_resource_group(name, using='dbGroup1')
utility.create_resource_group(name, using='dbGroup2')
... move some server to resource group
util.alter_db_property("db1", replica = 2, resource group=['dbGroup1', 'dbGroup2'] )
If so, all the collections create in db1 will be loaded with 2 replicas on resource dbGroup1 and dbGroup2, unless user specify explicitly about replicas and resources groups
Describe the solution you'd like.
No response
Describe an alternate solution.
No response
Anything else? (Additional Context)
No response
The text was updated successfully, but these errors were encountered: