ryjiang

Results 241 comments of ryjiang

I see. will fix it soon.

> Did the problem fixed? Have met the same problem of the url /api/xxx For the release `v2.3.3`, you can setup `HOST_URL` as the docker env, then you can set...

I don't have the env, but I can give you an example, you need to test it by yourself:) ```bash location /path/to/milvus/ { proxy_pass http://11.132.42.228:30006/; proxy_set_header Host $http_host; } ```...

> > > I don't have the env, but I can give you an example, you need to test it by yourself:) > > > ```shell > > > location...

@sky-cloud can you check this, if this is empty, I think the `HOST_URL` is not set correctly. ![image](https://github.com/zilliztech/attu/assets/185051/f5985828-8e74-41a4-8b2a-c2daf8e0c68f)

```nginx server { listen 8080; server_name localhost; location /attu/ { proxy_pass http://localhost:3000/; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header...

we don't support this feature yet, we will support this in the feature.

I don't have plan to support this in the near future. I think there is a tool can fulfill your need. please refer to https://github.com/zilliztech/milvus-backup

yeah, starting from milvus2.3, there is no index coord anymore.

> Why are datanode and indexnode mixed together? @shanghaikid They are controlled by data coord now. ref: https://milvus.io/docs/release_notes.md#v230 > Merged IndexCoord and DataCoord We have merged IndexCoord and DataCoord into...