pseudocodes

Results 3 issues of pseudocodes

**System (please complete the following information):** - OS: `linux, macOS` - GO Version: `1.18` - Pkg Version: `0.5.5` **Describe the bug** ```go &fatal error: concurrent map read and map write...

bug

### 背景 HBase 是一个构建运行在 Hadoop 分布式文件系统 (HDFS)上的非关系型列存储数据库,是 BigTable 的第一个开源实现版本,HBase 提供了稀疏数据集的容错存储方式,这种存储方式被应用在了许多大数据处理的场景中,HBase 同时也非常适合实时数据处理或对大量数据的随机读写访问; Zetta 被设计为构建在 TiKV 上的 BigTable, 支持多场景下的表格存储,为了扩大其在在线访问领域的应用场景,更容易将已有的 HBase 在线业务无缝迁移到 Zetta 系统中,我们计划对 HBase 客户端协议进行适配。我们期待获得一个较为简洁的适配方案,能够满足大部分 HBase 的数据访问场景。 ### 问题 1. HBase 的客户端访问依赖...

fix FLWCons for 2 case below ``` /10.100.12.2:56765[1](queued=-1,recved=314041,sent=314041,sid=0x1708cc31f4a0001,lop=SETA,est=1582909574451,to=10000,lcxid=0x12916e,lzxid=0xdc000a0c1d,lresp=1583583401593,llat=0,minlat=0,avglat=0,maxlat=214) /10.100.23.2:50677[0](queued=0,recved=1,sent=0) ``` and fix time.Unix setting ``` est=1582909574451 Established: time.Unix(est, 0) => Established: time.Unix(est/1000, (est%1000)*1e6) should be : 1582909574, 451000000