Hi community,
There's a patch on Redis plugin in https://issues.apache.org/jira/browse/OFBIZ-9829. Redis is key-value in-memory database widely used in Ecommerce and CRM. Michael asked me to discuss whether it's necessary to include it in OFBiz codebase. If not, I'll revert it. Thanks for your feedback, Shi Jinghai |
Hi Jinghai,
first of all thanks for your contribution. I appreciate your work, even if I do not agree with the process (see Jira issue). So please understand my critical questions as an attempt to assure a good process and quality for the project and not a refusal of your work or this plugin in general. For a proper proposal, please provide more informations on the solution and why it is useful for the project. You can see the community as a customer and you have to convince us that the solution is worth being introduced to OFBiz and being maintained further. In the past, we had several half-baked additions to the codebase which were committed and not maintained anymore. I would like to avoid this and the best way (IMO) is to be more restrictive when introducing new code to the project. For this plugin, at first glance, I'm missing the following informations and quality aspects: - the big picture: the motivation and use cases for this plugin and OFBiz integration - a documentation (brief descriptions of Redis et al or just links to these projects are not a documentation) - why you have chosen Redis and the Redisson client and not some other - a sample integration into OFBiz (to prove it is working and to show how it is used) - tests - source code documentation This is just a shot from my first impressions, others may follow. Looking forward to a good collaboration on this. Thanks, Michael Am 12.10.17 um 03:38 schrieb Shi Jinghai: > Hi community, > > There's a patch on Redis plugin in https://issues.apache.org/jira/browse/OFBIZ-9829. > > Redis is key-value in-memory database widely used in Ecommerce and CRM. > > Michael asked me to discuss whether it's necessary to include it in OFBiz codebase. If not, I'll revert it. > > Thanks for your feedback, > > Shi Jinghai > > smime.p7s (5K) Download Attachment |
Hello Shi, thank you for your work on this initiative.
When reviewing the component, I found that it pretty much focused on implementing three services and it doesn't seem to provide any deep integration or added value. The services are just to set, get and delete redis info which is a simple JSON object for initiating settings. I can't see the added value of this setup so far. I don't understand the purpose of this component, and I do not understand why it was committed without getting consensus from the community. This is actually also true of the pricat component which was committed without consulting with the community. My recommendation is to remove both components from the repository, and discuss their merits with the community first, and if enough people show interest and approval then we include the code. On Thu, Oct 12, 2017 at 1:11 PM, Michael Brohl <[hidden email]> wrote: > Hi Jinghai, > > first of all thanks for your contribution. I appreciate your work, even if I > do not agree with the process (see Jira issue). > > So please understand my critical questions as an attempt to assure a good > process and quality for the project and not a refusal of your work or this > plugin in general. > > For a proper proposal, please provide more informations on the solution and > why it is useful for the project. You can see the community as a customer > and you have to convince us that the solution is worth being introduced to > OFBiz and being maintained further. In the past, we had several half-baked > additions to the codebase which were committed and not maintained anymore. > > I would like to avoid this and the best way (IMO) is to be more restrictive > when introducing new code to the project. > > For this plugin, at first glance, I'm missing the following informations and > quality aspects: > > - the big picture: the motivation and use cases for this plugin and OFBiz > integration > - a documentation (brief descriptions of Redis et al or just links to these > projects are not a documentation) > - why you have chosen Redis and the Redisson client and not some other > - a sample integration into OFBiz (to prove it is working and to show how it > is used) > - tests > - source code documentation > > This is just a shot from my first impressions, others may follow. > > Looking forward to a good collaboration on this. > > Thanks, > > Michael > > > Am 12.10.17 um 03:38 schrieb Shi Jinghai: > >> Hi community, >> >> There's a patch on Redis plugin in >> https://issues.apache.org/jira/browse/OFBIZ-9829. >> >> Redis is key-value in-memory database widely used in Ecommerce and CRM. >> >> Michael asked me to discuss whether it's necessary to include it in OFBiz >> codebase. If not, I'll revert it. >> >> Thanks for your feedback, >> >> Shi Jinghai >> >> > > |
In reply to this post by Shi Jinghai-3
Thanks Michael and Taher's feedbacks! Very helpful.
While working on an OmniMedia service project (CRM), a requirement to make total time consume to calculate a seat assignment less than 100 milliseconds. The input data used in the calculation includes getting customer info, VIP/Redlist/Blacklist status, last seats to provide service to a customer, last cases and etc. We came to use Redis to cache customer data and Drools to do the calculation. The amount of customers is around 50 million, as OmniMeidia includes telephone number, email address, social media IDs. The data in Redis may explode to above 100 million. Currently, test result is ok, and we are happy to share the Redis solution with OFBiz community. Besides the CRM usage, we use Redis to cluster OFBiz as well, Reddison supports Tomcat 8 session management OOTB: https://github.com/redisson/redisson/tree/master/redisson-tomcat Kind Regards, Shi Jinghai -----邮件原件----- 发件人: Taher Alkhateeb [mailto:[hidden email]] 发送时间: 2017年10月13日 23:55 收件人: OFBIZ Development Mailing List 主题: Re: [Proposal] Add a Redis plugin to codebase (OFBIZ-9829) Hello Shi, thank you for your work on this initiative. When reviewing the component, I found that it pretty much focused on implementing three services and it doesn't seem to provide any deep integration or added value. The services are just to set, get and delete redis info which is a simple JSON object for initiating settings. I can't see the added value of this setup so far. I don't understand the purpose of this component, and I do not understand why it was committed without getting consensus from the community. This is actually also true of the pricat component which was committed without consulting with the community. My recommendation is to remove both components from the repository, and discuss their merits with the community first, and if enough people show interest and approval then we include the code. On Thu, Oct 12, 2017 at 1:11 PM, Michael Brohl <[hidden email]> wrote: > Hi Jinghai, > > first of all thanks for your contribution. I appreciate your work, > even if I do not agree with the process (see Jira issue). > > So please understand my critical questions as an attempt to assure a > good process and quality for the project and not a refusal of your > work or this plugin in general. > > For a proper proposal, please provide more informations on the > solution and why it is useful for the project. You can see the > community as a customer and you have to convince us that the solution > is worth being introduced to OFBiz and being maintained further. In > the past, we had several half-baked additions to the codebase which were committed and not maintained anymore. > > I would like to avoid this and the best way (IMO) is to be more > restrictive when introducing new code to the project. > > For this plugin, at first glance, I'm missing the following > informations and quality aspects: > > - the big picture: the motivation and use cases for this plugin and > OFBiz integration > - a documentation (brief descriptions of Redis et al or just links to > these projects are not a documentation) > - why you have chosen Redis and the Redisson client and not some other > - a sample integration into OFBiz (to prove it is working and to show > how it is used) > - tests > - source code documentation > > This is just a shot from my first impressions, others may follow. > > Looking forward to a good collaboration on this. > > Thanks, > > Michael > > > Am 12.10.17 um 03:38 schrieb Shi Jinghai: > >> Hi community, >> >> There's a patch on Redis plugin in >> https://issues.apache.org/jira/browse/OFBIZ-9829. >> >> Redis is key-value in-memory database widely used in Ecommerce and CRM. >> >> Michael asked me to discuss whether it's necessary to include it in >> OFBiz codebase. If not, I'll revert it. >> >> Thanks for your feedback, >> >> Shi Jinghai >> >> > > |
Jinghai,
you are not answering our concrete questions and you seem to constantly ignore our requests to revert the commit until the community decides that we want to integrate this plugin. To be clear, please do the follwoing: 1. revert the commit 2. make a proper proposal by answering the raised questions 3. adjust the code to match the raised points and provide a new patch in Jira (no commit!) Thanks for your collaboration, Michael Am 15.10.17 um 08:07 schrieb Shi Jinghai: > Thanks Michael and Taher's feedbacks! Very helpful. > > While working on an OmniMedia service project (CRM), a requirement to make total time consume to calculate a seat assignment less than 100 milliseconds. The input data used in the calculation includes getting customer info, VIP/Redlist/Blacklist status, last seats to provide service to a customer, last cases and etc. > > We came to use Redis to cache customer data and Drools to do the calculation. The amount of customers is around 50 million, as OmniMeidia includes telephone number, email address, social media IDs. The data in Redis may explode to above 100 million. > > Currently, test result is ok, and we are happy to share the Redis solution with OFBiz community. > > Besides the CRM usage, we use Redis to cluster OFBiz as well, Reddison supports Tomcat 8 session management OOTB: > https://github.com/redisson/redisson/tree/master/redisson-tomcat > > Kind Regards, > > Shi Jinghai > > > -----邮件原件----- > 发件人: Taher Alkhateeb [mailto:[hidden email]] > 发送时间: 2017年10月13日 23:55 > 收件人: OFBIZ Development Mailing List > 主题: Re: [Proposal] Add a Redis plugin to codebase (OFBIZ-9829) > > Hello Shi, thank you for your work on this initiative. > > When reviewing the component, I found that it pretty much focused on implementing three services and it doesn't seem to provide any deep integration or added value. The services are just to set, get and delete redis info which is a simple JSON object for initiating settings. I can't see the added value of this setup so far. > > I don't understand the purpose of this component, and I do not understand why it was committed without getting consensus from the community. This is actually also true of the pricat component which was committed without consulting with the community. > > My recommendation is to remove both components from the repository, and discuss their merits with the community first, and if enough people show interest and approval then we include the code. > > On Thu, Oct 12, 2017 at 1:11 PM, Michael Brohl <[hidden email]> wrote: >> Hi Jinghai, >> >> first of all thanks for your contribution. I appreciate your work, >> even if I do not agree with the process (see Jira issue). >> >> So please understand my critical questions as an attempt to assure a >> good process and quality for the project and not a refusal of your >> work or this plugin in general. >> >> For a proper proposal, please provide more informations on the >> solution and why it is useful for the project. You can see the >> community as a customer and you have to convince us that the solution >> is worth being introduced to OFBiz and being maintained further. In >> the past, we had several half-baked additions to the codebase which were committed and not maintained anymore. >> >> I would like to avoid this and the best way (IMO) is to be more >> restrictive when introducing new code to the project. >> >> For this plugin, at first glance, I'm missing the following >> informations and quality aspects: >> >> - the big picture: the motivation and use cases for this plugin and >> OFBiz integration >> - a documentation (brief descriptions of Redis et al or just links to >> these projects are not a documentation) >> - why you have chosen Redis and the Redisson client and not some other >> - a sample integration into OFBiz (to prove it is working and to show >> how it is used) >> - tests >> - source code documentation >> >> This is just a shot from my first impressions, others may follow. >> >> Looking forward to a good collaboration on this. >> >> Thanks, >> >> Michael >> >> >> Am 12.10.17 um 03:38 schrieb Shi Jinghai: >> >>> Hi community, >>> >>> There's a patch on Redis plugin in >>> https://issues.apache.org/jira/browse/OFBIZ-9829. >>> >>> Redis is key-value in-memory database widely used in Ecommerce and CRM. >>> >>> Michael asked me to discuss whether it's necessary to include it in >>> OFBiz codebase. If not, I'll revert it. >>> >>> Thanks for your feedback, >>> >>> Shi Jinghai >>> >>> >> smime.p7s (5K) Download Attachment |
In reply to this post by Shi Jinghai-3
Michael,
You're right. I've removed the Redis plugis from plugins trunk. Regards, Shi Jinghai -----邮件原件----- 发件人: Michael Brohl [mailto:[hidden email]] 发送时间: 2017年10月16日 16:52 收件人: [hidden email] 主题: Re: [Proposal] Add a Redis plugin to codebase (OFBIZ-9829) Jinghai, you are not answering our concrete questions and you seem to constantly ignore our requests to revert the commit until the community decides that we want to integrate this plugin. To be clear, please do the follwoing: 1. revert the commit 2. make a proper proposal by answering the raised questions 3. adjust the code to match the raised points and provide a new patch in Jira (no commit!) Thanks for your collaboration, Michael Am 15.10.17 um 08:07 schrieb Shi Jinghai: > Thanks Michael and Taher's feedbacks! Very helpful. > > While working on an OmniMedia service project (CRM), a requirement to make total time consume to calculate a seat assignment less than 100 milliseconds. The input data used in the calculation includes getting customer info, VIP/Redlist/Blacklist status, last seats to provide service to a customer, last cases and etc. > > We came to use Redis to cache customer data and Drools to do the calculation. The amount of customers is around 50 million, as OmniMeidia includes telephone number, email address, social media IDs. The data in Redis may explode to above 100 million. > > Currently, test result is ok, and we are happy to share the Redis solution with OFBiz community. > > Besides the CRM usage, we use Redis to cluster OFBiz as well, Reddison supports Tomcat 8 session management OOTB: > https://github.com/redisson/redisson/tree/master/redisson-tomcat > > Kind Regards, > > Shi Jinghai > > > -----邮件原件----- > 发件人: Taher Alkhateeb [mailto:[hidden email]] > 发送时间: 2017年10月13日 23:55 > 收件人: OFBIZ Development Mailing List > 主题: Re: [Proposal] Add a Redis plugin to codebase (OFBIZ-9829) > > Hello Shi, thank you for your work on this initiative. > > When reviewing the component, I found that it pretty much focused on implementing three services and it doesn't seem to provide any deep integration or added value. The services are just to set, get and delete redis info which is a simple JSON object for initiating settings. I can't see the added value of this setup so far. > > I don't understand the purpose of this component, and I do not understand why it was committed without getting consensus from the community. This is actually also true of the pricat component which was committed without consulting with the community. > > My recommendation is to remove both components from the repository, and discuss their merits with the community first, and if enough people show interest and approval then we include the code. > > On Thu, Oct 12, 2017 at 1:11 PM, Michael Brohl <[hidden email]> wrote: >> Hi Jinghai, >> >> first of all thanks for your contribution. I appreciate your work, >> even if I do not agree with the process (see Jira issue). >> >> So please understand my critical questions as an attempt to assure a >> good process and quality for the project and not a refusal of your >> work or this plugin in general. >> >> For a proper proposal, please provide more informations on the >> solution and why it is useful for the project. You can see the >> community as a customer and you have to convince us that the solution >> is worth being introduced to OFBiz and being maintained further. In >> the past, we had several half-baked additions to the codebase which were committed and not maintained anymore. >> >> I would like to avoid this and the best way (IMO) is to be more >> restrictive when introducing new code to the project. >> >> For this plugin, at first glance, I'm missing the following >> informations and quality aspects: >> >> - the big picture: the motivation and use cases for this plugin and >> OFBiz integration >> - a documentation (brief descriptions of Redis et al or just links to >> these projects are not a documentation) >> - why you have chosen Redis and the Redisson client and not some other >> - a sample integration into OFBiz (to prove it is working and to show >> how it is used) >> - tests >> - source code documentation >> >> This is just a shot from my first impressions, others may follow. >> >> Looking forward to a good collaboration on this. >> >> Thanks, >> >> Michael >> >> >> Am 12.10.17 um 03:38 schrieb Shi Jinghai: >> >>> Hi community, >>> >>> There's a patch on Redis plugin in >>> https://issues.apache.org/jira/browse/OFBIZ-9829. >>> >>> Redis is key-value in-memory database widely used in Ecommerce and CRM. >>> >>> Michael asked me to discuss whether it's necessary to include it in >>> OFBiz codebase. If not, I'll revert it. >>> >>> Thanks for your feedback, >>> >>> Shi Jinghai >>> >>> >> |
In reply to this post by Shi Jinghai-3
Hi Shi,
Thank you for sharing the experience you had during the OmniMedia service project and I agree millisecond performance is these days a important KPI in product selection and customer (or in the case of OFBiz: adopter) satisfaction. So your experience showed that performance of OFBiz can improve with applying Redis into the solution stack. I guess that, in order to be fully appreciative of what you're trying to deliver via OFBIZ-9829 and for the project to be able to assess whether the proposed plugin is going to be included in the plugin repo, a page (e.g. in confluence, or elsewhere) addressing the architecture change and data flows (e.g. through diagrams) before and after the implementation, as well as providing some metrics regarding performance enhancement would be very beneficial. Please consider this in moving discussion forward. Best regards, Pierre Smits ORRTIZ.COM <http://www.orrtiz.com> OFBiz based solutions & services OFBiz Extensions Marketplace http://oem.ofbizci.net/oci-2/ On Sun, Oct 15, 2017 at 8:07 AM, Shi Jinghai <[hidden email]> wrote: > Thanks Michael and Taher's feedbacks! Very helpful. > > While working on an OmniMedia service project (CRM), a requirement to make > total time consume to calculate a seat assignment less than 100 > milliseconds. The input data used in the calculation includes getting > customer info, VIP/Redlist/Blacklist status, last seats to provide service > to a customer, last cases and etc. > > We came to use Redis to cache customer data and Drools to do the > calculation. The amount of customers is around 50 million, as OmniMeidia > includes telephone number, email address, social media IDs. The data in > Redis may explode to above 100 million. > > Currently, test result is ok, and we are happy to share the Redis solution > with OFBiz community. > > Besides the CRM usage, we use Redis to cluster OFBiz as well, Reddison > supports Tomcat 8 session management OOTB: > https://github.com/redisson/redisson/tree/master/redisson-tomcat > > Kind Regards, > > Shi Jinghai > > > -----邮件原件----- > 发件人: Taher Alkhateeb [mailto:[hidden email]] > 发送时间: 2017年10月13日 23:55 > 收件人: OFBIZ Development Mailing List > 主题: Re: [Proposal] Add a Redis plugin to codebase (OFBIZ-9829) > > Hello Shi, thank you for your work on this initiative. > > When reviewing the component, I found that it pretty much focused on > implementing three services and it doesn't seem to provide any deep > integration or added value. The services are just to set, get and delete > redis info which is a simple JSON object for initiating settings. I can't > see the added value of this setup so far. > > I don't understand the purpose of this component, and I do not understand > why it was committed without getting consensus from the community. This is > actually also true of the pricat component which was committed without > consulting with the community. > > My recommendation is to remove both components from the repository, and > discuss their merits with the community first, and if enough people show > interest and approval then we include the code. > > On Thu, Oct 12, 2017 at 1:11 PM, Michael Brohl <[hidden email]> > wrote: > > Hi Jinghai, > > > > first of all thanks for your contribution. I appreciate your work, > > even if I do not agree with the process (see Jira issue). > > > > So please understand my critical questions as an attempt to assure a > > good process and quality for the project and not a refusal of your > > work or this plugin in general. > > > > For a proper proposal, please provide more informations on the > > solution and why it is useful for the project. You can see the > > community as a customer and you have to convince us that the solution > > is worth being introduced to OFBiz and being maintained further. In > > the past, we had several half-baked additions to the codebase which were > committed and not maintained anymore. > > > > I would like to avoid this and the best way (IMO) is to be more > > restrictive when introducing new code to the project. > > > > For this plugin, at first glance, I'm missing the following > > informations and quality aspects: > > > > - the big picture: the motivation and use cases for this plugin and > > OFBiz integration > > - a documentation (brief descriptions of Redis et al or just links to > > these projects are not a documentation) > > - why you have chosen Redis and the Redisson client and not some other > > - a sample integration into OFBiz (to prove it is working and to show > > how it is used) > > - tests > > - source code documentation > > > > This is just a shot from my first impressions, others may follow. > > > > Looking forward to a good collaboration on this. > > > > Thanks, > > > > Michael > > > > > > Am 12.10.17 um 03:38 schrieb Shi Jinghai: > > > >> Hi community, > >> > >> There's a patch on Redis plugin in > >> https://issues.apache.org/jira/browse/OFBIZ-9829. > >> > >> Redis is key-value in-memory database widely used in Ecommerce and CRM. > >> > >> Michael asked me to discuss whether it's necessary to include it in > >> OFBiz codebase. If not, I'll revert it. > >> > >> Thanks for your feedback, > >> > >> Shi Jinghai > >> > >> > > > > > |
Free forum by Nabble | Edit this page |