Also, we'd be happy to spend some time over email/irc/hangout to discuss what 
is necessary to get started with YARN/Mesos. A couple of us will be at 
ApacheCon for the next few days, but I'm sure we could find some time in the 
next week or two if you're available.

----------------------------------------
> From: [email protected]
> To: [email protected]; [email protected]
> CC: [email protected]
> Subject: RE: Wrong code-base link on contributing page
> Date: Sat, 5 Apr 2014 22:28:20 -0700
>
> I have applied the patch, run a couple tests, and updated 
> https://issues.apache.org/jira/browse/HELIX-413 -- thanks!
>
> We are already pretty far along with the YARN integration; pretty much all of 
> the plumbing is already in place to make that work. I hacked a little bit of 
> the Mesos work a while back, but it's very far away from an end state, so 
> that could be a great opportunity for you to come in and push some serious 
> code.
>
> The YARN integration is in the helix-provisioning branch, and the initial 
> Mesos experiment is in the helix-provisioning-mesos branch.
>
> ----------------------------------------
>> From: [email protected]
>> Date: Sun, 6 Apr 2014 10:52:35 +0530
>> Subject: Re: Wrong code-base link on contributing page
>> To: [email protected]
>> CC: [email protected]; [email protected]
>>
>> Yup. I am thinking of YARN integration or Mesos integration with Helix.
>>
>> Thanks,
>> Dharmesh
>>
>>
>> On Sun, Apr 6, 2014 at 10:49 AM, kishore g <[email protected]> wrote:
>>
>>> Btw, Dharmesh, if you are familiar with Mesos, you can probably take up
>>> integration of Helix and Mesos.
>>>
>>>
>>> On Sat, Apr 5, 2014 at 10:15 PM, Kanak Biscuitwala 
>>> <[email protected]>wrote:
>>>
>>>> Thanks for pointing that out. I have created an issue and will fix it
>>>> soon.
>>>>
>>>> Kanak
>>>>
>>>> ----------------------------------------
>>>>> From: [email protected]
>>>>> Date: Sun, 6 Apr 2014 10:28:05 +0530
>>>>> Subject: Re: Wrong code-base link on contributing page
>>>>> To: [email protected]
>>>>> CC: [email protected]; [email protected]
>>>>>
>>>>> Done.
>>>>>
>>>>> Also, One more dangling link in
>>>> http://helix.apache.org/integration.html
>>>>> https://builds.apache.org/view/G-L/view/Helix/ is 404.
>>>>>
>>>>> Thanks,
>>>>> Dharmesh
>>>>>
>>>>>
>>>>> On Sun, Apr 6, 2014 at 9:20 AM, Kanak Biscuitwala <[email protected]
>>>>>wrote:
>>>>>
>>>>>> Actually what I'd like to do is just fix this bug:
>>>>>>
>>>>>> Change
>>>>>>
>>>>>> // Filter resources if requested
>>>>>> if (resources != null && !resources.isEmpty()) {
>>>>>> idealStates.keySet().retainAll(resources);
>>>>>> extViews.keySet().retainAll(resources);
>>>>>> }
>>>>>>
>>>>>> to
>>>>>>
>>>>>> // Filter resources if requested
>>>>>> if (resources != null) {
>>>>>> idealStates.keySet().retainAll(resources);
>>>>>> extViews.keySet().retainAll(resources);
>>>>>> }
>>>>>>
>>>>>> Thanks,
>>>>>> Kanak
>>>>>> ----------------------------------------
>>>>>>> From: [email protected]
>>>>>>> Date: Sun, 6 Apr 2014 09:08:20 +0530
>>>>>>> Subject: Re: Wrong code-base link on contributing page
>>>>>>> To: [email protected]
>>>>>>> CC: [email protected]; [email protected]
>>>>>>>
>>>>>>> Thanks.
>>>>>>>
>>>>>>> Let me start with HELIX-413.
>>>>>>> Looking at the code of o.a.h.t.ClusterStateVerifier, I should change,
>>>>>>>
>>>>>>> if (resourceStr != null) {
>>>>>>>
>>>>>>> String[] resources = resourceStr.split("[\\s,]");
>>>>>>>
>>>>>>> resourceSet = Sets.newHashSet(resources);
>>>>>>>
>>>>>>> }
>>>>>>>
>>>>>>> to
>>>>>>>
>>>>>>> if (resourceStr != null) {
>>>>>>>
>>>>>>> String[] resources = resourceStr.split("[\\s,]");
>>>>>>>
>>>>>>> resourceSet = Sets.newHashSet(resources);
>>>>>>>
>>>>>>> }else{
>>>>>>>
>>>>>>> return true;
>>>>>>>
>>>>>>> }
>>>>>>>
>>>>>>> Is that correct?
>>>>>>>
>>>>>>> Thanks,
>>>>>>> Dharmesh
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> On Sat, Apr 5, 2014 at 11:45 PM, Kanak Biscuitwala <
>>>> [email protected]
>>>>>>>wrote:
>>>>>>>
>>>>>>>> p.s. I would copy and paste that link instead of clicking it, in case
>>>>>> the
>>>>>>>> browser doesn't resolve it correctly.
>>>>>>>>
>>>>>>>> ----------------------------------------
>>>>>>>>> From: [email protected]
>>>>>>>>> To: [email protected]; [email protected]
>>>>>>>>> Subject: RE: Wrong code-base link on contributing page
>>>>>>>>> Date: Sat, 5 Apr 2014 11:13:10 -0700
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> Hi,
>>>>>>>>>
>>>>>>>>> You can find a list of "newbie" issues here:
>>>>>>>>>
>>>>>>>>
>>>>>>
>>>> https://issues.apache.org/jira/browse/HELIX-413?jql=project%20%3D%20HELIX%20AND%20resolution%20%3D%20Unresolved%20AND%20labels%20in%20(newbie%2C%20starter%2C%20easy%2C%20beginners)
>>>>>>>>>
>>>>>>>>> Kanak
>>>>>>>>> ----------------------------------------
>>>>>>>>>> Date: Sat, 5 Apr 2014 11:04:24 -0700
>>>>>>>>>> Subject: Re: Wrong code-base link on contributing page
>>>>>>>>>> From: [email protected]
>>>>>>>>>> To: [email protected]
>>>>>>>>>> CC: [email protected]
>>>>>>>>>>
>>>>>>>>>> I think we have marked some of the issues as easy/beginner/starter.
>>>>>>>> Kanak,
>>>>>>>>>> do you know how to find them.
>>>>>>>>>>
>>>>>>>>>> thanks
>>>>>>>>>> kishore G
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On Sat, Apr 5, 2014 at 10:26 AM, Dharmesh Kakadia <
>>>>>> [email protected]
>>>>>>>>>wrote:
>>>>>>>>>>
>>>>>>>>>>> Thanks Kishore. I think currently its fine. I will let you know
>>>> if I
>>>>>>>> plan
>>>>>>>>>>> to do more there.
>>>>>>>>>>>
>>>>>>>>>>> Also, is there a starts-issues-list where new-comers can start
>>>>>>>>>>> contributing? I am trying to see if I can (second time actually).
>>>>>>>>>>>
>>>>>>>>>>> Thanks,
>>>>>>>>>>> Dharmesh
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> On Sat, Apr 5, 2014 at 9:37 PM, kishore g <[email protected]>
>>>>>> wrote:
>>>>>>>>>>>
>>>>>>>>>>>> Hi Dharmesh,
>>>>>>>>>>>>
>>>>>>>>>>>> Thanks for pointing it out. Since its a small change, I took
>>>> care of
>>>>>>>> it.
>>>>>>>>>>>> However if you are interested in making more changes, I can give
>>>> you
>>>>>>>> the
>>>>>>>>>>>> permission to edit the wiki. The only thing I would need is your
>>>>>>>> apache
>>>>>>>>>>>> wiki id.
>>>>>>>>>>>>
>>>>>>>>>>>> thanks,
>>>>>>>>>>>> Kishore G
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> On Sat, Apr 5, 2014 at 6:45 AM, Dharmesh Kakadia <
>>>>>> [email protected]
>>>>>>>>>>>>>wrote:
>>>>>>>>>>>>
>>>>>>>>>>>>> Hi,
>>>>>>>>>>>>>
>>>>>>>>>>>>> Just noticed that the code-base link on Contributor workflow
>>>> page (
>>>>>>>>>>>>>
>>>>>>>>
>>>> https://cwiki.apache.org/confluence/display/HELIX/Contributor+Workflow
>>>>>>>>>>>> ),
>>>>>>>>>>>>> still points to old, non-existing link.
>>>>>>>>>>>>>
>>>>>>>>>>>>> How can I correct it?
>>>>>>>>>>>>>
>>>>>>>>>>>>> Thanks,
>>>>>>>>>>>>> Dhamesh
>>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>
>>>>>>
>>>>
>>>>
>>>
>>>
>
                                          

Reply via email to