搜图引擎Javasdk

groot a14f8e93cd Split to 2 packages (#1224) il y a 4 mois
.github a14f8e93cd Split to 2 packages (#1224) il y a 4 mois
doc 96874ab954 Update doc (#1035) il y a 8 mois
examples a14f8e93cd Split to 2 packages (#1224) il y a 4 mois
sdk-bulkwriter a14f8e93cd Split to 2 packages (#1224) il y a 4 mois
sdk-core a14f8e93cd Split to 2 packages (#1224) il y a 4 mois
tests 537160c9d8 Add query and search related cases for null and default value support (#1108) il y a 6 mois
.gitignore a14f8e93cd Split to 2 packages (#1224) il y a 4 mois
.gitmodules a14f8e93cd Split to 2 packages (#1224) il y a 4 mois
CHANGELOG.md a14f8e93cd Split to 2 packages (#1224) il y a 4 mois
CODE_REVIEW.md d041eef7f7 Add code review.md (#216) il y a 3 ans
CONTRIBUTING.md 38971b3c3c add CONTRIBUTING.md il y a 5 ans
DEVELOPMENT.md a14f8e93cd Split to 2 packages (#1224) il y a 4 mois
LICENSE d986181d72 Initial commit il y a 5 ans
OWNERS 166b8381de Add maintainer member (#327) il y a 2 ans
README.md a14f8e93cd Split to 2 packages (#1224) il y a 4 mois
docker-compose.yml 49657227e9 Prepare for 2.5.0 (#1196) il y a 5 mois
pom.xml a14f8e93cd Split to 2 packages (#1224) il y a 4 mois

README.md

Milvus Java SDK

Maven Central

Java SDK for Milvus. To contribute to this project, please read our contribution guidelines first.

Getting started

Prerequisites

-   Java 8 or higher
-   Apache Maven or Gradle

The following table shows compatibilities between Milvus and Java SDK.

Milvus version Java SDK version
2.0 2.0.4
2.1 2.1.0-beta4
2.2.0 ~ 2.2.8 2.2.0 ~ 2.2.5
>= 2.2.9 2.2.7 ~ 2.2.15
2.3.x 2.3.11
2.4.x 2.4.8
2.5.x 2.5.2

Install Java SDK

You can use Apache Maven or Gradle add Milvus SDK to your project.

  • Apache Maven

        <dependency>
            <groupId>io.milvus</groupId>
            <artifactId>milvus-sdk-java</artifactId>
            <version>2.5.2</version>
        </dependency>
    
  • Gradle/Groovy

    ```groovy
    implementation 'io.milvus:milvus-sdk-java:2.5.2'
    ```
    
  • Gradle/Kotlin

    ```kotlin
    implementation("io.milvus:milvus-sdk-java:2.5.2")
    ```
    

From v2.5.2, milvus Java SDK is split into two packages: milvus-sdk-java and milvus-sdk-java-bulkwriter, because BulkWriter requires quite a lot of dependencies. If you don't need BulkWriter tool, you can ignore the milvus-sdk-java-bulkwriter package. To use BulkWriter, import milvus-sdk-java-bulkwriter to your project.

  • Apache Maven

        <dependency>
            <groupId>io.milvus</groupId>
            <artifactId>milvus-sdk-java-bulkwriter</artifactId>
            <version>2.5.2</version>
        </dependency>
    
  • Gradle/Groovy

    ```groovy
    implementation 'io.milvus:milvus-sdk-java-bulkwriter:2.5.2'
    ```
    
  • Gradle/Kotlin

    ```kotlin
    implementation("io.milvus:milvus-sdk-java-bulkwriter:2.5.2")
    ```
    

Examples

Please refer to examples folder for Java SDK examples.

Documentation

Troubleshooting

  • If you encounter the following error when running your application:

    Exception in thread "main" java.lang.NoClassDefFoundError: org/slf4j/LoggerFactory
    

    This is because SLF4J jar files need to be added into your application's classpath. SLF4J is required by Java SDK for logging purpose.

To fix this issue, you can use Apache Maven or Gradle to download the required jar files.

- Apache Maven

    ```xml
     <dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-api</artifactId>
         <version>1.7.30</version>
     </dependency>
    ```

- Gradle/Groovy

     ```groovy
     compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.30'
     ```
- Gradle/Kotlin

    ```kotlin
    implementation("org.slf4j:slf4j-api:1.7.30")
    ```