Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-26 Thread Edward J. Yoon
Thanks Ant.

Could you please also create commits@ list for wiki/source commit
mails? The submit button of the web form doesn't change from Disabled.

On Thu, Mar 21, 2013 at 5:59 PM, ant elder ant.el...@gmail.com wrote:
 Please find that the MRQL mailing lists have been created and are
 ready to be used for further discussion:

   d...@mrql.incubator.apache.org
   u...@mrql.incubator.apache.org
   priv...@mrql.incubator.apache.org

 Would everyone named on the proposal please go subscribe to them, and
 happy MRQL'ing.

...ant

 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org




-- 
Best Regards, Edward J. Yoon
@eddieyoon

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-26 Thread Alan Cabrera
Let's move the podling chatter to the dev list. :)


Regards,
Alan

On Mar 26, 2013, at 9:55 PM, Edward J. Yoon edwardy...@apache.org wrote:

 Thanks Ant.
 
 Could you please also create commits@ list for wiki/source commit
 mails? The submit button of the web form doesn't change from Disabled.
 
 On Thu, Mar 21, 2013 at 5:59 PM, ant elder ant.el...@gmail.com wrote:
 Please find that the MRQL mailing lists have been created and are
 ready to be used for further discussion:
 
  d...@mrql.incubator.apache.org
  u...@mrql.incubator.apache.org
  priv...@mrql.incubator.apache.org
 
 Would everyone named on the proposal please go subscribe to them, and
 happy MRQL'ing.
 
   ...ant
 
 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org
 
 
 
 
 -- 
 Best Regards, Edward J. Yoon
 @eddieyoon
 
 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org
 


-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-21 Thread ant elder
Please find that the MRQL mailing lists have been created and are
ready to be used for further discussion:

  d...@mrql.incubator.apache.org
  u...@mrql.incubator.apache.org
  priv...@mrql.incubator.apache.org

Would everyone named on the proposal please go subscribe to them, and
happy MRQL'ing.

   ...ant

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [RESULT][VOTE] Accept MRQL into the Incubator

2013-03-19 Thread Bertrand Delacretaz
On Mon, Mar 18, 2013 at 12:56 PM, ant elder ant.el...@gmail.com wrote:
 ...I believe the following is is the current version following
 the vote and discussion. If there are any further personnel changes
 can we please have the discussion on private@ to make sure there is
 consensus before posting here

Ok - what I did was copy the proposal from the wiki which is supposed
to be up to date, but I see your point.

Consider this vote suspended for now, let's discuss the
champion/mentors roster on the private list and come back here once we
have consensus among Incubator PMC members.

-Bertrand

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [RESULT][VOTE] Accept MRQL into the Incubator

2013-03-18 Thread Bertrand Delacretaz
On Sun, Mar 17, 2013 at 4:01 PM, Mohammad Nour El-Din
nour.moham...@gmail.com wrote:
 On Sun, Mar 17, 2013 at 11:49 AM, Alex Karasulu akaras...@apache.orgwrote:
 We're also missing Ant Elder from the Nominated Mentors list no?
 Fixed...

I have pasted the current version of the proposal below, so that this
list has it correctly archived.

+1 to incubation based on that version with four mentors.

-Bertrand


** PROPOSAL **

Abstract

MRQL is a query processing and optimization system for large-scale,
distributed data analysis, built on top of Apache Hadoop and Hama.

Proposal

MRQL (pronounced miracle) is a query processing and optimization
system for large-scale, distributed data analysis. MRQL (the MapReduce
Query Language) is an SQL-like query language for large-scale data
analysis on a cluster of computers. The MRQL query processing system
can evaluate MRQL queries in two modes: in MapReduce mode on top of
Apache Hadoop or in Bulk Synchronous Parallel (BSP) mode on top of
Apache Hama. The MRQL query language is powerful enough to express
most common data analysis tasks over many forms of raw in-situ data,
such as XML and JSON documents, binary files, and CSV documents. MRQL
is more powerful than other current high-level MapReduce languages,
such as Hive and PigLatin, since it can operate on more complex data
and supports more powerful query constructs, thus eliminating the need
for using explicit MapReduce code. With MRQL, users will be able to
express complex data analysis tasks, such as PageRank, k-means
clustering, matrix factorization, etc, using SQL-like queries
exclusively, while the MRQL query processing system will be able to
compile these queries to efficient Java code.

Background

The initial code was developed at the University of Texas of Arlington
(UTA) by a research team, led by Leonidas Fegaras. The software was
first released in May 2011. The original goal of this project was to
build a query processing system that translates SQL-like data analysis
queries to efficient workflows of MapReduce jobs. A design goal was to
use HDFS as the physical storage layer, without any indexing, data
partitioning, or data normalization, and to use Hadoop (without
extensions) as the run-time engine. The motivation behind this work
was to build a platform to test new ideas on query processing and
optimization techniques applicable to the MapReduce framework.

A year ago, MRQL was extended to run on Hama. The motivation for this
extension was that Hadoop MapReduce jobs were required to read their
input and write their output on HDFS. This simplifies reliability and
fault tolerance but it imposes a high overhead to complex MapReduce
workflows and graph algorithms, such as PageRank, which require
repetitive jobs. In addition, Hadoop does not preserve data in memory
across consecutive MapReduce jobs. This restriction requires to read
data at every step, even when the data is constant. BSP, on the other
hand, does not suffer from this restriction, and, under certain
circumstances, allows complex repetitive algorithms to run entirely in
the collective memory of a cluster. Thus, the goal was to be able to
run the same MRQL queries in both modes, MapReduce and BSP, without
modifying the queries: If there are enough resources available, and
low latency and speed are more important than resilience, queries may
run in BSP mode; otherwise, the same queries may run in MapReduce
mode. BSP evaluation was found to be a good choice when fault
tolerance is not critical, data (both input and intermediate) can fit
in the cluster memory, and data processing requires complex/repetitive
steps.

