[jira] [Created] (HBASE-12930) Check single row size not exceed configured max row size across families for Get/Scan

2015-01-27 Thread cuijianwei (JIRA)
cuijianwei created HBASE-12930: -- Summary: Check single row size not exceed configured max row size across families for Get/Scan Key: HBASE-12930 URL: https://issues.apache.org/jira/browse/HBASE-12930

[jira] [Created] (HBASE-12934) Utilize Flash storage for flushing

2015-01-27 Thread Ted Yu (JIRA)
Ted Yu created HBASE-12934: -- Summary: Utilize Flash storage for flushing Key: HBASE-12934 URL: https://issues.apache.org/jira/browse/HBASE-12934 Project: HBase Issue Type: Sub-task

Re: Memstore customize

2015-01-27 Thread Gaurav Agarwal
Yes that's what i wanted. Thanks to both of you. so in the current version of Hbase i can't use this feature of memorystore. On Wed, Jan 28, 2015 at 1:17 AM, Ted Yu yuzhih...@gmail.com wrote: Thanks Lars for chiming in. Gaurav: See the following for details: HBASE-10648 Pluggable Memstore

Re: Memstore customize

2015-01-27 Thread Vladimir Rodionov
CDH 5.2.1 (0.98-based) has HBASE-10648. -Vladimir On Tue, Jan 27, 2015 at 11:58 AM, Gaurav Agarwal gaurav130...@gmail.com wrote: Yes that's what i wanted. Thanks to both of you. so in the current version of Hbase i can't use this feature of memorystore. On Wed, Jan 28, 2015 at 1:17 AM, Ted

Re: Memstore customize

2015-01-27 Thread Ted Yu
HBase 1.0.0 release is around the corner - new RC should be coming out this week. You can play with Pluggable Memstore and give us your feedback. Thanks On Tue, Jan 27, 2015 at 11:58 AM, Gaurav Agarwal gaurav130...@gmail.com wrote: Yes that's what i wanted. Thanks to both of you. so in the

Memstore customize

2015-01-27 Thread Gaurav Agarwal
Currently hbase use memstore to store the information before flushing it to hFILE. Is there any way that i can use the Memstore to write my own key value pair and then it will get flush that into HFILE. Mean to say can we use MemStore to use it in our own way. Thanks

Re: Memstore customize

2015-01-27 Thread Gaurav Agarwal
Currently If i will store anything into Hbase table , I can directly use HBASE api to store the data into table. Internally first data will be store into memoryStore and then it will be flushed as HFile. Now instead of storing the data directly into Htable , Can i store the data into Memorystore

Re: Memstore customize

2015-01-27 Thread Gaurav Agarwal
di yiu want me to explain in better way On 1/28/15, Gaurav Agarwal gaurav130...@gmail.com wrote: Currently If i will store anything into Hbase table , I can directly use HBASE api to store the data into table. Internally first data will be store into memoryStore and then it will be flushed as

[jira] [Created] (HBASE-12933) [0.98] Fold StatisticsHConnection into HConnection

2015-01-27 Thread Andrew Purtell (JIRA)
Andrew Purtell created HBASE-12933: -- Summary: [0.98] Fold StatisticsHConnection into HConnection Key: HBASE-12933 URL: https://issues.apache.org/jira/browse/HBASE-12933 Project: HBase Issue

[jira] [Created] (HBASE-12932) Change the interface annotation of HConnection in 0.98 from Public/Stable to Public/Evolving

2015-01-27 Thread Andrew Purtell (JIRA)
Andrew Purtell created HBASE-12932: -- Summary: Change the interface annotation of HConnection in 0.98 from Public/Stable to Public/Evolving Key: HBASE-12932 URL: https://issues.apache.org/jira/browse/HBASE-12932

Re: Memstore customize

2015-01-27 Thread lars hofhansl
You can plug in your own implementation a memstore if that is what you mean. This is supported from 1.0 onwards (i.e. not in a released version of HBase, yet, but soon).If you can decide what to do at the time a data item is added you can also implement this via coprocessor hooks, for that take

[jira] [Created] (HBASE-12929) TableMapReduceUtil.initTableMapperJob unnecessarily limits the types of outputKeyClass and outputValueClass

2015-01-27 Thread Will Temperley (JIRA)
Will Temperley created HBASE-12929: -- Summary: TableMapReduceUtil.initTableMapperJob unnecessarily limits the types of outputKeyClass and outputValueClass Key: HBASE-12929 URL:

Re: Memstore customize

2015-01-27 Thread Gaurav Agarwal
Vladimir i am on hortonworks On Wed, Jan 28, 2015 at 1:34 AM, Vladimir Rodionov vladrodio...@gmail.com wrote: CDH 5.2.1 (0.98-based) has HBASE-10648. -Vladimir On Tue, Jan 27, 2015 at 11:58 AM, Gaurav Agarwal gaurav130...@gmail.com wrote: Yes that's what i wanted. Thanks to both of you.

[CANCELLED] [VOTE] The 1st HBase 0.98.10 release candidate (RC0) is available, vote closing 2/2/2015

