Istvan Toth
Istvan Toth
I think using something like org.apache.phoenix.util.PhoenixRuntime.getTable(Connection, String)is the easiest (and perhaps fastest). PTable also tells us if the table is salted. As for the processor, I could not find a...
Salting is not an HBase feature, it's a Phoenix feature (at least as used by Phoenix). Ideally, HBase had a MergePolicy mechanism simliar to the SplitPolicy mechanism where we could...
Yes, the problem is caused by this assumption built into the Phoenix implementation. If we could remove that without hurting performance, that would be brilliant. Thank you for digging into...
Shouldn't we do the same for phoenix-server ?
The Jenkins tests are triggered automatically.
Marked as draft, as I am not sure if / how we ought to cache the local TZ.
This is the hbase-endpoint dependency cleanup, split from HBASE-28411, as discussed, @Apache9 .
A test has erronously used Curator's shaded Guava, and in a previous cleanup it has been added as an explicit dependency to avoid undeclared direct dependencies. Later on the curator...
I think we could, as curator users should declare their own dependencies. However, I don't think filtering individual transitive dependencies (and keeping those up to date) is a path we...
* IMO it's always better not to have a dependency than it is to have one, when it is avoidable. * Curator libs are added to the HBase classpath. Curator...