Cannot connect phoenix client in kerberos cluster

2017-10-04 Thread Mallieswari Dineshbabu
Hi , I have configured a phoenix package "apache-phoenix-4.11.0-HBase-1.2-bin" to Hbase version "1.2.5" in kerberos cluster. For phoenix secure cluster configuration, I have added the following properties into the *hbase-site.xml* present in *phoenix/bin* along with the properties of hbase

Re: Cannot connect phoenix client in kerberos cluster

2017-10-04 Thread rafa
Hi Mallieswari, Perhaps the Java Cryptography Extension (JCE) Unlimited Strength Jurisdiction Policy Files are not installed in all the JVMs ? Regards, rafa On Wed, Oct 4, 2017 at 1:18 PM, Mallieswari Dineshbabu < dmalliesw...@gmail.com> wrote: > Hi , > > > > I have configured a phoenix

Re: Async get

2017-10-04 Thread James Taylor
Hi Flavio, Phoenix supports JDBC. The implementation may do gets, scans, etc., but it's completely transparent to the user. Thanks, James On Wed, Oct 4, 2017 at 6:36 AM, Flavio Pompermaier wrote: > Hi to all, > does Phoenix support async get? I can't find anything about

Re: Async get

2017-10-04 Thread Kevin Liew
Wrapping a thread-blocking call in a Future makes it asynchronous, but does not turn it into a non-blocking call. https://www.google.ca/amp/blog.colinbreck.com/calling-blocking-code-there-is-no-free-lunch/amp/ On Wed, Oct 4, 2017 at 11:36 AM Stan Campbell wrote: >