Skip to content

feat(doc): add API documentation and architectural design for Vermeer #334

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
47 changes: 47 additions & 0 deletions vermeer/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
## Vermeer
Vermeer is a high-performance graph computing framework implemented in the Go language, mainly focusing on memory-based, with the latest version compatible with some data being stored on disk.

## Architecture Design
[Vermeer Architecture](docs/architecture.md)

## Build

### grpc protobuf Dependency installation
````
go install google.golang.org/protobuf/cmd/protoc-gen-go@v1.28.0 \
go install google.golang.org/grpc/cmd/protoc-gen-go-grpc@v1.2.0
````

### protobuf build

````
../../tools/protoc/osxm1/protoc *.proto --go-grpc_out=. --go_out=.
````

### Cross-compilation

````
linux: GOARCH=amd64 GOOS=linux go build
CC=x86_64-linux-musl-gcc CGO_ENABLED=1 GOOS=linux GOARCH=amd64 go build -buildmode=plugin
````

## Run

```
master: ./vermeer --env=master
worker: ./vermeer --env=worker01
# The parameter `env` specifies the configuration file name under the `config` folder.
```
OR

```
./vermeer.sh start master
./vermeer.sh start worker
# The configuration items are specified in the vermeer.sh file.
```


## API Doc
[Vermeer API](docs/api.md)


Loading