2015-01-27 Thread Andrew Purtell
See HBASE-12933 and HBASE-12932. New RC forthcoming today. On Mon, Jan 26, 2015 at 10:33 PM, Andrew Purtell apurt...@apache.org wrote: ​The 1st HBase 0.98.10 release candidate (RC0) is available for download at http://people.apache.org/~apurtell/0.98.10RC0/ and Maven artifacts are also

hbase client and karaf

2015-01-27 Thread Yuling_C
Dell Customer Communication Hi All, I'm trying to run hbase client in Karaf but kept getting version mismatch error: at com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:801) at com.sun.jmx.mbeanserver.MXBeanProxy$InvokeHandler.invoke(MXBeanProxy.java:150)

RE: hbase client and karaf

2015-01-27 Thread Yuling_C
Dell Customer Communication Hi Ted, Thanks for your reply... no I don't think so. I've cleaned up all the other versions in my development environment. My .m2 maven repository only contains one version of hbase jar. So, I don't believe I would have any other hbase jars in my environment...

Re: Memstore customize

2015-01-27 Thread Ted Yu
You mean skipping the HTable API ? Can you tell us more about your use case ? Cheers On Tue, Jan 27, 2015 at 10:20 AM, Gaurav Agarwal gaurav130...@gmail.com wrote: Currently hbase use memstore to store the information before flushing it to hFILE. Is there any way that i can use the

Re: Memstore customize

2015-01-27 Thread Ted Yu
Thanks Lars for chiming in. Gaurav: See the following for details: HBASE-10648 Pluggable Memstore Cheers On Tue, Jan 27, 2015 at 11:43 AM, lars hofhansl la...@apache.org wrote: You can plug in your own implementation a memstore if that is what you mean. This is supported from 1.0 onwards

Re: hbase client and karaf

2015-01-27 Thread Ted Yu
Looks like you are using HBase 0.90.5 See if there is jar of other HBase release in the classpath. Cheers On Tue, Jan 27, 2015 at 1:52 PM, yulin...@dell.com wrote: Dell Customer Communication Hi All, I'm trying to run hbase client in Karaf but kept getting version mismatch error:

Re: hbase client and karaf

2015-01-27 Thread Ted Yu
So you set thread context classloader as described in the blog ? Can you look at /home/yuling_c/.m2/repository/org/apache/hbase to see if any module is there ? Pardon me, I am not familiar with Karaf feature descriptor. Cheers On Tue, Jan 27, 2015 at 4:05 PM, yulin...@dell.com wrote: Dell

[VOTE] The 2nd HBase 0.98.10 release candidate (RC1) is available, vote closing 2/3/2015

2015-01-27 Thread Andrew Purtell
​The 2nd HBase 0.98.10 release candidate (RC1) is available for download at http://people.apache.org/~apurtell/0.98.10RC1/ and Maven artifacts are also available in the temporary repository https://repository.apache.org/content/repositories/orgapachehbase-1059/ Signed with my code signing key

[jira] [Created] (HBASE-12935) Does any one consider the performance of HBase on SSD?

2015-01-27 Thread Liang Lee (JIRA)
Liang Lee created HBASE-12935: - Summary: Does any one consider the performance of HBase on SSD? Key: HBASE-12935 URL: https://issues.apache.org/jira/browse/HBASE-12935 Project: HBase Issue

RE: hbase client and karaf

2015-01-27 Thread Yuling_C
Dell Customer Communication Hi Ted, I actually just passed this issue. I made two changes: one is to add hbase-default.xml to my client jar, the other is to apply the thread context classloader to the HTable connection as well. I'm not sure which one helped and will nail it down a bit

[jira] [Resolved] (HBASE-12935) Does any one consider the performance of HBase on SSD?

2015-01-27 Thread Andrew Purtell (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-12935?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Andrew Purtell resolved HBASE-12935. Resolution: Duplicate Resolving this as a dup of HBASE-6572 and subtasks Does any one

[jira] [Created] (HBASE-12931) The existing KeyValues in memstroe are not removed completely after inserting cell into memStore

2015-01-27 Thread ChiaPing Tsai (JIRA)
ChiaPing Tsai created HBASE-12931: - Summary: The existing KeyValues in memstroe are not removed completely after inserting cell into memStore Key: HBASE-12931 URL:

[VOTE] Third release candidate for HBase 1.0.0 (RC2) is available. Please vote by Feb 08 2015

2015-01-27 Thread Enis Söztutar
It gives me great pleasure to announce that the third release candidate for the release 1.0.0 (HBase-1.0.0RC2), is available for download at https://dist.apache.org/repos/dist/dev/hbase/hbase-1.0.0RC2/ Maven artifacts are also available in the temporary repository

[jira] [Resolved] (HBASE-12918) Backport asciidoc changes

2015-01-27 Thread Enis Soztutar (JIRA)
[ https://issues.apache.org/jira/browse/HBASE-12918?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Enis Soztutar resolved HBASE-12918. --- Resolution: Fixed Hadoop Flags: Reviewed Resolving. Hopefully all done. Thanks Andrew