The research results of this ongoing work have already been published
in conferences (WebDB'11, EDBT'12, and DataCloud'12) and the authors
have already received positive feedback from researchers in academia
and industry who were attending these conferences.

Rationale

MRQL will be the first general-purpose, SQL-like query language for
data analysis based on BSP.
Currently, many programmers prefer to code their MapReduce
applications in a higher-level query language, rather than an
algorithmic language. For instance, Pig is used for 60% of Yahoo!
MapReduce jobs, while Hive is used for 90% of Facebook MapReduce jobs.
This, we believe, will also be the trend for BSP applications,
because, even though, in principle, the BSP model is very simple to
understand, it is hard to develop, optimize, and maintain non-trivial
BSP applications coded in a general-purpose programming language.
Currently, there is no widely acceptable declarative BSP query
language, although there are a few special-purpose BSP systems for
graph analysis, such as Google Pregel and Apache Giraph, for machine
learning, such as BSML, and for scientific data analysis.
MRQL can capture many complex data analysis algorithms in declarative form.
Existing MapReduce query languages, such as HiveQL and PigLatin,
provide a limited syntax for operating on data collections, in the

Re: [RESULT][VOTE] Accept MRQL into the Incubator

2013-03-18 Thread ant elder
On Mon, Mar 18, 2013 at 10:31 AM, Bertrand Delacretaz
bdelacre...@apache.org wrote:
 On Sun, Mar 17, 2013 at 4:01 PM, Mohammad Nour El-Din
 nour.moham...@gmail.com wrote:
 On Sun, Mar 17, 2013 at 11:49 AM, Alex Karasulu akaras...@apache.orgwrote:
 We're also missing Ant Elder from the Nominated Mentors list no?
 Fixed...

 I have pasted the current version of the proposal below, so that this
 list has it correctly archived.


Actually, I believe the following is is the current version following
the vote and discussion. If there are any further personnel changes
can we please have the discussion on private@ to make sure there is
consensus before posting here.

= Abstract =

MRQL is a query processing and optimization system for large-scale,
distributed data analysis, built on top of Apache Hadoop and Hama.

= Proposal =

MRQL (pronounced ''miracle'') is a query processing and optimization
system for large-scale, distributed data analysis. MRQL (the
!MapReduce Query Language) is an SQL-like query language for
large-scale data analysis on a cluster of computers. The MRQL query
processing system can evaluate MRQL queries in two modes: in
!MapReduce mode on top of [[http://hama.apache.org/|Apache Hadoop]] or
in Bulk Synchronous Parallel (BSP) mode on top of
[[http://hama.apache.org/|Apache Hama]]. The MRQL query language is
powerful enough to express most common data analysis tasks over many
forms of raw ''in-situ'' data, such as XML and JSON documents, binary
files, and CSV documents. MRQL is more powerful than other current
high-level !MapReduce languages, such as Hive and !PigLatin, since it
can operate on more complex data and supports more powerful query
constructs, thus eliminating the need for using explicit !MapReduce
code. With MRQL, users will be able to express complex data analysis
tasks, such as !PageRank, k-means clustering, matrix factorization,
etc, using SQL-like queries exclusively, while the MRQL query
processing system will be able to compile these queries to efficient
Java code.

= Background =

The initial code was developed at the University of Texas of Arlington
(UTA) by a research team, led by Leonidas Fegaras. The software was
first released in May 2011. The original goal of this project was to
build a query processing system that translates SQL-like data analysis
queries to efficient workflows of !MapReduce jobs. A design goal was
to use HDFS as the physical storage layer, without any indexing, data
partitioning, or data normalization, and to use Hadoop (without
extensions) as the run-time engine. The motivation behind this work
was to build a platform to test new ideas on query processing and
optimization techniques applicable to the !MapReduce framework.

A year ago, MRQL was extended to run on Hama. The motivation for this
extension was that Hadoop !MapReduce jobs were required to read their
input and write their output on HDFS. This simplifies reliability and
fault tolerance but it imposes a high overhead to complex !MapReduce
workflows and graph algorithms, such as !PageRank, which require
repetitive jobs. In addition, Hadoop does not preserve data in memory
across consecutive !MapReduce jobs. This restriction requires to read
data at every step, even when the data is constant. BSP, on the other
hand, does not suffer from this restriction, and, under certain
circumstances, allows complex repetitive algorithms to run entirely in
the collective memory of a cluster. Thus, the goal was to be able to
run the same MRQL queries in both modes, !MapReduce and BSP, without
modifying the queries: If there are enough resources available, and
low latency and speed are more important than resilience, queries may
run in BSP mode; otherwise, the same queries may run in !MapReduce
mode. BSP evaluation was found to be a good choice when fault
tolerance is not critical, data (both input and intermediate) can fit
in the cluster memory, and data processing requires complex/repetitive
steps.

The research results of this ongoing work have already been published
in conferences (WebDB'11, EDBT'12, and !DataCloud'12) and the authors
have already received positive feedback from researchers in academia
and industry who were attending these conferences.

= Rationale =

 * MRQL will be the first general-purpose, SQL-like query language for
data analysis based on BSP.
 . Currently, many programmers prefer to code their !MapReduce
applications in a higher-level query language, rather than an
algorithmic language. For instance, Pig is used for 60% of Yahoo!
!MapReduce jobs, while Hive is used for 90% of Facebook !MapReduce
jobs. This, we believe, will also be the trend for BSP applications,
because, even though, in principle, the BSP model is very simple to
understand, it is hard to develop, optimize, and maintain non-trivial
BSP applications coded in a general-purpose programming language.
Currently, there is no widely acceptable declarative BSP query
language, although there are a few special-purpose BSP 

Re: [RESULT][VOTE] Accept MRQL into the Incubator

2013-03-17 Thread ant elder
On Sat, Mar 16, 2013 at 11:07 PM, Edward J. Yoon edwardy...@apache.orgwrote:

 The required action has been taken, so let me close this thread again.
 I apologize again for my mistake.

 The Sponsors are changed as following:

  == Champion ==

   * Alex Karasulu akarasulu AT apache DOT org

   == Nominated Mentors ==

* Alex Karasulu akarasulu AT apache DOT org
* Mohammad Nour mnour AT apache DOT org
* Alan Cabrera adc AT apache DOT org

 The following IPMCers voted in favor:

  * Mohammed Nour El-Din
  * Alex Karasulu
  * Tommaso Teofili
  * Chris Mattmann
  * Christian Grobmeier
  * Niall Pemberton

 Thanks.


Actually Edward we've discussed this within the Incubator PMC and the plan
is to respect the original vote and leave you on as champion and mentor,
the only change being the additional mentors. You're an Officer of the ASF
which is close enough and there are now a lot of mentors who can provide
any additional help should it be needed. Sorry from the Incubator that this
got into such a mess.

   ...ant


Re: [RESULT][VOTE] Accept MRQL into the Incubator

2013-03-17 Thread Alex Karasulu
We're also missing Ant Elder from the Nominated Mentors list no?


On Sun, Mar 17, 2013 at 9:45 AM, ant elder ant.el...@gmail.com wrote:

 On Sat, Mar 16, 2013 at 11:07 PM, Edward J. Yoon edwardy...@apache.org
 wrote:

  The required action has been taken, so let me close this thread again.
  I apologize again for my mistake.
 
  The Sponsors are changed as following:
 
   == Champion ==
 
* Alex Karasulu akarasulu AT apache DOT org
 
== Nominated Mentors ==
 
 * Alex Karasulu akarasulu AT apache DOT org
 * Mohammad Nour mnour AT apache DOT org
 * Alan Cabrera adc AT apache DOT org
 
  The following IPMCers voted in favor:
 
   * Mohammed Nour El-Din
   * Alex Karasulu
   * Tommaso Teofili
   * Chris Mattmann
   * Christian Grobmeier
   * Niall Pemberton
 
  Thanks.
 
 
 Actually Edward we've discussed this within the Incubator PMC and the plan
 is to respect the original vote and leave you on as champion and mentor,
 the only change being the additional mentors. You're an Officer of the ASF
 which is close enough and there are now a lot of mentors who can provide
 any additional help should it be needed. Sorry from the Incubator that this
 got into such a mess.

...ant




-- 
Best Regards,
-- Alex


Re: [RESULT][VOTE] Accept MRQL into the Incubator

2013-03-17 Thread Mohammad Nour El-Din
Hi


On Sun, Mar 17, 2013 at 11:49 AM, Alex Karasulu akaras...@apache.orgwrote:

 We're also missing Ant Elder from the Nominated Mentors list no?


Fixed




 On Sun, Mar 17, 2013 at 9:45 AM, ant elder ant.el...@gmail.com wrote:

  On Sat, Mar 16, 2013 at 11:07 PM, Edward J. Yoon edwardy...@apache.org
  wrote:
 
   The required action has been taken, so let me close this thread again.
   I apologize again for my mistake.
  
   The Sponsors are changed as following:
  
== Champion ==
  
 * Alex Karasulu akarasulu AT apache DOT org
  
 == Nominated Mentors ==
  
  * Alex Karasulu akarasulu AT apache DOT org
  * Mohammad Nour mnour AT apache DOT org
  * Alan Cabrera adc AT apache DOT org
  
   The following IPMCers voted in favor:
  
* Mohammed Nour El-Din
* Alex Karasulu
* Tommaso Teofili
* Chris Mattmann
* Christian Grobmeier
* Niall Pemberton
  
   Thanks.
  
  
  Actually Edward we've discussed this within the Incubator PMC and the
 plan
  is to respect the original vote and leave you on as champion and mentor,
  the only change being the additional mentors. You're an Officer of the
 ASF
  which is close enough and there are now a lot of mentors who can provide
  any additional help should it be needed. Sorry from the Incubator that
 this
  got into such a mess.
 
 ...ant
 



 --
 Best Regards,
 -- Alex




-- 
Thanks
- Mohammad Nour

Life is like riding a bicycle. To keep your balance you must keep moving
- Albert Einstein


Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-16 Thread Christian Grobmeier
 True. I'm totally down with your reasoning.

 But don't you think it might be a formality we need to comply with, even if
 it does not make sense at this stage?


 There has been a vote, which passed with enough binding votes, no one has
 -1'd, and no one has retracted their vote. Lets wait till Monday and if the
 majority vote still passes just carry on with the additional mentors. I
 hope no one does -1, theres several experienced mentors now so nothing
 really to be gained from forcing some new vote.

...ant

As already mentioned I am also +1 to this proposal now,


-- 
http://www.grobmeier.de
https://www.timeandbill.de

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-16 Thread Alex Karasulu
Looks like we can call this finally closed and approved. Edward I think we
can carry forward now.


On Sat, Mar 16, 2013 at 10:23 AM, Christian Grobmeier
grobme...@gmail.comwrote:

  True. I'm totally down with your reasoning.
 
  But don't you think it might be a formality we need to comply with,
 even if
  it does not make sense at this stage?
 
 
  There has been a vote, which passed with enough binding votes, no one has
  -1'd, and no one has retracted their vote. Lets wait till Monday and if
 the
  majority vote still passes just carry on with the additional mentors. I
  hope no one does -1, theres several experienced mentors now so nothing
  really to be gained from forcing some new vote.
 
 ...ant

 As already mentioned I am also +1 to this proposal now,


 --
 http://www.grobmeier.de
 https://www.timeandbill.de

 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org




-- 
Best Regards,
-- Alex


[RESULT][VOTE] Accept MRQL into the Incubator

2013-03-16 Thread Edward J. Yoon
The required action has been taken, so let me close this thread again.
I apologize again for my mistake.

The Sponsors are changed as following:

 == Champion ==

  * Alex Karasulu akarasulu AT apache DOT org

  == Nominated Mentors ==

   * Alex Karasulu akarasulu AT apache DOT org
   * Mohammad Nour mnour AT apache DOT org
   * Alan Cabrera adc AT apache DOT org

The following IPMCers voted in favor:

 * Mohammed Nour El-Din
 * Alex Karasulu
 * Tommaso Teofili
 * Chris Mattmann
 * Christian Grobmeier
 * Niall Pemberton

Thanks.

On Sat, Mar 16, 2013 at 10:37 PM, Alex Karasulu akaras...@apache.org wrote:
 Looks like we can call this finally closed and approved. Edward I think we
 can carry forward now.


 On Sat, Mar 16, 2013 at 10:23 AM, Christian Grobmeier
 grobme...@gmail.comwrote:

  True. I'm totally down with your reasoning.
 
  But don't you think it might be a formality we need to comply with,
 even if
  it does not make sense at this stage?
 
 
  There has been a vote, which passed with enough binding votes, no one has
  -1'd, and no one has retracted their vote. Lets wait till Monday and if
 the
  majority vote still passes just carry on with the additional mentors. I
  hope no one does -1, theres several experienced mentors now so nothing
  really to be gained from forcing some new vote.
 
 ...ant

 As already mentioned I am also +1 to this proposal now,


 --
 http://www.grobmeier.de
 https://www.timeandbill.de

 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org




 --
 Best Regards,
 -- Alex



-- 
Best Regards, Edward J. Yoon
@eddieyoon

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread Ted Dunning
No.  This doesn't work.  That sentence is followed by another:

Where the Champion is not a Member of the Foundation (i.e. is an Officer
 only), the Champion shall be a member of the PMC of the Sponsor.


The Sponsor here is the Incubator.  The PMC of the Sponsor is the IPMC.
 You aren't an IPMC member.  Therefore, since you are not a Member and you
aren't a member of the PMC of the Sponsor, you can't be the champion.

On Thu, Mar 14, 2013 at 9:43 PM, Edward J. Yoon edwardy...@apache.orgwrote:

  As you have previously pointed out Champion and Mentors are required to
 be IPMC members [1], [2]. So sorry you cannot be counted as a
 mentor/champion for MRQL.

 Regarding Champion, Am I not a Officer of ASF? - A candidate project
 shall be sponsored by an Officer or Member of the Foundation.


Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread Christian Grobmeier
Hi Eddie,

On Fri, Mar 15, 2013 at 8:02 AM, Ted Dunning ted.dunn...@gmail.com wrote:
 No.  This doesn't work.  That sentence is followed by another:

 Where the Champion is not a Member of the Foundation (i.e. is an Officer
 only), the Champion shall be a member of the PMC of the Sponsor.


 The Sponsor here is the Incubator.  The PMC of the Sponsor is the IPMC.
  You aren't an IPMC member.  Therefore, since you are not a Member and you
 aren't a member of the PMC of the Sponsor, you can't be the champion.

could you please close the Create MRQL tasks in the Infra Jira until
the situation has been cleared up. Whenever this all has been sorted
out you can reopen the issues.

On another note:

There were now multiple issues with this podling. Can I make a
suggestion? What, if you would not join as a Mentor/Champion but as an
initial committer. As you said yourself you do not know all the rules
but you are willing to learn. Joining this podling would be a great
chance to learn all the rules, which are mandatory to know when you
want to mentor a podling.

If that is ok, I furthermore suggest you write to general@ that you
are going to add your name to the initial committers list. I guess
nobody will object.

Then there is a need for a champion; please ask on general@ in another
mail for somebody who has the interest.

When it comes to mentors, most people say a podling should start with
3. There are a few podlings with 2 mentors. I guess it could work out.

Whenever you have the champion, please ask him to create a new
acceptance vote for MRQL. I guess this one would be ok since Alex and
Mo already +1, but I also feel it would be a good idea to make it
proper.

My 2 cents - other IPMC members might see things different.

Cheers
Christian



 On Thu, Mar 14, 2013 at 9:43 PM, Edward J. Yoon edwardy...@apache.orgwrote:

  As you have previously pointed out Champion and Mentors are required to
 be IPMC members [1], [2]. So sorry you cannot be counted as a
 mentor/champion for MRQL.

 Regarding Champion, Am I not a Officer of ASF? - A candidate project
 shall be sponsored by an Officer or Member of the Foundation.



--
http://www.grobmeier.de
https://www.timeandbill.de

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread Edward J. Yoon
 could you please close the Create MRQL tasks in the Infra Jira until
 the situation has been cleared up. Whenever this all has been sorted
 out you can reopen the issues.

Sure.

Since this might not be fixed soon, proposal can be changed
(especially corporation volunteers). And, thank you for your
suggestion, but I'm already in initial committers list.

To IPMC, I would request you to focus more on reviewing Proposal in
the future. The opportunity of MRQL should not be faded by my mistake.

On Fri, Mar 15, 2013 at 4:13 PM, Christian Grobmeier
grobme...@gmail.com wrote:
 Hi Eddie,

 On Fri, Mar 15, 2013 at 8:02 AM, Ted Dunning ted.dunn...@gmail.com wrote:
 No.  This doesn't work.  That sentence is followed by another:

 Where the Champion is not a Member of the Foundation (i.e. is an Officer
 only), the Champion shall be a member of the PMC of the Sponsor.


 The Sponsor here is the Incubator.  The PMC of the Sponsor is the IPMC.
  You aren't an IPMC member.  Therefore, since you are not a Member and you
 aren't a member of the PMC of the Sponsor, you can't be the champion.

 could you please close the Create MRQL tasks in the Infra Jira until
 the situation has been cleared up. Whenever this all has been sorted
 out you can reopen the issues.

 On another note:

 There were now multiple issues with this podling. Can I make a
 suggestion? What, if you would not join as a Mentor/Champion but as an
 initial committer. As you said yourself you do not know all the rules
 but you are willing to learn. Joining this podling would be a great
 chance to learn all the rules, which are mandatory to know when you
 want to mentor a podling.

 If that is ok, I furthermore suggest you write to general@ that you
 are going to add your name to the initial committers list. I guess
 nobody will object.

 Then there is a need for a champion; please ask on general@ in another
 mail for somebody who has the interest.

 When it comes to mentors, most people say a podling should start with
 3. There are a few podlings with 2 mentors. I guess it could work out.

 Whenever you have the champion, please ask him to create a new
 acceptance vote for MRQL. I guess this one would be ok since Alex and
 Mo already +1, but I also feel it would be a good idea to make it
 proper.

 My 2 cents - other IPMC members might see things different.

 Cheers
 Christian



 On Thu, Mar 14, 2013 at 9:43 PM, Edward J. Yoon edwardy...@apache.orgwrote:

  As you have previously pointed out Champion and Mentors are required to
 be IPMC members [1], [2]. So sorry you cannot be counted as a
 mentor/champion for MRQL.

 Regarding Champion, Am I not a Officer of ASF? - A candidate project
 shall be sponsored by an Officer or Member of the Foundation.



 --
 http://www.grobmeier.de
 https://www.timeandbill.de

 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org




-- 
Best Regards, Edward J. Yoon
@eddieyoon

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread Christian Grobmeier
On Fri, Mar 15, 2013 at 9:21 AM, Edward J. Yoon edwardy...@apache.org wrote:
 could you please close the Create MRQL tasks in the Infra Jira until
 the situation has been cleared up. Whenever this all has been sorted
 out you can reopen the issues.

 Sure.

 Since this might not be fixed soon, proposal can be changed
 (especially corporation volunteers). And, thank you for your
 suggestion, but I'm already in initial committers list.

 To IPMC, I would request you to focus more on reviewing Proposal in
 the future. The opportunity of MRQL should not be faded by my mistake.

+1

I can tell you this issue is already discussed. I am pretty sure there
will be soon an outcome. Thanks for your patience!

Cheers
Christian

 On Fri, Mar 15, 2013 at 4:13 PM, Christian Grobmeier
 grobme...@gmail.com wrote:
 Hi Eddie,

 On Fri, Mar 15, 2013 at 8:02 AM, Ted Dunning ted.dunn...@gmail.com wrote:
 No.  This doesn't work.  That sentence is followed by another:

 Where the Champion is not a Member of the Foundation (i.e. is an Officer
 only), the Champion shall be a member of the PMC of the Sponsor.


 The Sponsor here is the Incubator.  The PMC of the Sponsor is the IPMC.
  You aren't an IPMC member.  Therefore, since you are not a Member and you
 aren't a member of the PMC of the Sponsor, you can't be the champion.

 could you please close the Create MRQL tasks in the Infra Jira until
 the situation has been cleared up. Whenever this all has been sorted
 out you can reopen the issues.

 On another note:

 There were now multiple issues with this podling. Can I make a
 suggestion? What, if you would not join as a Mentor/Champion but as an
 initial committer. As you said yourself you do not know all the rules
 but you are willing to learn. Joining this podling would be a great
 chance to learn all the rules, which are mandatory to know when you
 want to mentor a podling.

 If that is ok, I furthermore suggest you write to general@ that you
 are going to add your name to the initial committers list. I guess
 nobody will object.

 Then there is a need for a champion; please ask on general@ in another
 mail for somebody who has the interest.

 When it comes to mentors, most people say a podling should start with
 3. There are a few podlings with 2 mentors. I guess it could work out.

 Whenever you have the champion, please ask him to create a new
 acceptance vote for MRQL. I guess this one would be ok since Alex and
 Mo already +1, but I also feel it would be a good idea to make it
 proper.

 My 2 cents - other IPMC members might see things different.

 Cheers
 Christian



 On Thu, Mar 14, 2013 at 9:43 PM, Edward J. Yoon 
 edwardy...@apache.orgwrote:

  As you have previously pointed out Champion and Mentors are required to
 be IPMC members [1], [2]. So sorry you cannot be counted as a
 mentor/champion for MRQL.

 Regarding Champion, Am I not a Officer of ASF? - A candidate project
 shall be sponsored by an Officer or Member of the Foundation.



 --
 http://www.grobmeier.de
 https://www.timeandbill.de

 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org




 --
 Best Regards, Edward J. Yoon
 @eddieyoon

 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org




-- 
http://www.grobmeier.de
https://www.timeandbill.de

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread Mohammad Nour El-Din
Hi


On Fri, Mar 15, 2013 at 2:06 AM, Marvin Humphrey mar...@rectangular.comwrote:

 On Thu, Mar 14, 2013 at 4:48 PM, Dave Fisher dave2w...@comcast.net
 wrote:
  Are the five binding votes from IPMC members?
 
  It is not 5.

 For the record, there were 4 binding IPMC votes in favor.

   Mohammed Nour El-Din
   Alex Karasulu
   Tommaso Teofili
   Chris Mattmann

  Also, should proposals with only 1 valid Mentor be acceptable?

 In addition to Alex Karasulu, Mohammed Nour El-Din had volunteered,
 but seems to have been left off the version of the proposal which was
 VOTEd on. So unless Mohammed has withdrawn, MRQL has 2 Mentors.


No I didn't



 Marvin Humphrey

 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org




-- 
Thanks
- Mohammad Nour

Life is like riding a bicycle. To keep your balance you must keep moving
- Albert Einstein


Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread Alex Karasulu
On Fri, Mar 15, 2013 at 10:21 AM, Edward J. Yoon edwardy...@apache.orgwrote:

  could you please close the Create MRQL tasks in the Infra Jira until
  the situation has been cleared up. Whenever this all has been sorted
  out you can reopen the issues.

 Sure.

 Since this might not be fixed soon, proposal can be changed
 (especially corporation volunteers). And, thank you for your
 suggestion, but I'm already in initial committers list.

 To IPMC, I would request you to focus more on reviewing Proposal in
 the future. The opportunity of MRQL should not be faded by my mistake.


Bravo! There was no malice in the vote, just a simple mistake. If need be I
or Mo can take on the Champion role.

Are there others from the IPMC that would be interested in mentoring MRQL?

-- 
Best Regards,
-- Alex


Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread ant elder
On Fri, Mar 15, 2013 at 12:16 PM, Alex Karasulu akaras...@apache.orgwrote:

 On Fri, Mar 15, 2013 at 10:21 AM, Edward J. Yoon edwardy...@apache.org
 wrote:

   could you please close the Create MRQL tasks in the Infra Jira until
   the situation has been cleared up. Whenever this all has been sorted
   out you can reopen the issues.
 
  Sure.
 
  Since this might not be fixed soon, proposal can be changed
  (especially corporation volunteers). And, thank you for your
  suggestion, but I'm already in initial committers list.
 
  To IPMC, I would request you to focus more on reviewing Proposal in
  the future. The opportunity of MRQL should not be faded by my mistake.
 
 
 Bravo! There was no malice in the vote, just a simple mistake. If need be I
 or Mo can take on the Champion role.

 Are there others from the IPMC that would be interested in mentoring MRQL?

 --
 Best Regards,
 -- Alex


The champion role is really just to help the proposal through any
discussion prior to being accepted as a poddling so thats been done and it
makes little difference now. Mohammed had volunteered to be a mentor so
lets continue as that and I'll add myself as mentor too just to help if
anymore is needed. So that gives plenty of mentors, we don't need more
voting for that as the Incubator PMC can update mentors as it sees fit. So
lets just continue on with that and the poddling accepted.

   ...ant


Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread Alex Karasulu
On Fri, Mar 15, 2013 at 3:01 PM, ant elder ant.el...@gmail.com wrote:

 On Fri, Mar 15, 2013 at 12:16 PM, Alex Karasulu akaras...@apache.org
 wrote:

  On Fri, Mar 15, 2013 at 10:21 AM, Edward J. Yoon edwardy...@apache.org
  wrote:
 
could you please close the Create MRQL tasks in the Infra Jira
 until
the situation has been cleared up. Whenever this all has been sorted
out you can reopen the issues.
  
   Sure.
  
   Since this might not be fixed soon, proposal can be changed
   (especially corporation volunteers). And, thank you for your
   suggestion, but I'm already in initial committers list.
  
   To IPMC, I would request you to focus more on reviewing Proposal in
   the future. The opportunity of MRQL should not be faded by my mistake.
  
  
  Bravo! There was no malice in the vote, just a simple mistake. If need
 be I
  or Mo can take on the Champion role.
 
  Are there others from the IPMC that would be interested in mentoring
 MRQL?
 
  --
  Best Regards,
  -- Alex
 

 The champion role is really just to help the proposal through any
 discussion prior to being accepted as a poddling so thats been done and it
 makes little difference now.


True. I'm totally down with your reasoning.

But don't you think it might be a formality we need to comply with, even if
it does not make sense at this stage?

Mohammed had volunteered to be a mentor so
 lets continue as that and I'll add myself as mentor too just to help if
 anymore is needed. So that gives plenty of mentors, we don't need more
 voting for that as the Incubator PMC can update mentors as it sees fit. So
 lets just continue on with that and the poddling accepted.


Based on your presence as a mentor along with Mo and myself I see this
poddling as accepted as well. If there's pressure to fill the Champion role
it can be handled on demand.

Ted, Dave is this situation now more acceptable and does it alleviate your
concerns? If not we want to know why and take steps to rectify the
situation accordingly. I personally really appreciate your diligence on
this matter. As a mentor I should have caught the problems you sited but
because of the Champion's ex-VP role (Hama?) I thought he was a member of
both the ASF and the IPMC. I should have checked.

-- 
Thanks,
-- Alex


Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread Matt Franklin
On Fri, Mar 15, 2013 at 9:28 AM, Alex Karasulu akaras...@apache.org wrote:
 On Fri, Mar 15, 2013 at 3:01 PM, ant elder ant.el...@gmail.com wrote:

 On Fri, Mar 15, 2013 at 12:16 PM, Alex Karasulu akaras...@apache.org
 wrote:

  On Fri, Mar 15, 2013 at 10:21 AM, Edward J. Yoon edwardy...@apache.org
  wrote:
 
could you please close the Create MRQL tasks in the Infra Jira
 until
the situation has been cleared up. Whenever this all has been sorted
out you can reopen the issues.
  
   Sure.
  
   Since this might not be fixed soon, proposal can be changed
   (especially corporation volunteers). And, thank you for your
   suggestion, but I'm already in initial committers list.
  
   To IPMC, I would request you to focus more on reviewing Proposal in
   the future. The opportunity of MRQL should not be faded by my mistake.
  
  
  Bravo! There was no malice in the vote, just a simple mistake. If need
 be I
  or Mo can take on the Champion role.
 
  Are there others from the IPMC that would be interested in mentoring
 MRQL?
 
  --
  Best Regards,
  -- Alex
 

 The champion role is really just to help the proposal through any
 discussion prior to being accepted as a poddling so thats been done and it
 makes little difference now.


 True. I'm totally down with your reasoning.

 But don't you think it might be a formality we need to comply with, even if
 it does not make sense at this stage?

 Mohammed had volunteered to be a mentor so
 lets continue as that and I'll add myself as mentor too just to help if
 anymore is needed. So that gives plenty of mentors, we don't need more
 voting for that as the Incubator PMC can update mentors as it sees fit. So
 lets just continue on with that and the poddling accepted.


 Based on your presence as a mentor along with Mo and myself I see this
 poddling as accepted as well. If there's pressure to fill the Champion role
 it can be handled on demand.

Keep in mind that the role of champion was expanded slightly [1].  I
think it is important to ensure that MRQL has a champion listed.  I
agree that the matter should be resolved once the champion and
additional mentors are listed.

[1]: 
http://incubator.apache.org/incubation/Roles_and_Responsibilities.html#Champion


 Ted, Dave is this situation now more acceptable and does it alleviate your
 concerns? If not we want to know why and take steps to rectify the
 situation accordingly. I personally really appreciate your diligence on
 this matter. As a mentor I should have caught the problems you sited but
 because of the Champion's ex-VP role (Hama?) I thought he was a member of
 both the ASF and the IPMC. I should have checked.

 --
 Thanks,
 -- Alex

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread Dave Fisher

On Mar 15, 2013, at 7:05 AM, Matt Franklin wrote:

 On Fri, Mar 15, 2013 at 9:28 AM, Alex Karasulu akaras...@apache.org wrote:
 On Fri, Mar 15, 2013 at 3:01 PM, ant elder ant.el...@gmail.com wrote:
 
 On Fri, Mar 15, 2013 at 12:16 PM, Alex Karasulu akaras...@apache.org
 wrote:
 
 On Fri, Mar 15, 2013 at 10:21 AM, Edward J. Yoon edwardy...@apache.org
 wrote:
 
 could you please close the Create MRQL tasks in the Infra Jira
 until
 the situation has been cleared up. Whenever this all has been sorted
 out you can reopen the issues.
 
 Sure.
 
 Since this might not be fixed soon, proposal can be changed
 (especially corporation volunteers). And, thank you for your
 suggestion, but I'm already in initial committers list.
 
 To IPMC, I would request you to focus more on reviewing Proposal in
 the future. The opportunity of MRQL should not be faded by my mistake.
 
 
 Bravo! There was no malice in the vote, just a simple mistake. If need
 be I
 or Mo can take on the Champion role.
 
 Are there others from the IPMC that would be interested in mentoring
 MRQL?
 
 --
 Best Regards,
 -- Alex
 
 
 The champion role is really just to help the proposal through any
 discussion prior to being accepted as a poddling so thats been done and it
 makes little difference now.
 
 
 True. I'm totally down with your reasoning.
 
 But don't you think it might be a formality we need to comply with, even if
 it does not make sense at this stage?
 
 Mohammed had volunteered to be a mentor so
 lets continue as that and I'll add myself as mentor too just to help if
 anymore is needed. So that gives plenty of mentors, we don't need more
 voting for that as the Incubator PMC can update mentors as it sees fit. So
 lets just continue on with that and the poddling accepted.
 
 
 Based on your presence as a mentor along with Mo and myself I see this
 poddling as accepted as well. If there's pressure to fill the Champion role
 it can be handled on demand.
 
 Keep in mind that the role of champion was expanded slightly [1].  I
 think it is important to ensure that MRQL has a champion listed.  I
 agree that the matter should be resolved once the champion and
 additional mentors are listed.
 
 [1]: 
 http://incubator.apache.org/incubation/Roles_and_Responsibilities.html#Champion
 
 
 Ted, Dave is this situation now more acceptable and does it alleviate your
 concerns?

In a word, yes.

Adding an appropriate champion and enough mentors solves my concerns.

Regards,
Dave

 If not we want to know why and take steps to rectify the
 situation accordingly. I personally really appreciate your diligence on
 this matter. As a mentor I should have caught the problems you sited but
 because of the Champion's ex-VP role (Hama?) I thought he was a member of
 both the ASF and the IPMC. I should have checked.
 
 --
 Thanks,
 -- Alex
 
 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org
 


-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread ant elder
On Fri, Mar 15, 2013 at 1:28 PM, Alex Karasulu akaras...@apache.org wrote:

 On Fri, Mar 15, 2013 at 3:01 PM, ant elder ant.el...@gmail.com wrote:

  On Fri, Mar 15, 2013 at 12:16 PM, Alex Karasulu akaras...@apache.org
  wrote:
 
   On Fri, Mar 15, 2013 at 10:21 AM, Edward J. Yoon 
 edwardy...@apache.org
   wrote:
  
 could you please close the Create MRQL tasks in the Infra Jira
  until
 the situation has been cleared up. Whenever this all has been
 sorted
 out you can reopen the issues.
   
Sure.
   
Since this might not be fixed soon, proposal can be changed
(especially corporation volunteers). And, thank you for your
suggestion, but I'm already in initial committers list.
   
To IPMC, I would request you to focus more on reviewing Proposal in
the future. The opportunity of MRQL should not be faded by my
 mistake.
   
   
   Bravo! There was no malice in the vote, just a simple mistake. If need
  be I
   or Mo can take on the Champion role.
  
   Are there others from the IPMC that would be interested in mentoring
  MRQL?
  
   --
   Best Regards,
   -- Alex
  
 
  The champion role is really just to help the proposal through any
  discussion prior to being accepted as a poddling so thats been done and
 it
  makes little difference now.


 True. I'm totally down with your reasoning.

 But don't you think it might be a formality we need to comply with, even if
 it does not make sense at this stage?


There has been a vote, which passed with enough binding votes, no one has
-1'd, and no one has retracted their vote. Lets wait till Monday and if the
majority vote still passes just carry on with the additional mentors. I
hope no one does -1, theres several experienced mentors now so nothing
really to be gained from forcing some new vote.

   ...ant


Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread Suresh Marru
On Mar 15, 2013, at 6:25 PM, ant elder ant.el...@gmail.com wrote:

 On Fri, Mar 15, 2013 at 1:28 PM, Alex Karasulu akaras...@apache.org wrote:
 
 On Fri, Mar 15, 2013 at 3:01 PM, ant elder ant.el...@gmail.com wrote:
 
 On Fri, Mar 15, 2013 at 12:16 PM, Alex Karasulu akaras...@apache.org
 wrote:
 
 On Fri, Mar 15, 2013 at 10:21 AM, Edward J. Yoon 
 edwardy...@apache.org
 wrote:
 
 could you please close the Create MRQL tasks in the Infra Jira
 until
 the situation has been cleared up. Whenever this all has been
 sorted
 out you can reopen the issues.
 
 Sure.
 
 Since this might not be fixed soon, proposal can be changed
 (especially corporation volunteers). And, thank you for your
 suggestion, but I'm already in initial committers list.
 
 To IPMC, I would request you to focus more on reviewing Proposal in
 the future. The opportunity of MRQL should not be faded by my
 mistake.
 
 
 Bravo! There was no malice in the vote, just a simple mistake. If need
 be I
 or Mo can take on the Champion role.
 
 Are there others from the IPMC that would be interested in mentoring
 MRQL?
 
 --
 Best Regards,
 -- Alex
 
 
 The champion role is really just to help the proposal through any
 discussion prior to being accepted as a poddling so thats been done and
 it
 makes little difference now.
 
 
 True. I'm totally down with your reasoning.
 
 But don't you think it might be a formality we need to comply with, even if
 it does not make sense at this stage?
 
 
 There has been a vote, which passed with enough binding votes, no one has
 -1'd, and no one has retracted their vote. Lets wait till Monday and if the
 majority vote still passes just carry on with the additional mentors. I
 hope no one does -1, theres several experienced mentors now so nothing
 really to be gained from forcing some new vote.
 
   ...ant

I fully agree. I had a chance also to look at the proposal closely, so will +1 
if the vote is re-opened, but I see no need for it. Its in the hands of 
competent mentors and the podling is ready to get on board.

Suresh



-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread Roman Shaposhnik
On Fri, Mar 15, 2013 at 4:01 PM, Suresh Marru sma...@apache.org wrote:
 I fully agree. I had a chance also to look at the proposal closely, so will 
 +1 if the
 vote is re-opened, but I see no need for it. Its in the hands of competent 
 mentors
 and the podling is ready to get on board.

+1 to that! 'Keep calm and carry on' as they say.

Thanks,
Roman.

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-15 Thread Niall Pemberton
On Fri, Mar 15, 2013 at 1:28 PM, Alex Karasulu akaras...@apache.org wrote:
 On Fri, Mar 15, 2013 at 3:01 PM, ant elder ant.el...@gmail.com wrote:

 On Fri, Mar 15, 2013 at 12:16 PM, Alex Karasulu akaras...@apache.org
 wrote:

  On Fri, Mar 15, 2013 at 10:21 AM, Edward J. Yoon edwardy...@apache.org
  wrote:
 
could you please close the Create MRQL tasks in the Infra Jira
 until
the situation has been cleared up. Whenever this all has been sorted
out you can reopen the issues.
  
   Sure.
  
   Since this might not be fixed soon, proposal can be changed
   (especially corporation volunteers). And, thank you for your
   suggestion, but I'm already in initial committers list.
  
   To IPMC, I would request you to focus more on reviewing Proposal in
   the future. The opportunity of MRQL should not be faded by my mistake.
  
  
  Bravo! There was no malice in the vote, just a simple mistake. If need
 be I
  or Mo can take on the Champion role.
 
  Are there others from the IPMC that would be interested in mentoring
 MRQL?
 
  --
  Best Regards,
  -- Alex
 

 The champion role is really just to help the proposal through any
 discussion prior to being accepted as a poddling so thats been done and it
 makes little difference now.


 True. I'm totally down with your reasoning.

 But don't you think it might be a formality we need to comply with, even if
 it does not make sense at this stage?

 Mohammed had volunteered to be a mentor so
 lets continue as that and I'll add myself as mentor too just to help if
 anymore is needed. So that gives plenty of mentors, we don't need more
 voting for that as the Incubator PMC can update mentors as it sees fit. So
 lets just continue on with that and the poddling accepted.


 Based on your presence as a mentor along with Mo and myself I see this
 poddling as accepted as well. If there's pressure to fill the Champion role
 it can be handled on demand.

 Ted, Dave is this situation now more acceptable and does it alleviate your
 concerns? If not we want to know why and take steps to rectify the
 situation accordingly. I personally really appreciate your diligence on
 this matter. As a mentor I should have caught the problems you sited but
 because of the Champion's ex-VP role (Hama?) I thought he was a member of
 both the ASF and the IPMC. I should have checked.

I know its late - but I'm +1 to accepting MRQL

Niall

 --
 Thanks,
 -- Alex

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-14 Thread Dave Fisher
I think that this vote should be invalidated.

Are the five binding votes from IPMC members?

It is not 5.

Also, should proposals with only 1 valid Mentor be acceptable?

If two members of the IPMC step forward to Mentor MRQL I might change my mind.

Regards,
Dave

On Mar 12, 2013, at 2:12 AM, Edward J. Yoon wrote:

 The VOTE has passed with 5 binding +1's and no -1s.
 
 I'll start the work to get the podling started.
 
 Thank you.
 
 On Sun, Mar 10, 2013 at 3:48 AM, Mattmann, Chris A (388J)
 chris.a.mattm...@jpl.nasa.gov wrote:
 +1 from me (binding).
 
 Good luck!
 
 Cheers,
 Chris
 
 
 On 3/6/13 9:04 AM, Leonidas Fegaras fega...@cse.uta.edu wrote:
 
 Dear ASF members,
 I would like to call for a VOTE for acceptance of MRQL into the
 Incubator.
 The vote will close on Monday March 11, 2013.
 
 [ ] +1 Accept MRQL into the Apache incubator
 [ ] +0 Don't care.
 [ ] -1 Don't accept MRQL into the incubator because...
 
 Full proposal is pasted below and the corresponding wiki is
 
 http://wiki.apache.org/incubator/MRQLProposal
 
 Only VOTEs from Incubator PMC members are binding,
 but all are welcome to express their thoughts.
 Sincerely,
 Leonidas Fegaras
 
 
 = Abstract =
 
 MRQL is a query processing and optimization system for large-scale,
 distributed data analysis, built on top of Apache Hadoop and Hama.
 
 = Proposal =
 
 MRQL (pronounced ''miracle'') is a query processing and optimization
 system for large-scale, distributed data analysis. MRQL (the MapReduce
 Query Language) is an SQL-like query language for large-scale data
 analysis on a cluster of computers. The MRQL query processing system
 can evaluate MRQL queries in two modes: in MapReduce mode on top of
 Apache Hadoop or in Bulk Synchronous Parallel (BSP) mode on top of
 Apache Hama. The MRQL query language is powerful enough to express
 most common data analysis tasks over many forms of raw ''in-situ''
 data, such as XML and JSON documents, binary files, and CSV
 documents. MRQL is more powerful than other current high-level
 MapReduce languages, such as Hive and PigLatin, since it can operate
 on more complex data and supports more powerful query constructs, thus
 eliminating the need for using explicit MapReduce code. With MRQL,
 users will be able to express complex data analysis tasks, such as
 PageRank, k-means clustering, matrix factorization, etc, using
 SQL-like queries exclusively, while the MRQL query processing system
 will be able to compile these queries to efficient Java code.
 
 = Background =
 
 The initial code was developed at the University of Texas of Arlington
 (UTA) by a research team, led by Leonidas Fegaras. The software was
 first released in May 2011. The original goal of this project was to
 build a query processing system that translates SQL-like data analysis
 queries to efficient workflows of MapReduce jobs. A design goal was to
 use HDFS as the physical storage layer, without any indexing, data
 partitioning, or data normalization, and to use Hadoop (without
 extensions) as the run-time engine. The motivation behind this work
 was to build a platform to test new ideas on query processing and
 optimization techniques applicable to the MapReduce framework.
 
 A year ago, MRQL was extended to run on Hama. The motivation for this
 extension was that Hadoop MapReduce jobs were required to read their
 input and write their output on HDFS. This simplifies reliability and
 fault tolerance but it imposes a high overhead to complex MapReduce
 workflows and graph algorithms, such as PageRank, which require
 repetitive jobs. In addition, Hadoop does not preserve data in memory
 across consecutive MapReduce jobs. This restriction requires to read
 data at every step, even when the data is constant. BSP, on the other
 hand, does not suffer from this restriction, and, under certain
 circumstances, allows complex repetitive algorithms to run entirely in
 the collective memory of a cluster. Thus, the goal was to be able to
 run the same MRQL queries in both modes, MapReduce and BSP, without
 modifying the queries: If there are enough resources available, and
 low latency and speed are more important than resilience, queries may
 run in BSP mode; otherwise, the same queries may run in MapReduce
 mode. BSP evaluation was found to be a good choice when fault
 tolerance is not critical, data (both input and intermediate) can fit
 in the cluster memory, and data processing requires complex/repetitive
 steps.
 
 The research results of this ongoing work have already been published
 in conferences (WebDB'11, EDBT'12, and DataCloud'12) and the authors
 have already received positive feedback from researchers in academia
 and industry who were attending these conferences.
 
 = Rationale =
 
 * MRQL will be the first general-purpose, SQL-like query language for
 data analysis based on BSP.
 Currently, many programmers prefer to code their MapReduce
 applications in a higher-level query language, rather than an
 algorithmic language. For 

Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-14 Thread Marvin Humphrey
On Thu, Mar 14, 2013 at 4:48 PM, Dave Fisher dave2w...@comcast.net wrote:
 Are the five binding votes from IPMC members?

 It is not 5.

For the record, there were 4 binding IPMC votes in favor.

  Mohammed Nour El-Din
  Alex Karasulu
  Tommaso Teofili
  Chris Mattmann

 Also, should proposals with only 1 valid Mentor be acceptable?

In addition to Alex Karasulu, Mohammed Nour El-Din had volunteered,
but seems to have been left off the version of the proposal which was
VOTEd on. So unless Mohammed has withdrawn, MRQL has 2 Mentors.

Marvin Humphrey

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-14 Thread Edward J. Yoon
Maybe 3 including myself? or If we need to recruit one more Mentor and
re-open the vote with properly updated proposal, Please let us know.

I apologize that I made a mistake here. I was confused with this comment[1].

1. http://markmail.org/message/k6s56f5wlxgqhq3k

On Fri, Mar 15, 2013 at 10:06 AM, Marvin Humphrey
mar...@rectangular.com wrote:
 On Thu, Mar 14, 2013 at 4:48 PM, Dave Fisher dave2w...@comcast.net wrote:
 Are the five binding votes from IPMC members?

 It is not 5.

 For the record, there were 4 binding IPMC votes in favor.

   Mohammed Nour El-Din
   Alex Karasulu
   Tommaso Teofili
   Chris Mattmann

 Also, should proposals with only 1 valid Mentor be acceptable?

 In addition to Alex Karasulu, Mohammed Nour El-Din had volunteered,
 but seems to have been left off the version of the proposal which was
 VOTEd on. So unless Mohammed has withdrawn, MRQL has 2 Mentors.

 Marvin Humphrey

 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org




-- 
Best Regards, Edward J. Yoon
@eddieyoon

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-14 Thread Suresh Marru
On Mar 14, 2013, at 9:25 PM, Edward J. Yoon edwardy...@apache.org wrote:

 Maybe 3 including myself?

Hi Edward,

As you have previously pointed out Champion and Mentors are required to be IPMC 
members [1], [2]. So sorry you cannot be counted as a mentor/champion for MRQL. 

Since you have asked to be added to IPMC [3], I assume you realize you are not 
part of IPMC. Casting a binding vote on EasyAnt graduation [3] is not right.  
Please avoid creating such confusions. 

Suresh

[1] - 
http://incubator.apache.org/incubation/Roles_and_Responsibilities.html#Mentor
[2] - 
http://incubator.apache.org/incubation/Roles_and_Responsibilities.html#Champion
[3] - http://markmail.org/message/ldoyqm3o5eifyzrl
[4] - http://markmail.org/message/dxqqa2cf6cpvoeyp

 or If we need to recruit one more Mentor and
 re-open the vote with properly updated proposal, Please let us know.
 
 I apologize that I made a mistake here. I was confused with this comment[1].
 
 1. http://markmail.org/message/k6s56f5wlxgqhq3k
 
 On Fri, Mar 15, 2013 at 10:06 AM, Marvin Humphrey
 mar...@rectangular.com wrote:
 On Thu, Mar 14, 2013 at 4:48 PM, Dave Fisher dave2w...@comcast.net wrote:
 Are the five binding votes from IPMC members?
 
 It is not 5.
 
 For the record, there were 4 binding IPMC votes in favor.
 
  Mohammed Nour El-Din
  Alex Karasulu
  Tommaso Teofili
  Chris Mattmann
 
 Also, should proposals with only 1 valid Mentor be acceptable?
 
 In addition to Alex Karasulu, Mohammed Nour El-Din had volunteered,
 but seems to have been left off the version of the proposal which was
 VOTEd on. So unless Mohammed has withdrawn, MRQL has 2 Mentors.
 
 Marvin Humphrey
 
 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org
 
 
 
 
 -- 
 Best Regards, Edward J. Yoon
 @eddieyoon
 
 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org
 


-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



Re: [INVALID][RESULT][VOTE] Accept MRQL into the Incubator

2013-03-14 Thread Edward J. Yoon
OKay I see.

 As you have previously pointed out Champion and Mentors are required to be 
 IPMC members [1], [2]. So sorry you cannot be counted as a mentor/champion 
 for MRQL.

Regarding Champion, Am I not a Officer of ASF? - A candidate project
shall be sponsored by an Officer or Member of the Foundation.

On Fri, Mar 15, 2013 at 1:29 PM, Suresh Marru sma...@apache.org wrote:
 On Mar 14, 2013, at 9:25 PM, Edward J. Yoon edwardy...@apache.org wrote:

 Maybe 3 including myself?

 Hi Edward,

 As you have previously pointed out Champion and Mentors are required to be 
 IPMC members [1], [2]. So sorry you cannot be counted as a mentor/champion 
 for MRQL.

 Since you have asked to be added to IPMC [3], I assume you realize you are 
 not part of IPMC. Casting a binding vote on EasyAnt graduation [3] is not 
 right.  Please avoid creating such confusions.

 Suresh

 [1] - 
 http://incubator.apache.org/incubation/Roles_and_Responsibilities.html#Mentor
 [2] - 
 http://incubator.apache.org/incubation/Roles_and_Responsibilities.html#Champion
 [3] - http://markmail.org/message/ldoyqm3o5eifyzrl
 [4] - http://markmail.org/message/dxqqa2cf6cpvoeyp

 or If we need to recruit one more Mentor and
 re-open the vote with properly updated proposal, Please let us know.

 I apologize that I made a mistake here. I was confused with this comment[1].

 1. http://markmail.org/message/k6s56f5wlxgqhq3k

 On Fri, Mar 15, 2013 at 10:06 AM, Marvin Humphrey
 mar...@rectangular.com wrote:
 On Thu, Mar 14, 2013 at 4:48 PM, Dave Fisher dave2w...@comcast.net wrote:
 Are the five binding votes from IPMC members?

 It is not 5.

 For the record, there were 4 binding IPMC votes in favor.

  Mohammed Nour El-Din
  Alex Karasulu
  Tommaso Teofili
  Chris Mattmann

 Also, should proposals with only 1 valid Mentor be acceptable?

 In addition to Alex Karasulu, Mohammed Nour El-Din had volunteered,
 but seems to have been left off the version of the proposal which was
 VOTEd on. So unless Mohammed has withdrawn, MRQL has 2 Mentors.

 Marvin Humphrey

 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org




 --
 Best Regards, Edward J. Yoon
 @eddieyoon

 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org



 -
 To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
 For additional commands, e-mail: general-h...@incubator.apache.org




-- 
Best Regards, Edward J. Yoon
@eddieyoon

-
To unsubscribe, e-mail: general-unsubscr...@incubator.apache.org
For additional commands, e-mail: general-h...@incubator.apache.org



[RESULT][VOTE] Accept MRQL into the Incubator

2013-03-12 Thread Edward J. Yoon
The VOTE has passed with 5 binding +1's and no -1s.

I'll start the work to get the podling started.

Thank you.

On Sun, Mar 10, 2013 at 3:48 AM, Mattmann, Chris A (388J)
chris.a.mattm...@jpl.nasa.gov wrote:
 +1 from me (binding).

 Good luck!

 Cheers,
 Chris


 On 3/6/13 9:04 AM, Leonidas Fegaras fega...@cse.uta.edu wrote:

Dear ASF members,
I would like to call for a VOTE for acceptance of MRQL into the
Incubator.
The vote will close on Monday March 11, 2013.

[ ] +1 Accept MRQL into the Apache incubator
[ ] +0 Don't care.
[ ] -1 Don't accept MRQL into the incubator because...

Full proposal is pasted below and the corresponding wiki is

http://wiki.apache.org/incubator/MRQLProposal

Only VOTEs from Incubator PMC members are binding,
but all are welcome to express their thoughts.
Sincerely,
Leonidas Fegaras


= Abstract =

MRQL is a query processing and optimization system for large-scale,
distributed data analysis, built on top of Apache Hadoop and Hama.

= Proposal =

MRQL (pronounced ''miracle'') is a query processing and optimization
system for large-scale, distributed data analysis. MRQL (the MapReduce
Query Language) is an SQL-like query language for large-scale data
analysis on a cluster of computers. The MRQL query processing system
can evaluate MRQL queries in two modes: in MapReduce mode on top of
Apache Hadoop or in Bulk Synchronous Parallel (BSP) mode on top of
Apache Hama. The MRQL query language is powerful enough to express
most common data analysis tasks over many forms of raw ''in-situ''
data, such as XML and JSON documents, binary files, and CSV
documents. MRQL is more powerful than other current high-level
MapReduce languages, such as Hive and PigLatin, since it can operate
on more complex data and supports more powerful query constructs, thus
eliminating the need for using explicit MapReduce code. With MRQL,
users will be able to express complex data analysis tasks, such as
PageRank, k-means clustering, matrix factorization, etc, using
SQL-like queries exclusively, while the MRQL query processing system
will be able to compile these queries to efficient Java code.

= Background =

The initial code was developed at the University of Texas of Arlington
(UTA) by a research team, led by Leonidas Fegaras. The software was
first released in May 2011. The original goal of this project was to
build a query processing system that translates SQL-like data analysis
queries to efficient workflows of MapReduce jobs. A design goal was to
use HDFS as the physical storage layer, without any indexing, data
partitioning, or data normalization, and to use Hadoop (without
extensions) as the run-time engine. The motivation behind this work
was to build a platform to test new ideas on query processing and
optimization techniques applicable to the MapReduce framework.

A year ago, MRQL was extended to run on Hama. The motivation for this
extension was that Hadoop MapReduce jobs were required to read their
input and write their output on HDFS. This simplifies reliability and
fault tolerance but it imposes a high overhead to complex MapReduce
workflows and graph algorithms, such as PageRank, which require
repetitive jobs. In addition, Hadoop does not preserve data in memory
across consecutive MapReduce jobs. This restriction requires to read
data at every step, even when the data is constant. BSP, on the other
hand, does not suffer from this restriction, and, under certain
circumstances, allows complex repetitive algorithms to run entirely in
the collective memory of a cluster. Thus, the goal was to be able to
run the same MRQL queries in both modes, MapReduce and BSP, without
modifying the queries: If there are enough resources available, and
low latency and speed are more important than resilience, queries may
run in BSP mode; otherwise, the same queries may run in MapReduce
mode. BSP evaluation was found to be a good choice when fault
tolerance is not critical, data (both input and intermediate) can fit
in the cluster memory, and data processing requires complex/repetitive
steps.

The research results of this ongoing work have already been published
in conferences (WebDB'11, EDBT'12, and DataCloud'12) and the authors
have already received positive feedback from researchers in academia
and industry who were attending these conferences.

= Rationale =

* MRQL will be the first general-purpose, SQL-like query language for
data analysis based on BSP.
Currently, many programmers prefer to code their MapReduce
applications in a higher-level query language, rather than an
algorithmic language. For instance, Pig is used for 60% of Yahoo
MapReduce jobs, while Hive is used for 90% of Facebook MapReduce
jobs. This, we believe, will also be the trend for BSP applications,
because, even though, in principle, the BSP model is very simple to
understand, it is hard to develop, optimize, and maintain non-trivial
BSP applications coded in a general-purpose programming
language. Currently, there is no widely acceptable