Skip to content

Commit

Permalink
v2.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jc3wish committed Oct 15, 2023
1 parent d632cb0 commit 3513b03
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.EN.MD
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,11 @@ After compiling, the corresponding platform name folder will be created in the t
##### Binary

```
wget https://github.com/brokercap/Bifrost/releases/download/v2.2.0-beta/bifrost_v2.2.0-beta_Linux-amd64-bin.tar.gz
wget https://github.com/brokercap/Bifrost/releases/download/v2.2.1-beta/bifrost_v2.2.1-beta_Linux-amd64-bin.tar.gz
tar -zxvf bifrost_v2.2.0-beta_Linux-amd64-bin.tar.gz
tar -zxvf bifrost_v2.2.1-beta_Linux-amd64-bin.tar.gz
cd bifrost_v2.2.0-beta_Linux-amd64-bin/bin && chmod a+x ./Bifrost*
cd bifrost_v2.2.-beta_Linux-amd64-bin/bin && chmod a+x ./Bifrost*
```

Expand Down
6 changes: 3 additions & 3 deletions README.MD
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@ make install prefix=./target
##### 二进制文件安装
`````sh

wget https://github.com/brokercap/Bifrost/releases/download/v2.2.0-beta/bifrost_v2.2.0-beta_Linux-amd64-bin.tar.gz
wget https://github.com/brokercap/Bifrost/releases/download/v2.2.1-beta/bifrost_v2.2.1-beta_Linux-amd64-bin.tar.gz

tar -zxvf bifrost_v2.2.0-beta_Linux-amd64-bin.tar.gz
tar -zxvf bifrost_v2.2.1-beta_Linux-amd64-bin.tar.gz

cd bifrost_v2.2.0-beta_Linux-amd64-bin/bin && chmod a+x ./Bifrost*
cd bifrost_v2.2.1-beta_Linux-amd64-bin/bin && chmod a+x ./Bifrost*

`````

Expand Down
11 changes: 11 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
v2.2.1-beta 2023-10-15
1. Linux 作为服务器的情况下,通过读取 /proc/[pid]/status 内核文件下的 VmRSS 作为内存使用量
其他系统 ,将继续使用Go提供的runtime.MemStats里的统计数据
2. 修复input mock 全量完后,内存并没释放的BUG
3. 修复 input mock 在batch模式下,提前退出batch的逻辑bug
4. 修复input mock batch 结束后只是显示stopped,但没closed的bug
5. 界面操作优化更新
数据源界面新增简易搜索功能
数据源及目标库ConnUri输入框入框改为texterea,范围更大
6. 修复input mongo 在值为nil的情况下,ColumnMapping的时候panic的bug

v2.2.0-beta 2023-10-06
1. input kafka 在多parrtition的情况下支持设置处理数据转换的协程数量 来提升性能,一个partition的数据,只能被一个协程处理,在单partition的情况下,设置多个无效,默认为 单协程
2. input mongo 支持设置 全量,增量,以及先全量再增量的方式数据同步
Expand Down
2 changes: 1 addition & 1 deletion config/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ limitations under the License.

package config

const VERSION = "v2.2.0-beta"
const VERSION = "v2.2.1-beta"

0 comments on commit 3513b03

Please sign in to comment.