Is this Available in maven repository.? I did not build the xml I just added below dependencies in my POM.xml and it should work right?
<dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-client</ artifactId> <version>1.1.0-SNAPSHOT</version> </dependency> <dependency> < groupId>org.apache.hbase</groupId> <artifactId>hbase-server</artifactId> < version>1.1.0-SNAPSHOT</version> </dependency> On 16 April 2015 at 19:04, Ted Yu <[email protected]> wrote: > bq. saying missing artifacts > > Can you pastebin the errors you encountered ? > > Thanks > > On Wed, Apr 15, 2015 at 9:32 PM, Jeetendra Gangele <[email protected]> > wrote: > > > I tried adding below dependencies in pom.xml did not work out saying > > missing artifacts > > > > <dependency> <groupId>org.apache.hbase</groupId> > <artifactId>hbase-client</ > > artifactId> <version>1.1.0-SNAPSHOT</version> </dependency> <dependency> > < > > groupId>org.apache.hbase</groupId> <artifactId>hbase-server</artifactId> > < > > version>1.1.0-SNAPSHOT</version> </dependency> > > > > On 15 April 2015 at 05:35, Nick Dimiduk <[email protected]> wrote: > > > > > This feature has been committed to master (2.0) and branch-1 (1.1). You > > can > > > checkout the code and build branch-1. If you're not comfortable with > > that, > > > the 1.1.0 release is scheduled for end of this month. There should be > > some > > > SNAPSHOT builds available in the mean time (IIRC, at least one has > > already > > > been pushed), so you can see about updating your pom to hbase version > > > 1.1.0-SNAPSHOT to find this feature. > > > > > > Do any of those options work for you Jeetendra? > > > > > > On Tue, Apr 14, 2015 at 1:29 PM, Jeetendra Gangele < > [email protected] > > > > > > wrote: > > > > > > > Hi All I have multiple range Queries which I need to fire on same > table > > > and > > > > Want the result at single call. > > > > > > > > I did little bit search and found > > > > https://issues.apache.org/jira/browse/HBASE-11144 > > > > is there any alternative for this? which can give same performance. > > > > Will it give much better result then firing the each range query in > > > > separate scan and collating the results from each scan. > > > > > > > > Also if its not possible can you please guide how to apply this > patch. > > > > > > > > > >
