arthas/CONTRIBUTING.md

156 lines
5.8 KiB
Markdown
Raw Normal View History

2018-09-13 00:23:22 +08:00
## Issue
Welcome to use [issue tracker](https://github.com/alibaba/arthas/issues) to give us :bowtie::
* feedbacks - what you would like to have;
* usage tips - what usages you have found splendid;
* experiences - how you use Arthas to do **effective** troubleshooting;
## Documentation
2022-08-26 11:20:09 +08:00
* Under `site/docs/`.
## Online Tutorials
Please refer to [README.MD at tutorials/katacoda](tutorials/katacoda/README.md#contribution-guide)
## Developer
2018-10-12 15:01:36 +08:00
* Arthas runtime supports JDK6+
2022-11-07 16:21:09 +08:00
* It is recommended to use JDK8 to compile, and you will encounter problems when using a higher version. Reference https://github.com/alibaba/arthas/tree/master/.github/workflows
* If you encounter jfr related problems, it is recommended to use `8u262` and later versions of openjdk8 or zulu jdk8, https://mail.openjdk.org/pipermail/jdk8u-dev/2020-July/012143.html
### Local Installation
Recommend to use [`as-package.sh`](as-package.sh) to package, which will auto-install the latest Arthas to local `~/.arthas` and when debugging, Arthas will auto-load the latest version.
2021-12-09 10:50:10 +08:00
* To support jni, cpp compiling environment support is required
* mac needs to install xcode
* windows need to install gcc
F.Y.I
1. when using [`as.sh`](https://github.com/alibaba/arthas/blob/master/bin/as.sh) to start Arthas, it will get the latest version under `~/.arthas/lib`;
2. when [`as-package.sh`](as-package.sh) packaging, it will get the version from `pom.xml` and suffix it with the current timestamp e.g. `3.0.5.20180917161808`.
You can also use `./mvnw clean package -DskipTests` to package and generate a `zip` under `packaging/target/` but remember when `as.sh` starts, it load the version under `~/.arthas/lib`.
### Start Arthas in specified version
When there are several different version, you can use `--use-version` to specify the version of Arthas to start your debug.
```bash
./as.sh --use-version 3.0.5.20180919185025
```
Tip: you can use `--versions` to list all available versions.
```bash
./as.sh --versions
```
### Debug
2018-10-12 15:01:36 +08:00
* [Debug Arthas In IDEA](https://github.com/alibaba/arthas/issues/222)
### Packaging All
* when packaging the whole project (Packaging All), you need to execute:
```bash
./mvnw clean package -DskipTests -P full
```
---
2018-09-13 00:23:22 +08:00
## Issue
2018-09-13 00:23:22 +08:00
欢迎在issue里对arthas做反馈分享使用技巧排查问题的经历。
* https://github.com/alibaba/arthas/issues
## 改进用户文档
2022-08-26 11:20:09 +08:00
用户文档在`site/docs/`目录下如果希望改进arthas用户文档欢迎提交PR。
2018-09-13 00:23:22 +08:00
## 改进在线教程
请参考[tutorials/katacoda下的说明](tutorials/katacoda/README_CN.md#贡献指南)
2018-09-13 00:23:22 +08:00
## 开发者相关
2018-10-12 15:01:36 +08:00
* Arthas运行支持JDK6+
2022-08-26 11:20:09 +08:00
* 建议使用JDK8来编译使用高版本会遇到问题。参考 https://github.com/alibaba/arthas/tree/master/.github/workflows
2022-11-07 16:21:09 +08:00
* 如果遇到jfr相关问题建议使用`8u262`及之后的高版本 openjdk8 或者zulu jdk8 https://mail.openjdk.org/pipermail/jdk8u-dev/2020-July/012143.html
2018-09-13 00:23:22 +08:00
### 安装到本地
本地开发时,推荐执行`as-package.sh`来打包会自动安装最新版本的arthas到`~/.arthas`目录里。debug时会自动使用最新版本。
2018-09-13 00:23:22 +08:00
2021-12-09 10:50:10 +08:00
* 代码里要编译jni需要cpp编译环境支持
* mac需要安装xcode
* windows需要安装gcc
`as.sh`在启动时,会对`~/.arthas/lib`下面的目录排序,取最新的版本。`as-package.sh`在打包时,会取`pom.xml`里的版本号,再拼接上当前时间,比如: `3.0.5.20180917161808`,这样子排序时取的就是最新的版本。
2018-12-03 11:48:04 +08:00
也可以直接 `./mvnw clean package -DskipTests`打包生成的zip在 `packaging/target/` 下面。但是注意`as.sh`启动加载的是`~/.arthas/lib`下面的版本。
2018-09-19 19:31:12 +08:00
### 启动指定版本的arthas
本地开发时,可能会产生多个版本,可以用 `--use-version` 参数来指定版本,比如
```bash
./as.sh --use-version 3.0.5.20180919185025
```
可以用`--versions`参数来列出所有版本:
```bash
./as.sh --versions
```
### Debug
2018-10-12 15:01:36 +08:00
* [Debug Arthas In IDEA](https://github.com/alibaba/arthas/issues/222)
2018-09-13 00:23:22 +08:00
### 全量打包
2020-04-10 11:30:42 +08:00
* 全量打包时,需要配置下面的参数:
2018-09-13 00:23:22 +08:00
```
2020-04-10 11:30:42 +08:00
./mvnw clean package -DskipTests -P full
2018-09-13 00:23:22 +08:00
```
2018-12-07 11:24:05 +08:00
### Release Steps
2018-09-13 00:23:22 +08:00
2018-12-07 11:24:05 +08:00
发布release版本流程
2019-11-26 10:51:38 +08:00
* 修改`as.sh`里的版本,最后修改日期, `Bootstrap.java`里的版本Dockerfile里的版本
2018-12-07 11:24:05 +08:00
* 修改本地的maven settings.xml
2020-11-04 12:41:09 +08:00
* mvn clean deploy -DskipTests -P full -P release
2019-02-14 14:30:16 +08:00
2018-12-07 11:24:05 +08:00
* 到 https://oss.sonatype.org/ 上“Staging Repositories”然后close掉自己的再release
2019-12-05 17:34:59 +08:00
* 发布后,可以到这里查看是否同步到仓库里了: https://repo1.maven.org/maven2/com/taobao/arthas/arthas-packaging/
2019-02-14 14:30:16 +08:00
* 发布完maven仓库之后需要到阿里云的仓库里检查是否同步有可能有延时
2020-06-01 10:52:01 +08:00
比如下载地址: https://maven.aliyun.com/repository/public/com/taobao/arthas/arthas-packaging/3.x.x/arthas-packaging-3.x.x-bin.zip
2021-09-02 13:56:31 +08:00
版本号信息地址: https://maven.aliyun.com/repository/public/com/taobao/arthas/arthas-packaging/maven-metadata.xml
2020-06-01 10:52:01 +08:00
2020-11-04 12:41:09 +08:00
* 打上tagpush tag到仓库上
2021-03-17 17:49:21 +08:00
* 需要更新 gh-pages 分支下面的 arthas-boot.jar/math-game.jar/as.sh ,下载 doc.zip解压覆盖掉文档的更新
2019-11-26 10:51:38 +08:00
* 需要更新docker镜像push新的taghttps://hub.docker.com/r/hengyunabc/arthas/tags?page=1&ordering=last_updated
2019-02-14 14:30:16 +08:00
2022-08-30 13:02:52 +08:00
以 3.6.5 版本为例:
2019-02-14 14:30:16 +08:00
```
2022-08-30 13:02:52 +08:00
docker buildx build . --build-arg ARTHAS_VERSION=3.6.5 --build-arg MIRROR=true -t hengyunabc/arthas:3.6.5 -t hengyunabc/arthas:latest --platform=linux/arm64,linux/amd64 --push
2019-02-14 14:30:16 +08:00
2022-08-30 13:02:52 +08:00
docker buildx build . --build-arg ARTHAS_VERSION=3.6.5 --build-arg MIRROR=true -f Dockerfile-No-Jdk -t hengyunabc/arthas:3.6.5-no-jdk --platform=linux/arm64,linux/amd64 --push
2019-02-14 14:30:16 +08:00
```
2019-09-09 15:50:46 +08:00
* 更新README.md比如增加了新命令要加上说明更新wiki的链接
2019-09-19 11:24:37 +08:00
* 更新release页面的 issue信息修改信息等
2019-12-05 17:34:59 +08:00
* 更新内部的版本