CONTRIBUTING.md 4.3 KB
Newer Older
J
jielin.xu 已提交
1 2
# Contributing to Milvus

J
jielin.xu 已提交
3
First of all, thanks for taking the time to contribute to Milvus! It's people like you that help Milvus come to fruition.
J
jielin.xu 已提交
4 5 6

The following are a set of guidelines for contributing to Milvus. Following these guidelines helps contributing to this project easy and transparent. These are mostly guideline, not rules. Use your best judgment, and feel free to propose changes to this document in a pull request.

J
jielinxu 已提交
7
As for everything else in the project, the contributions to Milvus are governed by our [Code of Conduct](CODE_OF_CONDUCT.md).
J
jielin.xu 已提交
8 9 10 11 12

## Contribution Checklist

Before you make any contributions, make sure you follow this list.

J
jielin.xu 已提交
13 14 15
- Read [Contributing to Milvus](CONTRIBUTING.md).
- Check if the changes are consistent with the [coding style](CONTRIBUTING.md#coding-style).
- Run [unit tests](CONTRIBUTING.md#run-unit-test).
J
jielin.xu 已提交
16 17 18 19 20

## What contributions can I make?

Contributions to Milvus fall into the following categories.

J
jielin.xu 已提交
21
1. To report a bug or a problem with documentation, please file an [issue](https://github.com/milvus-io/milvus/issues/new/choose) providing the details of the problem. If you believe the issue needs priority attention, please comment on the issue to notify the team.
J
jielin.xu 已提交
22 23
2. To propose a new feature, please file a new feature request [issue](https://github.com/milvus-io/milvus/issues/new/choose). Describe the intended feature and discuss the design and implementation with the team and community. Once the team agrees that the plan looks good, go ahead and implement it, following the [Contributing code](CONTRIBUTING.md#contributing-code).
3. To implement a feature or bug-fix for an existing outstanding issue, follow the [Contributing code](CONTRIBUTING.md#contributing-code). If you need more context on a particular issue, comment on the issue to let people know.
J
jielin.xu 已提交
24 25 26 27 28

## How can I contribute?

### Contributing code

J
jielinxu 已提交
29
If you have improvements to Milvus, send us your pull requests! For those just getting started, see [GitHub workflow](#github-workflow).
J
jielin.xu 已提交
30 31 32

The Milvus team members will review your pull requests, and once it is accepted, it will be given a `ready to merge` label. This means we are working on submitting your pull request to the internal repository. After the change has been submitted internally, your pull request will be merged automatically on GitHub.

J
jielinxu 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
### GitHub workflow

Please create a new branch from an up-to-date master on your fork.

1. Fork the repository on GitHub.
2. Clone your fork to your local machine with `git clone git@github.com:<yourname>/milvus-io/milvus.git`.
3. Create a branch with `git checkout -b my-topic-branch`.
4. Make your changes, commit, then push to to GitHub with `git push --set-upstream origin my-topic-branch`.
5. Visit GitHub and make your pull request.

If you have an existing local repository, please update it before you start, to minimize the chance of merge conflicts.

```shell
git remote add upstream git@github.com:milvus-io/milvus.git
git checkout master
git pull upstream master
git checkout -b my-topic-branch
```

### General guidelines

J
jielin.xu 已提交
54 55 56 57
### General guidelines

Before sending your pull requests for review, make sure your changes are consistent with the guidelines and follow the Milvus coding style.

J
jielin.xu 已提交
58 59
- Include unit tests when you contribute new features, as they help to prove that your code works correctly, and also guard against future breaking changes to lower the maintenance cost.
- Bug fixes also require unit tests, because the presence of bugs usually indicates insufficient test coverage.
J
jielin.xu 已提交
60 61 62 63
- Keep API compatibility in mind when you change code in Milvus. Reviewers of your pull request will comment on any API compatibility issues.
- When you contribute a new feature to Milvus, the maintenance burden is (by default) transferred to the Milvus team. This means that the benefit of the contribution must be compared against the cost of maintaining the feature.


J
jielin.xu 已提交
64
## Coding Style
J
jielin.xu 已提交
65 66 67 68 69 70
The coding style used in Milvus generally follow [Google C++ Style Guide](https://google.github.io/styleguide/cppguide.html).
And we made the following changes based on the guide:

- 4 spaces for indentation
- Adopt .cpp file extension instead of .cc extension
- 120-character line length
J
jielin.xu 已提交
71
- Camel-Cased file names
J
jielin.xu 已提交
72

J
jielin.xu 已提交
73

J
jielin.xu 已提交
74 75
## Run unit test

J
jielin.xu 已提交
76 77 78
We use Google Test framework for test running.
To run unit test for Milvus under C++, please use the following command:

J
jielin.xu 已提交
79
```shell
J
jielin.xu 已提交
80
# Run unit test for Milvus
J
jielin.xu 已提交
81 82 83
$ ./build.sh -u
```

J
jielin.xu 已提交
84