Tony Zeng
Tony Zeng
你好,请问高亮结果不对如何处理?使用的默认配置 
## TODO - Cold-start (ETL) opt - hold buffer full handle - hold change after now - Test Framework more - join - performance test - Add `/stat`, `/input` endpoint...
- 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.  - Use itellij breakpoint to debug
Bug List
- 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...
**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...
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就可以直接计算了呀?...