Commit ed93701e authored by 余昆's avatar 余昆
Browse files

MS-644 - Search crashed with index-type: flat


Former-commit-id: cf79b2ed46c1f33ba62e60a0ec77f769354c5a24
parents 6832422b 8cec6faa
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ container('milvus-build-env') {
                try {
                    checkout([$class: 'GitSCM', branches: [[name: "${SEMVER}"]], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'SubmoduleOption',disableSubmodules: false,parentCredentials: true,recursiveSubmodules: true,reference: '',trackingSubmodules: false]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: "${params.GIT_USER}", url: "git@192.168.1.105:megasearch/milvus.git", name: 'origin', refspec: "+refs/heads/${SEMVER}:refs/remotes/origin/${SEMVER}"]]])

                    dir ("cpp") {
                    dir ("core") {
                        sh "git config --global user.email \"test@zilliz.com\""
                        sh "git config --global user.name \"test\""
                        withCredentials([usernamePassword(credentialsId: "${params.JFROG_USER}", usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
+1 −1
Original line number Diff line number Diff line
@@ -5,7 +5,7 @@ container('milvus-build-env') {
                try {
                    checkout([$class: 'GitSCM', branches: [[name: "${SEMVER}"]], doGenerateSubmoduleConfigurations: false, extensions: [[$class: 'SubmoduleOption',disableSubmodules: false,parentCredentials: true,recursiveSubmodules: true,reference: '',trackingSubmodules: false]], submoduleCfg: [], userRemoteConfigs: [[credentialsId: "${params.GIT_USER}", url: "git@192.168.1.105:megasearch/milvus.git", name: 'origin', refspec: "+refs/heads/${SEMVER}:refs/remotes/origin/${SEMVER}"]]])

                    dir ("cpp") {
                    dir ("core") {
                        sh "git config --global user.email \"test@zilliz.com\""
                        sh "git config --global user.name \"test\""
                        withCredentials([usernamePassword(credentialsId: "${params.JFROG_USER}", usernameVariable: 'USERNAME', passwordVariable: 'PASSWORD')]) {
+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 {
+3 −2
Original line number Diff line number Diff line
@@ -9,16 +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

## Improvement
- MS-552 - Add and change the easylogging library
Loading