Lei
Lei
Same issue on win10 with v0.13.0. The thrift download url for windows in pom.xml is "http://artfiles.org/apache.org/thrift/${thrift.version}/thrift-${thrift.version}.exe" with ${thrift.version}=0.14.1. While the latest version is 0.16.0, so set thrift.version=0.16.0 and solve the...
读/写代码拷贝自[wiki](https://github.com/thulab/tsfile/wiki/Get-Started_0.3.0)。 写同一个文件两次之后再读报错如下: 
I encounter the same bug. df.show() returns 4 rows while df.count() is 9.
Is there any update on this issue?
select * from root.default.group_0.d_0 limit 5 offset 5 slimit 5 soffset 5实际执行时相当于先执行 select * from root.default.group_0.d_0 limit 5 offset 5,然后再取出结果集中的第5列到第9列,所以卡住的原因可能在于单纯的select * from root.default.group_0.d_0查询涉及到的时间序列条数太多。 后续考虑是否重新实现slimit,从“只作用在结果集”改为“作用在查询执行计划”中。
### 1. 卡住应该是因为[java.lang.OutOfMemoryError with StringBuilder or StringBuffer](http://mohammed-technical.blogspot.com/2010/09/javalangoutofmemoryerror-with.html) > "The problem with StringBuilder I see is it doubles the capacity from current length. Lets say the internal char buffer length is...