Tony Zeng

Results 8 issues of Tony Zeng

你好,请问高亮结果不对如何处理?使用的默认配置 ![image](https://user-images.githubusercontent.com/5842389/71789414-f2b50080-3065-11ea-9cc8-235c111b647d.png)

## TODO - Cold-start (ETL) opt - hold buffer full handle - hold change after now - Test Framework more - join - performance test - Add `/stat`, `/input` endpoint...

enhancement

- Use [newest code](https://github.com/zzt93/syncer/blob/master/doc/consumer.md#filter) config - Use intellij create new `Debug Configuration` and config like following. ![image](https://user-images.githubusercontent.com/5842389/115181299-2b1d0880-a10a-11eb-9e6e-71f51bc19921.png) - Use itellij breakpoint to debug

question

- BatchBuffer flush same time - BatchBuffer should be thread local - ES output, insert by query will not retry - ES/Mysql output retry logic opt: if output fail too...

bug

**Describe the solution you'd like** Make `loadToMysql` async, then count from target mysql/es every 5 seconds or so to find sync speed. **Additional context** Upgrade DataGenerator or add a script...

enhancement

Now, we have a worker thread to connect to remote mysql and listen event. When shutting down, how to close the client? For the time being, we do the following,...

如下demo2的代码: '''compute angles''' P = p_s.h_P nm = torch.cat([P, -torch.ones(p_s.num_P,1)], dim=1) nm /= torch.norm(nm,dim=1).view(-1,1) cs = torch.sum(nm[I_all[0,:],:] * nm[I_all[1,:],:], 1) #element-wise multiplication cs = torch.min(torch.ones([cs.shape[0]]), cs) theta = torch.acos(cs) 这里为什么要cat一个-1?不需要-1就可以直接计算了呀?...