Re: [DISCUSS] Contribution of a thrift2 python api

2021-11-23 Thread Sean Uetung
Hi all, The MR link is: https://github.com/apache/hbase-connectors/pull/86 Someone would like to have a look? Sean Uetung 于2021年10月21日周四 上午11:08写道: > Have submitted an MR about this in the ticket > https://issues.apache.org/jira/browse/HBASE-26354. The MR passed the QA. > > Sean Busbey

Re: [DISCUSS] Contribution of a thrift2 python api

2021-10-20 Thread Sean Uetung
Have submitted an MR about this in the ticket https://issues.apache.org/jira/browse/HBASE-26354. The MR passed the QA. Sean Busbey 于2021年9月29日周三 下午10:49写道: > yes, generally a PMC member associated with a specific release should > push the released artifacts to pypi. Someone will need to run

Re: [DISCUSS] Contribution of a thrift2 python api

2021-09-29 Thread Sean Busbey
yes, generally a PMC member associated with a specific release should push the released artifacts to pypi. Someone will need to run down the details of doing that, but there is precedent of other ASF projects doing so. On Tue, Sep 28, 2021 at 10:14 PM Yutong Xiao wrote: > > Contributing to

Re: [DISCUSS] Contribution of a thrift2 python api

2021-09-28 Thread Yutong Xiao
Contributing to hbase-connectors is ok for me. But there is a question about how to release the package. Currently, I upload the package to pypi with my own pypi account. Not clear whether this should change if I contribute the client to hbase-connectors. Reid Chan 于2021年8月3日周二 下午10:27写道: >

Re: [DISCUSS] Contribution of a thrift2 python api

2021-08-03 Thread Reid Chan
Brief summaries from this thread: I think you can push to hbase-connectors repo. Just create a new dir hbase-thrift-python, and put your codes under it. Your codes need to be reviewed by good Pythoners in the community. Some follow-up tasks include

Re: [DISCUSS] Contribution of a thrift2 python api

2021-08-02 Thread Yutong Xiao
Hello, any other thoughts about this? Yutong Xiao 于2021年7月21日周三 上午11:30写道: > Hi. I have removed the personal info in the licenses. For the point 3.2, > thbase is dependent on the hbase.thrift file. I have involved the > hbase.thrift file, that thbase used, in the repo. In this case, repo >

Re: [DISCUSS] Contribution of a thrift2 python api

2021-07-20 Thread Yutong Xiao
Hi. I have removed the personal info in the licenses. For the point 3.2, thbase is dependent on the hbase.thrift file. I have involved the hbase.thrift file, that thbase used, in the repo. In this case, repo separation will lead to a sync problem between the hbase.thrfit files in HBase repo and

Re: [DISCUSS] Contribution of a thrift2 python api

2021-07-16 Thread Duo Zhang
One of the difficulties of moving hbase-thrift and hbase-rest out is because we make use of hbase-http in these two modules, at least for setting up the status servlet... Sean Busbey 于2021年7月16日周五 下午11:01写道: > maybe a good fit for the hbase-connectors repo? I know we've talked a > few times

Re: [DISCUSS] Contribution of a thrift2 python api

2021-07-16 Thread Sean Busbey
maybe a good fit for the hbase-connectors repo? I know we've talked a few times about moving the thrift server out there. if we did both then the compatibility question becomes just the standard client/server compatibility provided the thrift server only uses our public java client API. On Thu,

Re: [DISCUSS] Contribution of a thrift2 python api

2021-07-15 Thread Yutong Xiao
btw for point 2, if allowed I can do that. And for point 3.2 it is only a personal idea, the final decision should be made by the community. Besides, many of my python user colleagues started using this library. I think many python users have the demand of a good HBase python client. Yutong Xiao

Re: [DISCUSS] Contribution of a thrift2 python api

2021-07-15 Thread Yutong Xiao
1. The license is no problem. 2. This should see if any committer or PMC has interests to do that. 3. I can be responsible for those documents. About 3.2, as thbase has been uploaded to Pypi, I think it would be better if it is a new, separate repo. Wei-Chiu Chuang 于2021年7月6日周二 上午10:22写道: > Hi

Re: [DISCUSS] Contribution of a thrift2 python api

2021-07-05 Thread Wei-Chiu Chuang
Hi thanks for your interest in contributing the python api to the HBase project. I quickly check and it doesn't look like there's another active python HBase thrift client project at this point. I don't have a demand to use a python thrift hbase client library. If there are people who will

[DISCUSS] Contribution of a thrift2 python api

2021-07-05 Thread Yutong Xiao
Hi, I used to have a demand to deploy hbase thrift2 service for python users. So that I developed a python clients API supporting python 2.7 and 3.x for hbase thrift2, named thbase . Besides that, I also added some features to current thrift2 service