[jira] [Resolved] (HBASE-18717) [pom cleanup] endpoints in hbase-server require explicit inclusion of hbase-protocol

2017-08-30 Thread stack (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-18717?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] stack resolved HBASE-18717. --- Resolution: Duplicate Marking as duplicate, subsumed by HBASE-18723 which backs up and addresses the larger

[jira] [Created] (HBASE-18723) [pom cleanup] Do a pass with dependency:analyze; remove unused and explicity list the dependencies we exploit

2017-08-30 Thread stack (JIRA)
stack created HBASE-18723: - Summary: [pom cleanup] Do a pass with dependency:analyze; remove unused and explicity list the dependencies we exploit Key: HBASE-18723 URL: https://issues.apache.org/jira/browse/HBASE-18723

Re: Problem writing .so - libevent

2017-08-30 Thread Andrzej
W dniu 31.08.2017 o 02:43, Andrzej pisze: I try I changed library "event" to be dynamic. Two problems: buck build //core:core - nothing to build buck build //core:hbNativeLib - give me |=> //core:hbNativeLib#binary... 6.8s (running c++ link[1.0s]) /usr/bin/ld: warning: libif_if.so, needed

Re: Problem writing .so - libevent

2017-08-30 Thread Andrzej
W dniu 31.08.2017 o 02:36, Ted Yu pisze: In my docker VM, I see: /usr/lib/x86_64-linux-gnu/libevent.a True, in my usual Linux I see only libevent.so, but in docker I see both You can try building //core:core first which should generate libevent.a (dependency). I try

Re: Problem writing .so - libevent

2017-08-30 Thread Ted Yu
In my docker VM, I see: /usr/lib/x86_64-linux-gnu/libevent.a You can try building //core:core first which should generate libevent.a (dependency). Cheers On Wed, Aug 30, 2017 at 5:28 PM, Andrzej wrote: > W dniu 31.08.2017 o 00:35, Ted Yu pisze: > >> libevent.a is

Re: Problem writing .so - libevent

