Commit 4e0781e4 authored by Jin Hai's avatar Jin Hai Committed by GitHub
Browse files

Merge pull request #53 from JinHai-CN/0.5.0

Merge from internal gitlab

Former-commit-id: d13a9bb7e08a9e189bd578fe678708b12e11eafd
parents 65892ba3 a39981cd
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -26,10 +26,14 @@ Please mark all change in change log and use the ticket from JIRA.
- MS-653 - When config check fail, Milvus close without message
- MS-654 - Describe index timeout when building index
- MS-658 - Fix SQ8 Hybrid can't search
- \#9 Change default gpu_cache_capacity to 4
- MS-665 - IVF_SQ8H search crash when no GPU resource in search_resources
- \#9 - Change default gpu_cache_capacity to 4
- \#20 - C++ sdk example get grpc error 
- \#23 - Add unittest to improve code coverage
- \#31 - make clang-format failed after run build.sh -l
- \#39 - Create SQ8H index hang if using github server version
- \#30 - Some troubleshoot messages in Milvus do not provide enough information
- \#48 - Config unittest failed

## Improvement
- MS-552 - Add and change the easylogging library
@@ -51,6 +55,7 @@ Please mark all change in change log and use the ticket from JIRA.
- MS-626 - Refactor DataObj to support cache any type data
- MS-648 - Improve unittest
- MS-655 - Upgrade SPTAG
- \#42 - Put union of index_build_device and search resources to gpu_pool

## New Feature
- MS-614 - Preload table at startup
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ container('milvus-build-env') {
                            && export FAISS_URL='http://192.168.1.105:6060/jinhai/faiss/-/archive/branch-0.2.1/faiss-branch-0.2.1.tar.gz' \
                            && ./build.sh -t ${params.BUILD_TYPE} -d /opt/milvus -j -u -c"

                            sh "./coverage.sh -u root -p 123456 -t 192.168.1.194"
                            sh "./coverage.sh -u root -p 123456 -t \$POD_IP"
                        }
                    }
                } catch (exc) {
+13 −0
Original line number Diff line number Diff line
@@ -45,6 +45,11 @@ spec:
  containers:
  - name: milvus-build-env
    image: registry.zilliz.com/milvus/milvus-build-env:v0.13
    env:
    - name: POD_IP
      valueFrom:
        fieldRef:
          fieldPath: status.podIP
    command:
    - cat
    tty: true
@@ -56,6 +61,14 @@ spec:
      requests:
        memory: "14Gi"
        cpu: "5.0"
  - name: milvus-mysql
    image: mysql:5.6
    env:
    - name: MYSQL_ROOT_PASSWORD
      value: 123456
    ports:
    - containerPort: 3306
      name: mysql
"""
                        }
                    }
+13 −0
Original line number Diff line number Diff line
@@ -45,6 +45,11 @@ spec:
  containers:
  - name: milvus-build-env
    image: registry.zilliz.com/milvus/milvus-build-env:v0.13
    env:
    - name: POD_IP
      valueFrom:
        fieldRef:
          fieldPath: status.podIP
    command:
    - cat
    tty: true
@@ -56,6 +61,14 @@ spec:
      requests:
        memory: "14Gi"
        cpu: "5.0"
  - name: milvus-mysql
    image: mysql:5.6
    env:
    - name: MYSQL_ROOT_PASSWORD
      value: 123456
    ports:
    - containerPort: 3306
      name: mysql
"""
                        }
                    }
+2 −3
Original line number Diff line number Diff line
@@ -16,7 +16,6 @@ db_config:

  insert_buffer_size: 4             # GB, maximum insert buffer size allowed
                                    # sum of insert_buffer_size and cpu_cache_capacity cannot exceed total memory
  build_index_gpu: 0                # gpu id used for building index

  preload_table:                    # preload data at startup, '*' means load all tables, empty value means no preload
                                    # you can specify preload tables like this: table1,table2,table3
@@ -39,6 +38,6 @@ engine_config:
                                    # if nq >= use_blas_threshold, use OpenBlas, slower with stable response times

resource_config:
  resource_pool:
    - cpu
  search_resources:                 # define the GPUs used for search computation, valid value: gpux
    - gpu0
  index_build_device: gpu0          # GPU used for building index
 No newline at end of file
Loading