Re: the number of rowsFiltered is increased, even not filtered

2024-11-11 Thread Duo Zhang
Could you provide a UT to represent this behavior? Looking at the code, I agree with you that this seems like a bug. But the scan logic is a bit complicated, I'm not sure whether we have other ways to make the result correct... Thanks. Kang Minwoo 于2024年11月11日周一 20:16写道: > > Hello Community, >

the number of rowsFiltered is increased, even not filtered

2024-11-11 Thread Kang Minwoo
Hello Community, According to the HBASE-5980[1], rowsFiltered should only count the number of rows filtered by the filter. However, if the current row is DeleteFamily, the number of rowsFiltered increases because there are no results in populateResult. // HRegion.RegionScannerImpl

Evolution of Phoenix into a Document DB

2024-11-11 Thread Viraj Jasani
Hi, We recently published a blog post on how we transformed Apache Phoenix into a Document Database while retaining the power of SQL. The data type support we introduced in Phoenix could also be done in HBase. However, for all the features that Phoenix complements HBase with (e.g. global consiste

Re: Evolution of Phoenix into a Document DB

2024-11-11 Thread Istvan Toth
Thank you Viraj! On Tue, Nov 12, 2024 at 7:40 AM Viraj Jasani wrote: > Hi, > > We recently published a blog post on how we transformed Apache Phoenix into > a Document Database while retaining the power of SQL. The data type support > we introduced in Phoenix could also be done in HBase. > > Ho