2017-08-30 Thread Andrzej
W dniu 31.08.2017 o 00:35, Ted Yu pisze: libevent.a is system library. From hbase-native-client/third-party/BUCK : system_libs = [ "lzma", "event", Just problem, that libevent.a is system library. Is possible install other version or recompile it anyway? From where is copied to

Re: Problem writing .so - libevent

2017-08-30 Thread Ted Yu
libevent.a is system library. >From hbase-native-client/third-party/BUCK : system_libs = [ "lzma", "event", On Wed, Aug 30, 2017 at 3:31 PM, Andrzej wrote: > W dniu 31.08.2017 o 00:27, Ted Yu pisze: > >> Were you using docker ? >> Was libevent.a generated ? >> >>

Re: Problem writing .so - libevent

2017-08-30 Thread Andrzej
W dniu 31.08.2017 o 00:27, Ted Yu pisze: Were you using docker ? Was libevent.a generated ? In my docker VM, I have: -rw-r--r-- 1 root root 506746 Aug 16 16:08 buck-out/gen/third-party/gen_libevent/gen_libevent/libevent.a The same: full path:

Re: Problem writing .so - libevent

2017-08-30 Thread Ted Yu
Were you using docker ? Was libevent.a generated ? In my docker VM, I have: -rw-r--r-- 1 root root 506746 Aug 16 16:08 buck-out/gen/third-party/gen_libevent/gen_libevent/libevent.a Cheers On Wed, Aug 30, 2017 at 2:49 PM, Andrzej wrote: > I want write shared object

Problem writing .so - libevent

2017-08-30 Thread Andrzej
I want write shared object using native client classes. My BUCK: cxx_binary( name="hbNativeLib", srcs=[ "hbNativeLib.cpp", ], deps=[":core", "//connection:connection"], compiler_flags = ['-fPIC'], link_style="shared",) //-fPIC here is needed? I have error:

[jira] [Resolved] (HBASE-16633) Optimize HBase RPC Encryption Performance

2017-08-30 Thread Robert Yokota (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-16633?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Robert Yokota resolved HBASE-16633. --- Resolution: Duplicate > Optimize HBase RPC Encryption Performance >

[jira] [Created] (HBASE-18722) Replace copied guava code w/ pointer to the (shaded) lib

2017-08-30 Thread stack (JIRA)
stack created HBASE-18722: - Summary: Replace copied guava code w/ pointer to the (shaded) lib Key: HBASE-18722 URL: https://issues.apache.org/jira/browse/HBASE-18722 Project: HBase Issue Type: Bug

[jira] [Created] (HBASE-18721) Cleanup unused config and private declaration

2017-08-30 Thread Chia-Ping Tsai (JIRA)
Chia-Ping Tsai created HBASE-18721: -- Summary: Cleanup unused config and private declaration Key: HBASE-18721 URL: https://issues.apache.org/jira/browse/HBASE-18721 Project: HBase Issue

[jira] [Created] (HBASE-18720) [C++] Update wangle dependency to pick up the new release with AL v2

2017-08-30 Thread Enis Soztutar (JIRA)
Enis Soztutar created HBASE-18720: - Summary: [C++] Update wangle dependency to pick up the new release with AL v2 Key: HBASE-18720 URL: https://issues.apache.org/jira/browse/HBASE-18720 Project:

Re: How works scan ?

2017-08-30 Thread Ted Yu
Filter can be applied to Query. Both Scan and Get are subclasses of Query. For Scan, you have SetStartRow() and SetStopRow(). Take a look at core/scan.h for related methods. On Wed, Aug 30, 2017 at 10:17 AM, Andrzej wrote: > In folder hbase-native-client/core/ > I have

How works scan ?

2017-08-30 Thread Andrzej
In folder hbase-native-client/core/ I have example: Scan scan{}; //<--- here always {} ? auto scanner = table->Scan(scan); auto r = scanner->Next(); scanner->Close(); Scan walks from first to last row of table or can be more advanced (search row value)? Is other sample filter-test.cc

[jira] [Created] (HBASE-18719) optimize size of shaded artifacts

2017-08-30 Thread Sean Busbey (JIRA)
Sean Busbey created HBASE-18719: --- Summary: optimize size of shaded artifacts Key: HBASE-18719 URL: https://issues.apache.org/jira/browse/HBASE-18719 Project: HBase Issue Type: Improvement

Re: build a hbase tall table

2017-08-30 Thread Ted Yu
There are several posts if you search online. A few examples: http://hbase.apache.org/book.html#casestudies.schema.listdata https://community.hortonworks.com/questions/26110/hbase-tall-narrow-or-flat-wide-design.html Cheers On Wed, Aug 30, 2017 at 4:43 AM, Peter Li wrote:

build a hbase tall table

2017-08-30 Thread Peter Li
Do anyone know what the pro and cons on building a hbase tall table rather than wide one? From performance perpective it should be faster than wild one? Regards, Peter

What does native client (HBASE-14850) do?

2017-08-30 Thread Andrzej
https://github.com/apache/hbase.git branch HBASE-14850 file: <.git>/hbase-native-client/core/simple-client.cc and environment folders get table names - put, get into table + create, delete table ? What is the status today?

[jira] [Created] (HBASE-18718) Document the coprocessor.Export

2017-08-30 Thread Chia-Ping Tsai (JIRA)
Chia-Ping Tsai created HBASE-18718: -- Summary: Document the coprocessor.Export Key: HBASE-18718 URL: https://issues.apache.org/jira/browse/HBASE-18718 Project: HBase Issue Type: Sub-task

[jira] [Resolved] (HBASE-15806) An endpoint-based export tool

2017-08-30 Thread Chia-Ping Tsai (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-15806?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chia-Ping Tsai resolved HBASE-15806. Resolution: Fixed > An endpoint-based export tool > - > >