mirror of https://github.com/milvus-io/milvus.git
MS-350 remove submodule
Former-commit-id: 34c3bc3c966b666534229bed1ef03e30ad9c527bpull/191/head
parent
d9c8e22ac5
commit
d46d1e7f0d
|
@ -3,15 +3,16 @@
|
||||||
Please mark all change in change log and use the ticket from JIRA.
|
Please mark all change in change log and use the ticket from JIRA.
|
||||||
|
|
||||||
# Milvus 0.4.0 (2019-07-28)
|
# Milvus 0.4.0 (2019-07-28)
|
||||||
- MS-336 - Scheduler interface
|
|
||||||
- MS-344 - Add TaskTable Test
|
|
||||||
- MS-345 - Add Node Test
|
|
||||||
- MS-346 - Add some implementation of scheduler to solve compile error
|
|
||||||
|
|
||||||
## Bug
|
## Bug
|
||||||
|
|
||||||
## Improvement
|
## Improvement
|
||||||
- MS-327 - Clean code for milvus
|
- MS-327 - Clean code for milvus
|
||||||
|
- MS-336 - Scheduler interface
|
||||||
|
- MS-344 - Add TaskTable Test
|
||||||
|
- MS-345 - Add Node Test
|
||||||
|
- MS-346 - Add some implementation of scheduler to solve compile error
|
||||||
|
- MS-350 - Remove knowhere submodule
|
||||||
|
|
||||||
## New Feature
|
## New Feature
|
||||||
- MS-343 - Implement ResourceMgr
|
- MS-343 - Implement ResourceMgr
|
||||||
|
|
|
@ -19,15 +19,15 @@ sudo ln -s /path/to/libmysqlclient.so /path/to/libmysqlclient_r.so
|
||||||
|
|
||||||
cmake_build/src/milvus_server is the server
|
cmake_build/src/milvus_server is the server
|
||||||
|
|
||||||
cmake_build/src/libmilvus_engine.a is the static library
|
cd [sourcecode path]/cpp/thirdparty
|
||||||
|
git clone git@192.168.1.105:megasearch/knowhere.git
|
||||||
git submodule init
|
cd knowhere
|
||||||
git submodule update
|
./build.sh -t Debug
|
||||||
|
or ./build.sh -t Release
|
||||||
|
|
||||||
cd [sourcecode path]/cpp
|
cd [sourcecode path]/cpp
|
||||||
./build.sh -t Debug
|
./build.sh -t Debug
|
||||||
./build.sh -t Release
|
or ./build.sh -t Release
|
||||||
./build.sh -l -t Release # Build license version(only available for Release)
|
|
||||||
|
|
||||||
If you encounter the following error when building:
|
If you encounter the following error when building:
|
||||||
`protocol https not supported or disabled in libcurl`
|
`protocol https not supported or disabled in libcurl`
|
||||||
|
@ -68,19 +68,5 @@ Then launch server with config:
|
||||||
stop_server.sh
|
stop_server.sh
|
||||||
|
|
||||||
### Launch test_client(only for debug)
|
### Launch test_client(only for debug)
|
||||||
If you want to test remote api, you can build test_client.
|
If you want to test remote api, you can run sdk example.
|
||||||
test_client use same config file with server:
|
[build output path]/sdk/examples/grpcsimple/sdk_simple
|
||||||
|
|
||||||
cd [build output path]/test_client
|
|
||||||
test_client -c [sourcecode path]/cpp/conf/server_config.yaml
|
|
||||||
|
|
||||||
### License Generate
|
|
||||||
Use get_sys_info to get system info file.
|
|
||||||
|
|
||||||
./get_sys_info # system.info will be generated
|
|
||||||
|
|
||||||
Use license_generator to generate license file.
|
|
||||||
|
|
||||||
./license_generator -s system.info -l system.license -b 2019-05-15 -e 2019-08-14
|
|
||||||
|
|
||||||
Copy the license file to path assigned by license_path in server config file.
|
|
||||||
|
|
|
@ -83,11 +83,8 @@ if [[ ! -d cmake_build ]]; then
|
||||||
MAKE_CLEAN="ON"
|
MAKE_CLEAN="ON"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Build Knowhere
|
# Knowhere build output path
|
||||||
KNOWHERE_BUILD_DIR="`pwd`/thirdparty/knowhere_build"
|
KNOWHERE_BUILD_DIR="`pwd`/thirdparty/knowhere/knowhere"
|
||||||
pushd `pwd`/thirdparty/knowhere
|
|
||||||
./build.sh -t Release -p ${KNOWHERE_BUILD_DIR} ${KNOWHERE_OPTS}
|
|
||||||
popd
|
|
||||||
|
|
||||||
cd cmake_build
|
cd cmake_build
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue