Skip to content

Commit

Permalink
Release new docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Milvus-doc-bot authored and Milvus-doc-bot committed Nov 25, 2024
1 parent 7b8bd19 commit 3d66337
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions v2.4.x/site/en/userGuide/data-import/import-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ To import the prepared data, you have to create an import job as follows:
<div class="multipleCode">
<a href="#python">Python </a>
<a href="#java">Java</a>
<a href="#bash">cURL</a>
<a href="#shell">cURL</a>
</div>

```python
Expand Down Expand Up @@ -85,7 +85,7 @@ public static void main(String[] args) throws Exception {
}
```

```bash
```shell
export MILVUS_URI="localhost:19530"

curl --request POST "http://${MILVUS_URI}/v2/vectordb/jobs/import/create" \
Expand Down Expand Up @@ -150,7 +150,7 @@ Once you get an import job ID, you can check the import progress as follows:
<div class="multipleCode">
<a href="#python">Python </a>
<a href="#java">Java</a>
<a href="#bash">cURL</a>
<a href="#shell">cURL</a>
</div>

```python
Expand Down Expand Up @@ -206,7 +206,7 @@ public static void main(String[] args) throws Exception {
}
```

```bash
```shell
export MILVUS_URI="localhost:19530"

curl --request POST "http://${MILVUS_URI}/v2/vectordb/jobs/import/describe" \
Expand Down Expand Up @@ -261,7 +261,7 @@ You can list all import jobs relative to a specific collection as follows:
<div class="multipleCode">
<a href="#python">Python </a>
<a href="#java">Java</a>
<a href="#bash">cURL</a>
<a href="#shell">cURL</a>
</div>

```python
Expand Down Expand Up @@ -291,7 +291,7 @@ public static void main(String[] args) throws Exception {
}
```

```bash
```shell
export MILVUS_URI="localhost:19530"

curl --request POST "http://${MILVUS_URI}/v2/vectordb/jobs/import/list" \
Expand Down

0 comments on commit 3d66337

Please sign in to comment.