Commit e0e5ac88 authored by xiaojun.lin's avatar xiaojun.lin
Browse files

update


Former-commit-id: 2f715a78f9a533ec8383b233f782291607982c7f
parents 50289cc6 342a986e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
container('milvus-build-env') {
    timeout(time: 5, unit: 'MINUTES') {
        dir ("milvus_engine") {
            dir ("cpp") {
            dir ("core") {
                gitlabCommitStatus(name: 'Packaged Engine') {
                    if (fileExists('milvus')) {
                        try {
+1 −1
Original line number Diff line number Diff line
container('milvus-build-env') {
    timeout(time: 5, unit: 'MINUTES') {
        dir ("milvus_engine") {
            dir ("cpp") {
            dir ("core") {
                gitlabCommitStatus(name: 'Packaged Engine') {
                    if (fileExists('milvus')) {
                        try {
+5 −2
Original line number Diff line number Diff line
@@ -9,14 +9,17 @@ Please mark all change in change log and use the ticket from JIRA.
- MS-572 - Milvus crash when get SIGINT
- MS-577 - Unittest Query randomly hung
- MS-587 - Count get wrong result after adding vectors and index built immediately
- MS-599 - search wrong result when table created with metric_type: IP
- MS-599 - Search wrong result when table created with metric_type: IP
- MS-601 - Docker logs error caused by get CPUTemperature error
- MS-622 - Delete vectors should be failed if date range is invalid
- MS-620 - Get table row counts display wrong error code
- MS-637 - out of memory when load too many tasks
- MS-637 - Out of memory when load too many tasks
- MS-640 - Cache object size calculate incorrect
- MS-641 - Segment fault(signal 11) in PickToLoad
- MS-639 - SQ8H index created failed and server hang
- MS-647 - [monitor] grafana display average cpu-temp
- MS-644 - Search crashed with index-type: flat
- MS-624 - Search vectors failed if time ranges long enough
- MS-652 - IVFSQH quantization double free

## Improvement
+2 −2
Original line number Diff line number Diff line
@@ -370,9 +370,9 @@ if(DEFINED ENV{MILVUS_GRPC_URL})
    set(GRPC_SOURCE_URL "$ENV{MILVUS_GRPC_URL}")
else()
    set(GRPC_SOURCE_URL
            "http://git.zilliz.tech/kun.yu/grpc/-/archive/master/grpc-master.tar.gz")
            "https://github.com/youny626/grpc-milvus/archive/${GRPC_VERSION}.zip")
endif()
set(GRPC_MD5 "7ec59ad54c85a12dcbbfede09bf413a9")
set(GRPC_MD5 "fdd2656424c0e0e046b21354513fc70f")


# ----------------------------------------------------------------------
+1 −1
Original line number Diff line number Diff line
@@ -81,7 +81,7 @@ class Meta {
    UpdateTableFiles(TableFilesSchema& files) = 0;

    virtual Status
    FilesToSearch(const std::string& table_id, const std::vector<size_t>& ids, const DatesT& partition,
    FilesToSearch(const std::string& table_id, const std::vector<size_t>& ids, const DatesT& dates,
                  DatePartionedTableFilesSchema& files) = 0;

    virtual Status
Loading