You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@hive.apache.org by Sanjay Subramanian <Sa...@wizecommerce.com> on 2013/07/31 01:26:37 UTC

Review Request (wikidoc): LZO Compression in Hive

Hi

Met with Lefty this afternoon and she was kind to spend time to add my documentation to the site - since I still don't have editing privileges :-)

Please review the new wikidoc about LZO compression in the Hive language manual.  If anything is unclear or needs more information, you can email suggestions to this list or edit the wiki yourself (if you have editing privileges).  Here are the links:

  1.  Language Manual<https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new bullet under File Formats)
  2.  LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
  3.  CREATE TABLE<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable> (near end of section, pasted in here:)
Use STORED AS TEXTFILE if the data needs to be stored as plain text files. Use STORED AS SEQUENCEFILE if the data needs to be compressed. Please read more about CompressedStorage<https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if you are planning to keep data compressed in your Hive tables. Use INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding InputFormat and OutputFormat class as a string literal, e.g., 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'. For LZO compression, the values to use are 'INPUTFORMAT "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).

My cwiki id is
https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
It will be great if I could get edit privileges

Thanks
sanjay

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

Re: UDFs with package names

Posted by Michael Malak <mi...@yahoo.com>.
Yup, it was the directory structure com/mystuff/whateverUDF.class that was missing.  Thought I had tried that before posting my question, but...

Thanks for your help!


________________________________
 From: Edward Capriolo <ed...@gmail.com>
To: "user@hive.apache.org" <us...@hive.apache.org>; Michael Malak <mi...@yahoo.com> 
Sent: Tuesday, July 30, 2013 7:06 PM
Subject: Re: UDFs with package names
 


It might be a better idea to use your own package com.mystuff.x. You might be running into an issue where java is not finding the file because it assumes the relation between package and jar is 1 to 1. You might also be compiling wrong If your package is com.mystuff that class file should be in a directory structure com/mystuff/whateverUDF.class I am not seeing that from your example.




On Tue, Jul 30, 2013 at 8:00 PM, Michael Malak <mi...@yahoo.com> wrote:

Thus far, I've been able to create Hive UDFs, but now I need to define them within a Java package name (as opposed to the "default" Java package as I had been doing), but once I do that, I'm no longer able to load them into Hive.
>
>First off, this works:
>
>add jar /usr/lib/hive/lib/hive-contrib-0.10.0-cdh4.3.0.jar;
>create temporary function row_sequence as 'org.apache.hadoop.hive.contrib.udf.UDFRowSequence';
>
>Then I took the source code for UDFRowSequence.java from
>http://svn.apache.org/repos/asf/hive/trunk/contrib/src/java/org/apache/hadoop/hive/contrib/udf/UDFRowSequence.java
>
>and renamed the file and the class inside to UDFRowSequence2.java
>
>I compile and deploy it with:
>javac -cp /usr/lib/hive/lib/hive-exec-0.10.0-cdh4.3.0.jar:/usr/lib/hadoop/hadoop-common.jar UDFRowSequence2.java
>jar cvf UDFRowSequence2.jar UDFRowSequence2.class
>sudo cp UDFRowSequence2.jar /usr/local/lib
>
>
>But in Hive, I get the following:
>hive>  add jar /usr/local/lib/UDFRowSequence2.jar;
>Added /usr/local/lib/UDFRowSequence2.jar to class path
>Added resource: /usr/local/lib/UDFRowSequence2.jar
>hive> create temporary function row_sequence as 'org.apache.hadoop.hive.contrib.udf.UDFRowSequence2';
>FAILED: Class org.apache.hadoop.hive.contrib.udf.UDFRowSequence2 not found
>FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.FunctionTask
>
>But if I comment out the package line in UDFRowSequence2.java (to put the UDF into the default Java package), it works:
>hive>  add jar /usr/local/lib/UDFRowSequence2.jar;
>Added /usr/local/lib/UDFRowSequence2.jar to class path
>Added resource: /usr/local/lib/UDFRowSequence2.jar
>hive> create temporary function row_sequence as 'UDFRowSequence2';
>OK
>Time taken: 0.383 seconds
>
>What am I doing wrong?  I have a feeling it's something simple.
>
>

Re: UDFs with package names

Posted by Edward Capriolo <ed...@gmail.com>.
It might be a better idea to use your own package com.mystuff.x. You might
be running into an issue where java is not finding the file because it
assumes the relation between package and jar is 1 to 1. You might also be
compiling wrong If your package is com.mystuff that class file should be in
a directory structure com/mystuff/whateverUDF.class I am not seeing that
from your example.


On Tue, Jul 30, 2013 at 8:00 PM, Michael Malak <mi...@yahoo.com>wrote:

> Thus far, I've been able to create Hive UDFs, but now I need to define
> them within a Java package name (as opposed to the "default" Java package
> as I had been doing), but once I do that, I'm no longer able to load them
> into Hive.
>
> First off, this works:
>
> add jar /usr/lib/hive/lib/hive-contrib-0.10.0-cdh4.3.0.jar;
> create temporary function row_sequence as
> 'org.apache.hadoop.hive.contrib.udf.UDFRowSequence';
>
> Then I took the source code for UDFRowSequence.java from
>
> http://svn.apache.org/repos/asf/hive/trunk/contrib/src/java/org/apache/hadoop/hive/contrib/udf/UDFRowSequence.java
>
> and renamed the file and the class inside to UDFRowSequence2.java
>
> I compile and deploy it with:
> javac -cp
> /usr/lib/hive/lib/hive-exec-0.10.0-cdh4.3.0.jar:/usr/lib/hadoop/hadoop-common.jar
> UDFRowSequence2.java
> jar cvf UDFRowSequence2.jar UDFRowSequence2.class
> sudo cp UDFRowSequence2.jar /usr/local/lib
>
>
> But in Hive, I get the following:
> hive>  add jar /usr/local/lib/UDFRowSequence2.jar;
> Added /usr/local/lib/UDFRowSequence2.jar to class path
> Added resource: /usr/local/lib/UDFRowSequence2.jar
> hive> create temporary function row_sequence as
> 'org.apache.hadoop.hive.contrib.udf.UDFRowSequence2';
> FAILED: Class org.apache.hadoop.hive.contrib.udf.UDFRowSequence2 not found
> FAILED: Execution Error, return code 1 from
> org.apache.hadoop.hive.ql.exec.FunctionTask
>
> But if I comment out the package line in UDFRowSequence2.java (to put the
> UDF into the default Java package), it works:
> hive>  add jar /usr/local/lib/UDFRowSequence2.jar;
> Added /usr/local/lib/UDFRowSequence2.jar to class path
> Added resource: /usr/local/lib/UDFRowSequence2.jar
> hive> create temporary function row_sequence as 'UDFRowSequence2';
> OK
> Time taken: 0.383 seconds
>
> What am I doing wrong?  I have a feeling it's something simple.
>
>

UDFs with package names

Posted by Michael Malak <mi...@yahoo.com>.
Thus far, I've been able to create Hive UDFs, but now I need to define them within a Java package name (as opposed to the "default" Java package as I had been doing), but once I do that, I'm no longer able to load them into Hive.

First off, this works:

add jar /usr/lib/hive/lib/hive-contrib-0.10.0-cdh4.3.0.jar;
create temporary function row_sequence as 'org.apache.hadoop.hive.contrib.udf.UDFRowSequence';

Then I took the source code for UDFRowSequence.java from
http://svn.apache.org/repos/asf/hive/trunk/contrib/src/java/org/apache/hadoop/hive/contrib/udf/UDFRowSequence.java

and renamed the file and the class inside to UDFRowSequence2.java

I compile and deploy it with:
javac -cp /usr/lib/hive/lib/hive-exec-0.10.0-cdh4.3.0.jar:/usr/lib/hadoop/hadoop-common.jar UDFRowSequence2.java
jar cvf UDFRowSequence2.jar UDFRowSequence2.class
sudo cp UDFRowSequence2.jar /usr/local/lib


But in Hive, I get the following:
hive>  add jar /usr/local/lib/UDFRowSequence2.jar;
Added /usr/local/lib/UDFRowSequence2.jar to class path
Added resource: /usr/local/lib/UDFRowSequence2.jar
hive> create temporary function row_sequence as 'org.apache.hadoop.hive.contrib.udf.UDFRowSequence2';
FAILED: Class org.apache.hadoop.hive.contrib.udf.UDFRowSequence2 not found
FAILED: Execution Error, return code 1 from org.apache.hadoop.hive.ql.exec.FunctionTask

But if I comment out the package line in UDFRowSequence2.java (to put the UDF into the default Java package), it works:
hive>  add jar /usr/local/lib/UDFRowSequence2.jar;
Added /usr/local/lib/UDFRowSequence2.jar to class path
Added resource: /usr/local/lib/UDFRowSequence2.jar
hive> create temporary function row_sequence as 'UDFRowSequence2';
OK
Time taken: 0.383 seconds

What am I doing wrong?  I have a feeling it's something simple.


Re: Last time request for cwiki update privileges

Posted by Ashutosh Chauhan <as...@gmail.com>.
Not able to find this id in cwiki. Did you create an account on
cwiki.apache.org

On Wed, Aug 21, 2013 at 2:59 PM, Mikhail Antonov <ol...@gmail.com>wrote:

> mantonov

Re: Last time request for cwiki update privileges

Posted by Ashutosh Chauhan <as...@gmail.com>.
Not able to find this id in cwiki. Did you create an account on
cwiki.apache.org

On Wed, Aug 21, 2013 at 2:59 PM, Mikhail Antonov <ol...@gmail.com>wrote:

> mantonov

Re: Last time request for cwiki update privileges

Posted by Mikhail Antonov <ol...@gmail.com>.
mantonov


2013/8/21 Ashutosh Chauhan <ha...@apache.org>

> Hey Mikhail,
>
> Sure. Whats ur cwiki id?
>
> Thanks,
> Ashutosh
>
>
> On Wed, Aug 21, 2013 at 1:58 PM, Mikhail Antonov <ol...@gmail.com>wrote:
>
>> Can I also get the edit privilege for wiki please?
>>
>> I'd like to add some details about LDAP authentication..
>>
>> Mikhail
>>
>>
>> 2013/8/21 Stephen Sprague <sp...@gmail.com>
>>
>>> Sanjay gets some love after all! :)
>>>
>>>
>>> On Tue, Aug 20, 2013 at 4:00 PM, Sanjay Subramanian <
>>> Sanjay.Subramanian@wizecommerce.com> wrote:
>>>
>>>> Thanks Ashutosh
>>>>
>>>> From: Ashutosh Chauhan <hashutosh@apache.org<mailto:
>>>> hashutosh@apache.org>>
>>>> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>>
>>>> Date: Tuesday, August 20, 2013 3:13 PM
>>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>>
>>>> Subject: Re: Last time request for cwiki update privileges
>>>>
>>>> Hi Sanjay,
>>>>
>>>> Really sorry for that. I apologize for the delay. You are added now.
>>>> Feel free to make changes to make Hive even better!
>>>>
>>>> Thanks,
>>>> Ashutosh
>>>>
>>>>
>>>> On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <
>>>> Sanjay.Subramanian@wizecommerce.com<mailto:
>>>> Sanjay.Subramanian@wizecommerce.com>> wrote:
>>>> Hey guys
>>>>
>>>> I can only think of two reasons for my request is not yet accepted
>>>>
>>>> 1. The admins don't want to give me access
>>>>
>>>> 2. The admins have not seen my mail yet.
>>>>
>>>> This is the fourth and the LAST time I am requesting permission to edit
>>>> wiki docs…Nobody likes being ignored and that includes me.
>>>>
>>>> Meanwhile to show my thankfulness to the Hive community I shall
>>>> continue to answer questions .There will be no change in that behavior
>>>>
>>>> Regards
>>>>
>>>> sanjay
>>>>
>>>>
>>>>
>>>>
>>>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>>>> sanjay.subramanian@wizecommerce.com>>
>>>>
>>>> Date: Wednesday, August 14, 2013 3:52 PM
>>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>>
>>>> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>>>>
>>>> Once again, I am down on my knees humbling calling upon the Hive Jedi
>>>> Masters to please provide this paadwaan  with cwiki update privileges
>>>>
>>>> May the Force be with u
>>>>
>>>> Thanks
>>>>
>>>> sanjay
>>>>
>>>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>>>> sanjay.subramanian@wizecommerce.com>>
>>>> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>>
>>>> Date: Wednesday, July 31, 2013 9:38 AM
>>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>>
>>>> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>>>>
>>>> Hi guys
>>>>
>>>> Any chance I could get cwiki update privileges today ?
>>>>
>>>> Thanks
>>>>
>>>> sanjay
>>>>
>>>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>>>> sanjay.subramanian@wizecommerce.com>>
>>>>
>>>> Date: Tuesday, July 30, 2013 4:26 PM
>>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>> Subject: Review Request (wikidoc): LZO Compression in Hive
>>>>
>>>> Hi
>>>>
>>>> Met with Lefty this afternoon and she was kind to spend time to add my
>>>> documentation to the site - since I still don't have editing privileges :-)
>>>>
>>>> Please review the new wikidoc about LZO compression in the Hive
>>>> language manual.  If anything is unclear or needs more information, you can
>>>> email suggestions to this list or edit the wiki yourself (if you have
>>>> editing privileges).  Here are the links:
>>>>
>>>>   1.  Language Manual<
>>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new
>>>> bullet under File Formats)
>>>>   2.  LZO Compression<
>>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>>>>   3.  CREATE TABLE<
>>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable>
>>>> (near end of section, pasted in here:)
>>>> Use STORED AS TEXTFILE if the data needs to be stored as plain text
>>>> files. Use STORED AS SEQUENCEFILE if the data needs to be compressed.
>>>> Please read more about CompressedStorage<
>>>> https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if
>>>> you are planning to keep data compressed in your Hive tables. Use
>>>> INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding
>>>> InputFormat and OutputFormat class as a string literal, e.g.,
>>>> 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'.
>>>> For LZO compression, the values to use are 'INPUTFORMAT
>>>> "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT
>>>> "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO
>>>> Compression<
>>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).
>>>>
>>>>
>>>> My cwiki id is
>>>> https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
>>>> It will be great if I could get edit privileges
>>>>
>>>> Thanks
>>>> sanjay
>>>>
>>>> CONFIDENTIALITY NOTICE
>>>> ======================
>>>> This email message and any attachments are for the exclusive use of the
>>>> intended recipient(s) and may contain confidential and privileged
>>>> information. Any unauthorized review, use, disclosure or distribution is
>>>> prohibited. If you are not the intended recipient, please contact the
>>>> sender by reply email and destroy all copies of the original message along
>>>> with any attachments, from your computer system. If you are the intended
>>>> recipient, please be advised that the content of this message is subject to
>>>> access, review and disclosure by the sender's Email System Administrator.
>>>>
>>>> CONFIDENTIALITY NOTICE
>>>> ======================
>>>> This email message and any attachments are for the exclusive use of the
>>>> intended recipient(s) and may contain confidential and privileged
>>>> information. Any unauthorized review, use, disclosure or distribution is
>>>> prohibited. If you are not the intended recipient, please contact the
>>>> sender by reply email and destroy all copies of the original message along
>>>> with any attachments, from your computer system. If you are the intended
>>>> recipient, please be advised that the content of this message is subject to
>>>> access, review and disclosure by the sender's Email System Administrator.
>>>>
>>>>
>>>> CONFIDENTIALITY NOTICE
>>>> ======================
>>>> This email message and any attachments are for the exclusive use of the
>>>> intended recipient(s) and may contain confidential and privileged
>>>> information. Any unauthorized review, use, disclosure or distribution is
>>>> prohibited. If you are not the intended recipient, please contact the
>>>> sender by reply email and destroy all copies of the original message along
>>>> with any attachments, from your computer system. If you are the intended
>>>> recipient, please be advised that the content of this message is subject to
>>>> access, review and disclosure by the sender's Email System Administrator.
>>>>
>>>
>>>
>>
>>
>> --
>> Thanks,
>> Michael Antonov
>>
>
>


-- 
Thanks,
Michael Antonov

Re: Last time request for cwiki update privileges

Posted by Mikhail Antonov <ol...@gmail.com>.
mantonov


2013/8/21 Ashutosh Chauhan <ha...@apache.org>

> Hey Mikhail,
>
> Sure. Whats ur cwiki id?
>
> Thanks,
> Ashutosh
>
>
> On Wed, Aug 21, 2013 at 1:58 PM, Mikhail Antonov <ol...@gmail.com>wrote:
>
>> Can I also get the edit privilege for wiki please?
>>
>> I'd like to add some details about LDAP authentication..
>>
>> Mikhail
>>
>>
>> 2013/8/21 Stephen Sprague <sp...@gmail.com>
>>
>>> Sanjay gets some love after all! :)
>>>
>>>
>>> On Tue, Aug 20, 2013 at 4:00 PM, Sanjay Subramanian <
>>> Sanjay.Subramanian@wizecommerce.com> wrote:
>>>
>>>> Thanks Ashutosh
>>>>
>>>> From: Ashutosh Chauhan <hashutosh@apache.org<mailto:
>>>> hashutosh@apache.org>>
>>>> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>>
>>>> Date: Tuesday, August 20, 2013 3:13 PM
>>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>>
>>>> Subject: Re: Last time request for cwiki update privileges
>>>>
>>>> Hi Sanjay,
>>>>
>>>> Really sorry for that. I apologize for the delay. You are added now.
>>>> Feel free to make changes to make Hive even better!
>>>>
>>>> Thanks,
>>>> Ashutosh
>>>>
>>>>
>>>> On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <
>>>> Sanjay.Subramanian@wizecommerce.com<mailto:
>>>> Sanjay.Subramanian@wizecommerce.com>> wrote:
>>>> Hey guys
>>>>
>>>> I can only think of two reasons for my request is not yet accepted
>>>>
>>>> 1. The admins don't want to give me access
>>>>
>>>> 2. The admins have not seen my mail yet.
>>>>
>>>> This is the fourth and the LAST time I am requesting permission to edit
>>>> wiki docs…Nobody likes being ignored and that includes me.
>>>>
>>>> Meanwhile to show my thankfulness to the Hive community I shall
>>>> continue to answer questions .There will be no change in that behavior
>>>>
>>>> Regards
>>>>
>>>> sanjay
>>>>
>>>>
>>>>
>>>>
>>>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>>>> sanjay.subramanian@wizecommerce.com>>
>>>>
>>>> Date: Wednesday, August 14, 2013 3:52 PM
>>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>>
>>>> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>>>>
>>>> Once again, I am down on my knees humbling calling upon the Hive Jedi
>>>> Masters to please provide this paadwaan  with cwiki update privileges
>>>>
>>>> May the Force be with u
>>>>
>>>> Thanks
>>>>
>>>> sanjay
>>>>
>>>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>>>> sanjay.subramanian@wizecommerce.com>>
>>>> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>>
>>>> Date: Wednesday, July 31, 2013 9:38 AM
>>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>>
>>>> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>>>>
>>>> Hi guys
>>>>
>>>> Any chance I could get cwiki update privileges today ?
>>>>
>>>> Thanks
>>>>
>>>> sanjay
>>>>
>>>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>>>> sanjay.subramanian@wizecommerce.com>>
>>>>
>>>> Date: Tuesday, July 30, 2013 4:26 PM
>>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>> Subject: Review Request (wikidoc): LZO Compression in Hive
>>>>
>>>> Hi
>>>>
>>>> Met with Lefty this afternoon and she was kind to spend time to add my
>>>> documentation to the site - since I still don't have editing privileges :-)
>>>>
>>>> Please review the new wikidoc about LZO compression in the Hive
>>>> language manual.  If anything is unclear or needs more information, you can
>>>> email suggestions to this list or edit the wiki yourself (if you have
>>>> editing privileges).  Here are the links:
>>>>
>>>>   1.  Language Manual<
>>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new
>>>> bullet under File Formats)
>>>>   2.  LZO Compression<
>>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>>>>   3.  CREATE TABLE<
>>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable>
>>>> (near end of section, pasted in here:)
>>>> Use STORED AS TEXTFILE if the data needs to be stored as plain text
>>>> files. Use STORED AS SEQUENCEFILE if the data needs to be compressed.
>>>> Please read more about CompressedStorage<
>>>> https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if
>>>> you are planning to keep data compressed in your Hive tables. Use
>>>> INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding
>>>> InputFormat and OutputFormat class as a string literal, e.g.,
>>>> 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'.
>>>> For LZO compression, the values to use are 'INPUTFORMAT
>>>> "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT
>>>> "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO
>>>> Compression<
>>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).
>>>>
>>>>
>>>> My cwiki id is
>>>> https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
>>>> It will be great if I could get edit privileges
>>>>
>>>> Thanks
>>>> sanjay
>>>>
>>>> CONFIDENTIALITY NOTICE
>>>> ======================
>>>> This email message and any attachments are for the exclusive use of the
>>>> intended recipient(s) and may contain confidential and privileged
>>>> information. Any unauthorized review, use, disclosure or distribution is
>>>> prohibited. If you are not the intended recipient, please contact the
>>>> sender by reply email and destroy all copies of the original message along
>>>> with any attachments, from your computer system. If you are the intended
>>>> recipient, please be advised that the content of this message is subject to
>>>> access, review and disclosure by the sender's Email System Administrator.
>>>>
>>>> CONFIDENTIALITY NOTICE
>>>> ======================
>>>> This email message and any attachments are for the exclusive use of the
>>>> intended recipient(s) and may contain confidential and privileged
>>>> information. Any unauthorized review, use, disclosure or distribution is
>>>> prohibited. If you are not the intended recipient, please contact the
>>>> sender by reply email and destroy all copies of the original message along
>>>> with any attachments, from your computer system. If you are the intended
>>>> recipient, please be advised that the content of this message is subject to
>>>> access, review and disclosure by the sender's Email System Administrator.
>>>>
>>>>
>>>> CONFIDENTIALITY NOTICE
>>>> ======================
>>>> This email message and any attachments are for the exclusive use of the
>>>> intended recipient(s) and may contain confidential and privileged
>>>> information. Any unauthorized review, use, disclosure or distribution is
>>>> prohibited. If you are not the intended recipient, please contact the
>>>> sender by reply email and destroy all copies of the original message along
>>>> with any attachments, from your computer system. If you are the intended
>>>> recipient, please be advised that the content of this message is subject to
>>>> access, review and disclosure by the sender's Email System Administrator.
>>>>
>>>
>>>
>>
>>
>> --
>> Thanks,
>> Michael Antonov
>>
>
>


-- 
Thanks,
Michael Antonov

Re: Last time request for cwiki update privileges

Posted by Ashutosh Chauhan <ha...@apache.org>.
Hey Mikhail,

Sure. Whats ur cwiki id?

Thanks,
Ashutosh


On Wed, Aug 21, 2013 at 1:58 PM, Mikhail Antonov <ol...@gmail.com>wrote:

> Can I also get the edit privilege for wiki please?
>
> I'd like to add some details about LDAP authentication..
>
> Mikhail
>
>
> 2013/8/21 Stephen Sprague <sp...@gmail.com>
>
>> Sanjay gets some love after all! :)
>>
>>
>> On Tue, Aug 20, 2013 at 4:00 PM, Sanjay Subramanian <
>> Sanjay.Subramanian@wizecommerce.com> wrote:
>>
>>> Thanks Ashutosh
>>>
>>> From: Ashutosh Chauhan <hashutosh@apache.org<mailto:hashutosh@apache.org
>>> >>
>>> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>
>>> Date: Tuesday, August 20, 2013 3:13 PM
>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>> user@hive.apache.org<ma...@hive.apache.org>>
>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>
>>> Subject: Re: Last time request for cwiki update privileges
>>>
>>> Hi Sanjay,
>>>
>>> Really sorry for that. I apologize for the delay. You are added now.
>>> Feel free to make changes to make Hive even better!
>>>
>>> Thanks,
>>> Ashutosh
>>>
>>>
>>> On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <
>>> Sanjay.Subramanian@wizecommerce.com<mailto:
>>> Sanjay.Subramanian@wizecommerce.com>> wrote:
>>> Hey guys
>>>
>>> I can only think of two reasons for my request is not yet accepted
>>>
>>> 1. The admins don't want to give me access
>>>
>>> 2. The admins have not seen my mail yet.
>>>
>>> This is the fourth and the LAST time I am requesting permission to edit
>>> wiki docs…Nobody likes being ignored and that includes me.
>>>
>>> Meanwhile to show my thankfulness to the Hive community I shall continue
>>> to answer questions .There will be no change in that behavior
>>>
>>> Regards
>>>
>>> sanjay
>>>
>>>
>>>
>>>
>>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>>> sanjay.subramanian@wizecommerce.com>>
>>>
>>> Date: Wednesday, August 14, 2013 3:52 PM
>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>> user@hive.apache.org<ma...@hive.apache.org>>
>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>
>>> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>>>
>>> Once again, I am down on my knees humbling calling upon the Hive Jedi
>>> Masters to please provide this paadwaan  with cwiki update privileges
>>>
>>> May the Force be with u
>>>
>>> Thanks
>>>
>>> sanjay
>>>
>>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>>> sanjay.subramanian@wizecommerce.com>>
>>> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>
>>> Date: Wednesday, July 31, 2013 9:38 AM
>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>> user@hive.apache.org<ma...@hive.apache.org>>
>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>
>>> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>>>
>>> Hi guys
>>>
>>> Any chance I could get cwiki update privileges today ?
>>>
>>> Thanks
>>>
>>> sanjay
>>>
>>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>>> sanjay.subramanian@wizecommerce.com>>
>>>
>>> Date: Tuesday, July 30, 2013 4:26 PM
>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>> user@hive.apache.org<ma...@hive.apache.org>>
>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>> Subject: Review Request (wikidoc): LZO Compression in Hive
>>>
>>> Hi
>>>
>>> Met with Lefty this afternoon and she was kind to spend time to add my
>>> documentation to the site - since I still don't have editing privileges :-)
>>>
>>> Please review the new wikidoc about LZO compression in the Hive language
>>> manual.  If anything is unclear or needs more information, you can email
>>> suggestions to this list or edit the wiki yourself (if you have editing
>>> privileges).  Here are the links:
>>>
>>>   1.  Language Manual<
>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new
>>> bullet under File Formats)
>>>   2.  LZO Compression<
>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>>>   3.  CREATE TABLE<
>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable>
>>> (near end of section, pasted in here:)
>>> Use STORED AS TEXTFILE if the data needs to be stored as plain text
>>> files. Use STORED AS SEQUENCEFILE if the data needs to be compressed.
>>> Please read more about CompressedStorage<
>>> https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if
>>> you are planning to keep data compressed in your Hive tables. Use
>>> INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding
>>> InputFormat and OutputFormat class as a string literal, e.g.,
>>> 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'.
>>> For LZO compression, the values to use are 'INPUTFORMAT
>>> "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT
>>> "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO
>>> Compression<
>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).
>>>
>>>
>>> My cwiki id is
>>> https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
>>> It will be great if I could get edit privileges
>>>
>>> Thanks
>>> sanjay
>>>
>>> CONFIDENTIALITY NOTICE
>>> ======================
>>> This email message and any attachments are for the exclusive use of the
>>> intended recipient(s) and may contain confidential and privileged
>>> information. Any unauthorized review, use, disclosure or distribution is
>>> prohibited. If you are not the intended recipient, please contact the
>>> sender by reply email and destroy all copies of the original message along
>>> with any attachments, from your computer system. If you are the intended
>>> recipient, please be advised that the content of this message is subject to
>>> access, review and disclosure by the sender's Email System Administrator.
>>>
>>> CONFIDENTIALITY NOTICE
>>> ======================
>>> This email message and any attachments are for the exclusive use of the
>>> intended recipient(s) and may contain confidential and privileged
>>> information. Any unauthorized review, use, disclosure or distribution is
>>> prohibited. If you are not the intended recipient, please contact the
>>> sender by reply email and destroy all copies of the original message along
>>> with any attachments, from your computer system. If you are the intended
>>> recipient, please be advised that the content of this message is subject to
>>> access, review and disclosure by the sender's Email System Administrator.
>>>
>>>
>>> CONFIDENTIALITY NOTICE
>>> ======================
>>> This email message and any attachments are for the exclusive use of the
>>> intended recipient(s) and may contain confidential and privileged
>>> information. Any unauthorized review, use, disclosure or distribution is
>>> prohibited. If you are not the intended recipient, please contact the
>>> sender by reply email and destroy all copies of the original message along
>>> with any attachments, from your computer system. If you are the intended
>>> recipient, please be advised that the content of this message is subject to
>>> access, review and disclosure by the sender's Email System Administrator.
>>>
>>
>>
>
>
> --
> Thanks,
> Michael Antonov
>

Re: Last time request for cwiki update privileges

Posted by Ashutosh Chauhan <ha...@apache.org>.
Hey Mikhail,

Sure. Whats ur cwiki id?

Thanks,
Ashutosh


On Wed, Aug 21, 2013 at 1:58 PM, Mikhail Antonov <ol...@gmail.com>wrote:

> Can I also get the edit privilege for wiki please?
>
> I'd like to add some details about LDAP authentication..
>
> Mikhail
>
>
> 2013/8/21 Stephen Sprague <sp...@gmail.com>
>
>> Sanjay gets some love after all! :)
>>
>>
>> On Tue, Aug 20, 2013 at 4:00 PM, Sanjay Subramanian <
>> Sanjay.Subramanian@wizecommerce.com> wrote:
>>
>>> Thanks Ashutosh
>>>
>>> From: Ashutosh Chauhan <hashutosh@apache.org<mailto:hashutosh@apache.org
>>> >>
>>> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>
>>> Date: Tuesday, August 20, 2013 3:13 PM
>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>> user@hive.apache.org<ma...@hive.apache.org>>
>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>
>>> Subject: Re: Last time request for cwiki update privileges
>>>
>>> Hi Sanjay,
>>>
>>> Really sorry for that. I apologize for the delay. You are added now.
>>> Feel free to make changes to make Hive even better!
>>>
>>> Thanks,
>>> Ashutosh
>>>
>>>
>>> On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <
>>> Sanjay.Subramanian@wizecommerce.com<mailto:
>>> Sanjay.Subramanian@wizecommerce.com>> wrote:
>>> Hey guys
>>>
>>> I can only think of two reasons for my request is not yet accepted
>>>
>>> 1. The admins don't want to give me access
>>>
>>> 2. The admins have not seen my mail yet.
>>>
>>> This is the fourth and the LAST time I am requesting permission to edit
>>> wiki docs…Nobody likes being ignored and that includes me.
>>>
>>> Meanwhile to show my thankfulness to the Hive community I shall continue
>>> to answer questions .There will be no change in that behavior
>>>
>>> Regards
>>>
>>> sanjay
>>>
>>>
>>>
>>>
>>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>>> sanjay.subramanian@wizecommerce.com>>
>>>
>>> Date: Wednesday, August 14, 2013 3:52 PM
>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>> user@hive.apache.org<ma...@hive.apache.org>>
>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>
>>> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>>>
>>> Once again, I am down on my knees humbling calling upon the Hive Jedi
>>> Masters to please provide this paadwaan  with cwiki update privileges
>>>
>>> May the Force be with u
>>>
>>> Thanks
>>>
>>> sanjay
>>>
>>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>>> sanjay.subramanian@wizecommerce.com>>
>>> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>> user@hive.apache.org<ma...@hive.apache.org>>
>>>
>>> Date: Wednesday, July 31, 2013 9:38 AM
>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>> user@hive.apache.org<ma...@hive.apache.org>>
>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>>
>>> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>>>
>>> Hi guys
>>>
>>> Any chance I could get cwiki update privileges today ?
>>>
>>> Thanks
>>>
>>> sanjay
>>>
>>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>>> sanjay.subramanian@wizecommerce.com>>
>>>
>>> Date: Tuesday, July 30, 2013 4:26 PM
>>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>>> user@hive.apache.org<ma...@hive.apache.org>>
>>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>>> dev@hive.apache.org<ma...@hive.apache.org>>
>>> Subject: Review Request (wikidoc): LZO Compression in Hive
>>>
>>> Hi
>>>
>>> Met with Lefty this afternoon and she was kind to spend time to add my
>>> documentation to the site - since I still don't have editing privileges :-)
>>>
>>> Please review the new wikidoc about LZO compression in the Hive language
>>> manual.  If anything is unclear or needs more information, you can email
>>> suggestions to this list or edit the wiki yourself (if you have editing
>>> privileges).  Here are the links:
>>>
>>>   1.  Language Manual<
>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new
>>> bullet under File Formats)
>>>   2.  LZO Compression<
>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>>>   3.  CREATE TABLE<
>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable>
>>> (near end of section, pasted in here:)
>>> Use STORED AS TEXTFILE if the data needs to be stored as plain text
>>> files. Use STORED AS SEQUENCEFILE if the data needs to be compressed.
>>> Please read more about CompressedStorage<
>>> https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if
>>> you are planning to keep data compressed in your Hive tables. Use
>>> INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding
>>> InputFormat and OutputFormat class as a string literal, e.g.,
>>> 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'.
>>> For LZO compression, the values to use are 'INPUTFORMAT
>>> "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT
>>> "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO
>>> Compression<
>>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).
>>>
>>>
>>> My cwiki id is
>>> https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
>>> It will be great if I could get edit privileges
>>>
>>> Thanks
>>> sanjay
>>>
>>> CONFIDENTIALITY NOTICE
>>> ======================
>>> This email message and any attachments are for the exclusive use of the
>>> intended recipient(s) and may contain confidential and privileged
>>> information. Any unauthorized review, use, disclosure or distribution is
>>> prohibited. If you are not the intended recipient, please contact the
>>> sender by reply email and destroy all copies of the original message along
>>> with any attachments, from your computer system. If you are the intended
>>> recipient, please be advised that the content of this message is subject to
>>> access, review and disclosure by the sender's Email System Administrator.
>>>
>>> CONFIDENTIALITY NOTICE
>>> ======================
>>> This email message and any attachments are for the exclusive use of the
>>> intended recipient(s) and may contain confidential and privileged
>>> information. Any unauthorized review, use, disclosure or distribution is
>>> prohibited. If you are not the intended recipient, please contact the
>>> sender by reply email and destroy all copies of the original message along
>>> with any attachments, from your computer system. If you are the intended
>>> recipient, please be advised that the content of this message is subject to
>>> access, review and disclosure by the sender's Email System Administrator.
>>>
>>>
>>> CONFIDENTIALITY NOTICE
>>> ======================
>>> This email message and any attachments are for the exclusive use of the
>>> intended recipient(s) and may contain confidential and privileged
>>> information. Any unauthorized review, use, disclosure or distribution is
>>> prohibited. If you are not the intended recipient, please contact the
>>> sender by reply email and destroy all copies of the original message along
>>> with any attachments, from your computer system. If you are the intended
>>> recipient, please be advised that the content of this message is subject to
>>> access, review and disclosure by the sender's Email System Administrator.
>>>
>>
>>
>
>
> --
> Thanks,
> Michael Antonov
>

Re: Last time request for cwiki update privileges

Posted by Mikhail Antonov <ol...@gmail.com>.
Can I also get the edit privilege for wiki please?

I'd like to add some details about LDAP authentication..

Mikhail


2013/8/21 Stephen Sprague <sp...@gmail.com>

> Sanjay gets some love after all! :)
>
>
> On Tue, Aug 20, 2013 at 4:00 PM, Sanjay Subramanian <
> Sanjay.Subramanian@wizecommerce.com> wrote:
>
>> Thanks Ashutosh
>>
>> From: Ashutosh Chauhan <hashutosh@apache.org<mailto:hashutosh@apache.org
>> >>
>> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
>> user@hive.apache.org<ma...@hive.apache.org>>
>>
>> Date: Tuesday, August 20, 2013 3:13 PM
>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>> user@hive.apache.org<ma...@hive.apache.org>>
>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>> dev@hive.apache.org<ma...@hive.apache.org>>
>>
>> Subject: Re: Last time request for cwiki update privileges
>>
>> Hi Sanjay,
>>
>> Really sorry for that. I apologize for the delay. You are added now. Feel
>> free to make changes to make Hive even better!
>>
>> Thanks,
>> Ashutosh
>>
>>
>> On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <
>> Sanjay.Subramanian@wizecommerce.com<mailto:
>> Sanjay.Subramanian@wizecommerce.com>> wrote:
>> Hey guys
>>
>> I can only think of two reasons for my request is not yet accepted
>>
>> 1. The admins don't want to give me access
>>
>> 2. The admins have not seen my mail yet.
>>
>> This is the fourth and the LAST time I am requesting permission to edit
>> wiki docs…Nobody likes being ignored and that includes me.
>>
>> Meanwhile to show my thankfulness to the Hive community I shall continue
>> to answer questions .There will be no change in that behavior
>>
>> Regards
>>
>> sanjay
>>
>>
>>
>>
>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>> sanjay.subramanian@wizecommerce.com>>
>>
>> Date: Wednesday, August 14, 2013 3:52 PM
>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>> user@hive.apache.org<ma...@hive.apache.org>>
>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>> dev@hive.apache.org<ma...@hive.apache.org>>
>>
>> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>>
>> Once again, I am down on my knees humbling calling upon the Hive Jedi
>> Masters to please provide this paadwaan  with cwiki update privileges
>>
>> May the Force be with u
>>
>> Thanks
>>
>> sanjay
>>
>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>> sanjay.subramanian@wizecommerce.com>>
>> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
>> user@hive.apache.org<ma...@hive.apache.org>>
>>
>> Date: Wednesday, July 31, 2013 9:38 AM
>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>> user@hive.apache.org<ma...@hive.apache.org>>
>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>> dev@hive.apache.org<ma...@hive.apache.org>>
>>
>> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>>
>> Hi guys
>>
>> Any chance I could get cwiki update privileges today ?
>>
>> Thanks
>>
>> sanjay
>>
>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>> sanjay.subramanian@wizecommerce.com>>
>>
>> Date: Tuesday, July 30, 2013 4:26 PM
>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>> user@hive.apache.org<ma...@hive.apache.org>>
>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>> dev@hive.apache.org<ma...@hive.apache.org>>
>> Subject: Review Request (wikidoc): LZO Compression in Hive
>>
>> Hi
>>
>> Met with Lefty this afternoon and she was kind to spend time to add my
>> documentation to the site - since I still don't have editing privileges :-)
>>
>> Please review the new wikidoc about LZO compression in the Hive language
>> manual.  If anything is unclear or needs more information, you can email
>> suggestions to this list or edit the wiki yourself (if you have editing
>> privileges).  Here are the links:
>>
>>   1.  Language Manual<
>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new
>> bullet under File Formats)
>>   2.  LZO Compression<
>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>>   3.  CREATE TABLE<
>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable>
>> (near end of section, pasted in here:)
>> Use STORED AS TEXTFILE if the data needs to be stored as plain text
>> files. Use STORED AS SEQUENCEFILE if the data needs to be compressed.
>> Please read more about CompressedStorage<
>> https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if
>> you are planning to keep data compressed in your Hive tables. Use
>> INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding
>> InputFormat and OutputFormat class as a string literal, e.g.,
>> 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'.
>> For LZO compression, the values to use are 'INPUTFORMAT
>> "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT
>> "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO
>> Compression<
>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).
>>
>>
>> My cwiki id is
>> https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
>> It will be great if I could get edit privileges
>>
>> Thanks
>> sanjay
>>
>> CONFIDENTIALITY NOTICE
>> ======================
>> This email message and any attachments are for the exclusive use of the
>> intended recipient(s) and may contain confidential and privileged
>> information. Any unauthorized review, use, disclosure or distribution is
>> prohibited. If you are not the intended recipient, please contact the
>> sender by reply email and destroy all copies of the original message along
>> with any attachments, from your computer system. If you are the intended
>> recipient, please be advised that the content of this message is subject to
>> access, review and disclosure by the sender's Email System Administrator.
>>
>> CONFIDENTIALITY NOTICE
>> ======================
>> This email message and any attachments are for the exclusive use of the
>> intended recipient(s) and may contain confidential and privileged
>> information. Any unauthorized review, use, disclosure or distribution is
>> prohibited. If you are not the intended recipient, please contact the
>> sender by reply email and destroy all copies of the original message along
>> with any attachments, from your computer system. If you are the intended
>> recipient, please be advised that the content of this message is subject to
>> access, review and disclosure by the sender's Email System Administrator.
>>
>>
>> CONFIDENTIALITY NOTICE
>> ======================
>> This email message and any attachments are for the exclusive use of the
>> intended recipient(s) and may contain confidential and privileged
>> information. Any unauthorized review, use, disclosure or distribution is
>> prohibited. If you are not the intended recipient, please contact the
>> sender by reply email and destroy all copies of the original message along
>> with any attachments, from your computer system. If you are the intended
>> recipient, please be advised that the content of this message is subject to
>> access, review and disclosure by the sender's Email System Administrator.
>>
>
>


-- 
Thanks,
Michael Antonov

Re: Last time request for cwiki update privileges

Posted by Mikhail Antonov <ol...@gmail.com>.
Can I also get the edit privilege for wiki please?

I'd like to add some details about LDAP authentication..

Mikhail


2013/8/21 Stephen Sprague <sp...@gmail.com>

> Sanjay gets some love after all! :)
>
>
> On Tue, Aug 20, 2013 at 4:00 PM, Sanjay Subramanian <
> Sanjay.Subramanian@wizecommerce.com> wrote:
>
>> Thanks Ashutosh
>>
>> From: Ashutosh Chauhan <hashutosh@apache.org<mailto:hashutosh@apache.org
>> >>
>> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
>> user@hive.apache.org<ma...@hive.apache.org>>
>>
>> Date: Tuesday, August 20, 2013 3:13 PM
>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>> user@hive.apache.org<ma...@hive.apache.org>>
>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>> dev@hive.apache.org<ma...@hive.apache.org>>
>>
>> Subject: Re: Last time request for cwiki update privileges
>>
>> Hi Sanjay,
>>
>> Really sorry for that. I apologize for the delay. You are added now. Feel
>> free to make changes to make Hive even better!
>>
>> Thanks,
>> Ashutosh
>>
>>
>> On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <
>> Sanjay.Subramanian@wizecommerce.com<mailto:
>> Sanjay.Subramanian@wizecommerce.com>> wrote:
>> Hey guys
>>
>> I can only think of two reasons for my request is not yet accepted
>>
>> 1. The admins don't want to give me access
>>
>> 2. The admins have not seen my mail yet.
>>
>> This is the fourth and the LAST time I am requesting permission to edit
>> wiki docs…Nobody likes being ignored and that includes me.
>>
>> Meanwhile to show my thankfulness to the Hive community I shall continue
>> to answer questions .There will be no change in that behavior
>>
>> Regards
>>
>> sanjay
>>
>>
>>
>>
>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>> sanjay.subramanian@wizecommerce.com>>
>>
>> Date: Wednesday, August 14, 2013 3:52 PM
>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>> user@hive.apache.org<ma...@hive.apache.org>>
>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>> dev@hive.apache.org<ma...@hive.apache.org>>
>>
>> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>>
>> Once again, I am down on my knees humbling calling upon the Hive Jedi
>> Masters to please provide this paadwaan  with cwiki update privileges
>>
>> May the Force be with u
>>
>> Thanks
>>
>> sanjay
>>
>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>> sanjay.subramanian@wizecommerce.com>>
>> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
>> user@hive.apache.org<ma...@hive.apache.org>>
>>
>> Date: Wednesday, July 31, 2013 9:38 AM
>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>> user@hive.apache.org<ma...@hive.apache.org>>
>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>> dev@hive.apache.org<ma...@hive.apache.org>>
>>
>> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>>
>> Hi guys
>>
>> Any chance I could get cwiki update privileges today ?
>>
>> Thanks
>>
>> sanjay
>>
>> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
>> sanjay.subramanian@wizecommerce.com>>
>>
>> Date: Tuesday, July 30, 2013 4:26 PM
>> To: "user@hive.apache.org<ma...@hive.apache.org>" <
>> user@hive.apache.org<ma...@hive.apache.org>>
>> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <
>> dev@hive.apache.org<ma...@hive.apache.org>>
>> Subject: Review Request (wikidoc): LZO Compression in Hive
>>
>> Hi
>>
>> Met with Lefty this afternoon and she was kind to spend time to add my
>> documentation to the site - since I still don't have editing privileges :-)
>>
>> Please review the new wikidoc about LZO compression in the Hive language
>> manual.  If anything is unclear or needs more information, you can email
>> suggestions to this list or edit the wiki yourself (if you have editing
>> privileges).  Here are the links:
>>
>>   1.  Language Manual<
>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new
>> bullet under File Formats)
>>   2.  LZO Compression<
>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>>   3.  CREATE TABLE<
>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable>
>> (near end of section, pasted in here:)
>> Use STORED AS TEXTFILE if the data needs to be stored as plain text
>> files. Use STORED AS SEQUENCEFILE if the data needs to be compressed.
>> Please read more about CompressedStorage<
>> https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if
>> you are planning to keep data compressed in your Hive tables. Use
>> INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding
>> InputFormat and OutputFormat class as a string literal, e.g.,
>> 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'.
>> For LZO compression, the values to use are 'INPUTFORMAT
>> "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT
>> "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO
>> Compression<
>> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).
>>
>>
>> My cwiki id is
>> https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
>> It will be great if I could get edit privileges
>>
>> Thanks
>> sanjay
>>
>> CONFIDENTIALITY NOTICE
>> ======================
>> This email message and any attachments are for the exclusive use of the
>> intended recipient(s) and may contain confidential and privileged
>> information. Any unauthorized review, use, disclosure or distribution is
>> prohibited. If you are not the intended recipient, please contact the
>> sender by reply email and destroy all copies of the original message along
>> with any attachments, from your computer system. If you are the intended
>> recipient, please be advised that the content of this message is subject to
>> access, review and disclosure by the sender's Email System Administrator.
>>
>> CONFIDENTIALITY NOTICE
>> ======================
>> This email message and any attachments are for the exclusive use of the
>> intended recipient(s) and may contain confidential and privileged
>> information. Any unauthorized review, use, disclosure or distribution is
>> prohibited. If you are not the intended recipient, please contact the
>> sender by reply email and destroy all copies of the original message along
>> with any attachments, from your computer system. If you are the intended
>> recipient, please be advised that the content of this message is subject to
>> access, review and disclosure by the sender's Email System Administrator.
>>
>>
>> CONFIDENTIALITY NOTICE
>> ======================
>> This email message and any attachments are for the exclusive use of the
>> intended recipient(s) and may contain confidential and privileged
>> information. Any unauthorized review, use, disclosure or distribution is
>> prohibited. If you are not the intended recipient, please contact the
>> sender by reply email and destroy all copies of the original message along
>> with any attachments, from your computer system. If you are the intended
>> recipient, please be advised that the content of this message is subject to
>> access, review and disclosure by the sender's Email System Administrator.
>>
>
>


-- 
Thanks,
Michael Antonov

Re: Last time request for cwiki update privileges

Posted by Stephen Sprague <sp...@gmail.com>.
Sanjay gets some love after all! :)


On Tue, Aug 20, 2013 at 4:00 PM, Sanjay Subramanian <
Sanjay.Subramanian@wizecommerce.com> wrote:

> Thanks Ashutosh
>
> From: Ashutosh Chauhan <ha...@apache.org>>
> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Date: Tuesday, August 20, 2013 3:13 PM
> To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <dev@hive.apache.org
> <ma...@hive.apache.org>>
> Subject: Re: Last time request for cwiki update privileges
>
> Hi Sanjay,
>
> Really sorry for that. I apologize for the delay. You are added now. Feel
> free to make changes to make Hive even better!
>
> Thanks,
> Ashutosh
>
>
> On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <
> Sanjay.Subramanian@wizecommerce.com<mailto:
> Sanjay.Subramanian@wizecommerce.com>> wrote:
> Hey guys
>
> I can only think of two reasons for my request is not yet accepted
>
> 1. The admins don't want to give me access
>
> 2. The admins have not seen my mail yet.
>
> This is the fourth and the LAST time I am requesting permission to edit
> wiki docs…Nobody likes being ignored and that includes me.
>
> Meanwhile to show my thankfulness to the Hive community I shall continue
> to answer questions .There will be no change in that behavior
>
> Regards
>
> sanjay
>
>
>
>
> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
> sanjay.subramanian@wizecommerce.com>>
> Date: Wednesday, August 14, 2013 3:52 PM
> To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <dev@hive.apache.org
> <ma...@hive.apache.org>>
> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>
> Once again, I am down on my knees humbling calling upon the Hive Jedi
> Masters to please provide this paadwaan  with cwiki update privileges
>
> May the Force be with u
>
> Thanks
>
> sanjay
>
> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
> sanjay.subramanian@wizecommerce.com>>
> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Date: Wednesday, July 31, 2013 9:38 AM
> To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <dev@hive.apache.org
> <ma...@hive.apache.org>>
> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>
> Hi guys
>
> Any chance I could get cwiki update privileges today ?
>
> Thanks
>
> sanjay
>
> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
> sanjay.subramanian@wizecommerce.com>>
> Date: Tuesday, July 30, 2013 4:26 PM
> To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <dev@hive.apache.org
> <ma...@hive.apache.org>>
> Subject: Review Request (wikidoc): LZO Compression in Hive
>
> Hi
>
> Met with Lefty this afternoon and she was kind to spend time to add my
> documentation to the site - since I still don't have editing privileges :-)
>
> Please review the new wikidoc about LZO compression in the Hive language
> manual.  If anything is unclear or needs more information, you can email
> suggestions to this list or edit the wiki yourself (if you have editing
> privileges).  Here are the links:
>
>   1.  Language Manual<
> https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new
> bullet under File Formats)
>   2.  LZO Compression<
> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>   3.  CREATE TABLE<
> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable>
> (near end of section, pasted in here:)
> Use STORED AS TEXTFILE if the data needs to be stored as plain text files.
> Use STORED AS SEQUENCEFILE if the data needs to be compressed. Please read
> more about CompressedStorage<
> https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if
> you are planning to keep data compressed in your Hive tables. Use
> INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding
> InputFormat and OutputFormat class as a string literal, e.g.,
> 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'.
> For LZO compression, the values to use are 'INPUTFORMAT
> "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT
> "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO
> Compression<
> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).
>
> My cwiki id is
> https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
> It will be great if I could get edit privileges
>
> Thanks
> sanjay
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>

Re: Last time request for cwiki update privileges

Posted by Stephen Sprague <sp...@gmail.com>.
Sanjay gets some love after all! :)


On Tue, Aug 20, 2013 at 4:00 PM, Sanjay Subramanian <
Sanjay.Subramanian@wizecommerce.com> wrote:

> Thanks Ashutosh
>
> From: Ashutosh Chauhan <ha...@apache.org>>
> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Date: Tuesday, August 20, 2013 3:13 PM
> To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <dev@hive.apache.org
> <ma...@hive.apache.org>>
> Subject: Re: Last time request for cwiki update privileges
>
> Hi Sanjay,
>
> Really sorry for that. I apologize for the delay. You are added now. Feel
> free to make changes to make Hive even better!
>
> Thanks,
> Ashutosh
>
>
> On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <
> Sanjay.Subramanian@wizecommerce.com<mailto:
> Sanjay.Subramanian@wizecommerce.com>> wrote:
> Hey guys
>
> I can only think of two reasons for my request is not yet accepted
>
> 1. The admins don't want to give me access
>
> 2. The admins have not seen my mail yet.
>
> This is the fourth and the LAST time I am requesting permission to edit
> wiki docs…Nobody likes being ignored and that includes me.
>
> Meanwhile to show my thankfulness to the Hive community I shall continue
> to answer questions .There will be no change in that behavior
>
> Regards
>
> sanjay
>
>
>
>
> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
> sanjay.subramanian@wizecommerce.com>>
> Date: Wednesday, August 14, 2013 3:52 PM
> To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <dev@hive.apache.org
> <ma...@hive.apache.org>>
> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>
> Once again, I am down on my knees humbling calling upon the Hive Jedi
> Masters to please provide this paadwaan  with cwiki update privileges
>
> May the Force be with u
>
> Thanks
>
> sanjay
>
> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
> sanjay.subramanian@wizecommerce.com>>
> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Date: Wednesday, July 31, 2013 9:38 AM
> To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <dev@hive.apache.org
> <ma...@hive.apache.org>>
> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>
> Hi guys
>
> Any chance I could get cwiki update privileges today ?
>
> Thanks
>
> sanjay
>
> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
> sanjay.subramanian@wizecommerce.com>>
> Date: Tuesday, July 30, 2013 4:26 PM
> To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <dev@hive.apache.org
> <ma...@hive.apache.org>>
> Subject: Review Request (wikidoc): LZO Compression in Hive
>
> Hi
>
> Met with Lefty this afternoon and she was kind to spend time to add my
> documentation to the site - since I still don't have editing privileges :-)
>
> Please review the new wikidoc about LZO compression in the Hive language
> manual.  If anything is unclear or needs more information, you can email
> suggestions to this list or edit the wiki yourself (if you have editing
> privileges).  Here are the links:
>
>   1.  Language Manual<
> https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new
> bullet under File Formats)
>   2.  LZO Compression<
> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>   3.  CREATE TABLE<
> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable>
> (near end of section, pasted in here:)
> Use STORED AS TEXTFILE if the data needs to be stored as plain text files.
> Use STORED AS SEQUENCEFILE if the data needs to be compressed. Please read
> more about CompressedStorage<
> https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if
> you are planning to keep data compressed in your Hive tables. Use
> INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding
> InputFormat and OutputFormat class as a string literal, e.g.,
> 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'.
> For LZO compression, the values to use are 'INPUTFORMAT
> "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT
> "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO
> Compression<
> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).
>
> My cwiki id is
> https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
> It will be great if I could get edit privileges
>
> Thanks
> sanjay
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>

Re: Last time request for cwiki update privileges

Posted by Nitin Pawar <ni...@gmail.com>.
Sanjay,

There are lots of emails on hive forum and individual mails may have been
lost.

can you try reaching one of the hive PMC member (Or Lefty from Hortonworks)

Thanks,
Nitin


On Wed, Aug 21, 2013 at 4:30 AM, Sanjay Subramanian <
Sanjay.Subramanian@wizecommerce.com> wrote:

> Thanks Ashutosh
>
> From: Ashutosh Chauhan <ha...@apache.org>>
> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Date: Tuesday, August 20, 2013 3:13 PM
> To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <dev@hive.apache.org
> <ma...@hive.apache.org>>
> Subject: Re: Last time request for cwiki update privileges
>
> Hi Sanjay,
>
> Really sorry for that. I apologize for the delay. You are added now. Feel
> free to make changes to make Hive even better!
>
> Thanks,
> Ashutosh
>
>
> On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <
> Sanjay.Subramanian@wizecommerce.com<mailto:
> Sanjay.Subramanian@wizecommerce.com>> wrote:
> Hey guys
>
> I can only think of two reasons for my request is not yet accepted
>
> 1. The admins don't want to give me access
>
> 2. The admins have not seen my mail yet.
>
> This is the fourth and the LAST time I am requesting permission to edit
> wiki docs…Nobody likes being ignored and that includes me.
>
> Meanwhile to show my thankfulness to the Hive community I shall continue
> to answer questions .There will be no change in that behavior
>
> Regards
>
> sanjay
>
>
>
>
> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
> sanjay.subramanian@wizecommerce.com>>
> Date: Wednesday, August 14, 2013 3:52 PM
> To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <dev@hive.apache.org
> <ma...@hive.apache.org>>
> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>
> Once again, I am down on my knees humbling calling upon the Hive Jedi
> Masters to please provide this paadwaan  with cwiki update privileges
>
> May the Force be with u
>
> Thanks
>
> sanjay
>
> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
> sanjay.subramanian@wizecommerce.com>>
> Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Date: Wednesday, July 31, 2013 9:38 AM
> To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <dev@hive.apache.org
> <ma...@hive.apache.org>>
> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>
> Hi guys
>
> Any chance I could get cwiki update privileges today ?
>
> Thanks
>
> sanjay
>
> From: Sanjay Subramanian <sanjay.subramanian@wizecommerce.com<mailto:
> sanjay.subramanian@wizecommerce.com>>
> Date: Tuesday, July 30, 2013 4:26 PM
> To: "user@hive.apache.org<ma...@hive.apache.org>" <
> user@hive.apache.org<ma...@hive.apache.org>>
> Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <dev@hive.apache.org
> <ma...@hive.apache.org>>
> Subject: Review Request (wikidoc): LZO Compression in Hive
>
> Hi
>
> Met with Lefty this afternoon and she was kind to spend time to add my
> documentation to the site - since I still don't have editing privileges :-)
>
> Please review the new wikidoc about LZO compression in the Hive language
> manual.  If anything is unclear or needs more information, you can email
> suggestions to this list or edit the wiki yourself (if you have editing
> privileges).  Here are the links:
>
>   1.  Language Manual<
> https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new
> bullet under File Formats)
>   2.  LZO Compression<
> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>   3.  CREATE TABLE<
> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable>
> (near end of section, pasted in here:)
> Use STORED AS TEXTFILE if the data needs to be stored as plain text files.
> Use STORED AS SEQUENCEFILE if the data needs to be compressed. Please read
> more about CompressedStorage<
> https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if
> you are planning to keep data compressed in your Hive tables. Use
> INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding
> InputFormat and OutputFormat class as a string literal, e.g.,
> 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'.
> For LZO compression, the values to use are 'INPUTFORMAT
> "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT
> "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO
> Compression<
> https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).
>
> My cwiki id is
> https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
> It will be great if I could get edit privileges
>
> Thanks
> sanjay
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>



-- 
Nitin Pawar

Re: Last time request for cwiki update privileges

Posted by Sanjay Subramanian <Sa...@wizecommerce.com>.
Thanks Ashutosh

From: Ashutosh Chauhan <ha...@apache.org>>
Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Date: Tuesday, August 20, 2013 3:13 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Re: Last time request for cwiki update privileges

Hi Sanjay,

Really sorry for that. I apologize for the delay. You are added now. Feel free to make changes to make Hive even better!

Thanks,
Ashutosh


On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <Sa...@wizecommerce.com>> wrote:
Hey guys

I can only think of two reasons for my request is not yet accepted

1. The admins don't want to give me access

2. The admins have not seen my mail yet.

This is the fourth and the LAST time I am requesting permission to edit wiki docs…Nobody likes being ignored and that includes me.

Meanwhile to show my thankfulness to the Hive community I shall continue to answer questions .There will be no change in that behavior

Regards

sanjay




From: Sanjay Subramanian <sa...@wizecommerce.com>>
Date: Wednesday, August 14, 2013 3:52 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Re: Review Request (wikidoc): LZO Compression in Hive

Once again, I am down on my knees humbling calling upon the Hive Jedi Masters to please provide this paadwaan  with cwiki update privileges

May the Force be with u

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Date: Wednesday, July 31, 2013 9:38 AM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Re: Review Request (wikidoc): LZO Compression in Hive

Hi guys

Any chance I could get cwiki update privileges today ?

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Date: Tuesday, July 30, 2013 4:26 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Review Request (wikidoc): LZO Compression in Hive

Hi

Met with Lefty this afternoon and she was kind to spend time to add my documentation to the site - since I still don't have editing privileges :-)

Please review the new wikidoc about LZO compression in the Hive language manual.  If anything is unclear or needs more information, you can email suggestions to this list or edit the wiki yourself (if you have editing privileges).  Here are the links:

  1.  Language Manual<https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new bullet under File Formats)
  2.  LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
  3.  CREATE TABLE<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable> (near end of section, pasted in here:)
Use STORED AS TEXTFILE if the data needs to be stored as plain text files. Use STORED AS SEQUENCEFILE if the data needs to be compressed. Please read more about CompressedStorage<https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if you are planning to keep data compressed in your Hive tables. Use INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding InputFormat and OutputFormat class as a string literal, e.g., 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'. For LZO compression, the values to use are 'INPUTFORMAT "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).

My cwiki id is
https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
It will be great if I could get edit privileges

Thanks
sanjay

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.


CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

Re: Last time request for cwiki update privileges

Posted by Sanjay Subramanian <Sa...@wizecommerce.com>.
Thanks Ashutosh

From: Ashutosh Chauhan <ha...@apache.org>>
Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Date: Tuesday, August 20, 2013 3:13 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Re: Last time request for cwiki update privileges

Hi Sanjay,

Really sorry for that. I apologize for the delay. You are added now. Feel free to make changes to make Hive even better!

Thanks,
Ashutosh


On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <Sa...@wizecommerce.com>> wrote:
Hey guys

I can only think of two reasons for my request is not yet accepted

1. The admins don't want to give me access

2. The admins have not seen my mail yet.

This is the fourth and the LAST time I am requesting permission to edit wiki docs…Nobody likes being ignored and that includes me.

Meanwhile to show my thankfulness to the Hive community I shall continue to answer questions .There will be no change in that behavior

Regards

sanjay




From: Sanjay Subramanian <sa...@wizecommerce.com>>
Date: Wednesday, August 14, 2013 3:52 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Re: Review Request (wikidoc): LZO Compression in Hive

Once again, I am down on my knees humbling calling upon the Hive Jedi Masters to please provide this paadwaan  with cwiki update privileges

May the Force be with u

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Date: Wednesday, July 31, 2013 9:38 AM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Re: Review Request (wikidoc): LZO Compression in Hive

Hi guys

Any chance I could get cwiki update privileges today ?

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Date: Tuesday, July 30, 2013 4:26 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Review Request (wikidoc): LZO Compression in Hive

Hi

Met with Lefty this afternoon and she was kind to spend time to add my documentation to the site - since I still don't have editing privileges :-)

Please review the new wikidoc about LZO compression in the Hive language manual.  If anything is unclear or needs more information, you can email suggestions to this list or edit the wiki yourself (if you have editing privileges).  Here are the links:

  1.  Language Manual<https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new bullet under File Formats)
  2.  LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
  3.  CREATE TABLE<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable> (near end of section, pasted in here:)
Use STORED AS TEXTFILE if the data needs to be stored as plain text files. Use STORED AS SEQUENCEFILE if the data needs to be compressed. Please read more about CompressedStorage<https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if you are planning to keep data compressed in your Hive tables. Use INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding InputFormat and OutputFormat class as a string literal, e.g., 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'. For LZO compression, the values to use are 'INPUTFORMAT "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).

My cwiki id is
https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
It will be great if I could get edit privileges

Thanks
sanjay

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.


CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

Re: Last time request for cwiki update privileges

Posted by Ashutosh Chauhan <ha...@apache.org>.
Hi Sanjay,

Really sorry for that. I apologize for the delay. You are added now. Feel
free to make changes to make Hive even better!

Thanks,
Ashutosh


On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <
Sanjay.Subramanian@wizecommerce.com> wrote:

>  Hey guys
>
>  I can only think of two reasons for my request is not yet accepted
>
>  1. The admins don't want to give me access
>
>  2. The admins have not seen my mail yet.
>
>  This is the fourth and the LAST time I am requesting permission to edit
> wiki docs…Nobody likes being ignored and that includes me.
>
>  Meanwhile to show my thankfulness to the Hive community I shall continue
> to answer questions .There will be no change in that behavior
>
>  Regards
>
>  sanjay
>
>
>
>
>   From: Sanjay Subramanian <sa...@wizecommerce.com>
> Date: Wednesday, August 14, 2013 3:52 PM
> To: "user@hive.apache.org" <us...@hive.apache.org>
> Cc: "dev@hive.apache.org" <de...@hive.apache.org>
> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>
>   Once again, I am down on my knees humbling calling upon the Hive Jedi
> Masters to please provide this paadwaan  with cwiki update privileges
>
>  May the Force be with u
>
>  Thanks
>
>  sanjay
>
>   From: Sanjay Subramanian <sa...@wizecommerce.com>
> Reply-To: "user@hive.apache.org" <us...@hive.apache.org>
> Date: Wednesday, July 31, 2013 9:38 AM
> To: "user@hive.apache.org" <us...@hive.apache.org>
> Cc: "dev@hive.apache.org" <de...@hive.apache.org>
> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>
>   Hi guys
>
>  Any chance I could get cwiki update privileges today ?
>
>  Thanks
>
>  sanjay
>
>   From: Sanjay Subramanian <sa...@wizecommerce.com>
> Date: Tuesday, July 30, 2013 4:26 PM
> To: "user@hive.apache.org" <us...@hive.apache.org>
> Cc: "dev@hive.apache.org" <de...@hive.apache.org>
> Subject: Review Request (wikidoc): LZO Compression in Hive
>
>    Hi
>
>  Met with Lefty this afternoon and she was kind to spend time to add my
> documentation to the site - since I still don't have editing privileges :-)
>
>  Please review the new wikidoc about LZO compression in the Hive language
> manual.  If anything is unclear or needs more information, you can email
> suggestions to this list or edit the wiki yourself (if you have editing
> privileges).  Here are the links:
>
>    1. Language Manual<https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new
>    bullet under File Formats)
>    2. LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>    3. CREATE TABLE<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable> (near
>    end of section, pasted in here:)
>
>    Use STORED AS TEXTFILE if the data needs to be stored as plain text
>    files. Use STORED AS SEQUENCEFILE if the data needs to be compressed.
>    Please read more about CompressedStorage<https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if
>    you are planning to keep data compressed in your Hive tables. Use
>    INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding
>    InputFormat and OutputFormat class as a string literal, e.g.,
>    'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'.
>    For LZO compression, the values to use are 'INPUTFORMAT
>    "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT
>    "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO
>    Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>    ).
>
>
>
>   My cwiki id is
> https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
> It will be great if I could get edit privileges
>
>  Thanks
> sanjay
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>

Re: Last time request for cwiki update privileges

Posted by Ashutosh Chauhan <ha...@apache.org>.
Hi Sanjay,

Really sorry for that. I apologize for the delay. You are added now. Feel
free to make changes to make Hive even better!

Thanks,
Ashutosh


On Tue, Aug 20, 2013 at 2:39 PM, Sanjay Subramanian <
Sanjay.Subramanian@wizecommerce.com> wrote:

>  Hey guys
>
>  I can only think of two reasons for my request is not yet accepted
>
>  1. The admins don't want to give me access
>
>  2. The admins have not seen my mail yet.
>
>  This is the fourth and the LAST time I am requesting permission to edit
> wiki docs…Nobody likes being ignored and that includes me.
>
>  Meanwhile to show my thankfulness to the Hive community I shall continue
> to answer questions .There will be no change in that behavior
>
>  Regards
>
>  sanjay
>
>
>
>
>   From: Sanjay Subramanian <sa...@wizecommerce.com>
> Date: Wednesday, August 14, 2013 3:52 PM
> To: "user@hive.apache.org" <us...@hive.apache.org>
> Cc: "dev@hive.apache.org" <de...@hive.apache.org>
> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>
>   Once again, I am down on my knees humbling calling upon the Hive Jedi
> Masters to please provide this paadwaan  with cwiki update privileges
>
>  May the Force be with u
>
>  Thanks
>
>  sanjay
>
>   From: Sanjay Subramanian <sa...@wizecommerce.com>
> Reply-To: "user@hive.apache.org" <us...@hive.apache.org>
> Date: Wednesday, July 31, 2013 9:38 AM
> To: "user@hive.apache.org" <us...@hive.apache.org>
> Cc: "dev@hive.apache.org" <de...@hive.apache.org>
> Subject: Re: Review Request (wikidoc): LZO Compression in Hive
>
>   Hi guys
>
>  Any chance I could get cwiki update privileges today ?
>
>  Thanks
>
>  sanjay
>
>   From: Sanjay Subramanian <sa...@wizecommerce.com>
> Date: Tuesday, July 30, 2013 4:26 PM
> To: "user@hive.apache.org" <us...@hive.apache.org>
> Cc: "dev@hive.apache.org" <de...@hive.apache.org>
> Subject: Review Request (wikidoc): LZO Compression in Hive
>
>    Hi
>
>  Met with Lefty this afternoon and she was kind to spend time to add my
> documentation to the site - since I still don't have editing privileges :-)
>
>  Please review the new wikidoc about LZO compression in the Hive language
> manual.  If anything is unclear or needs more information, you can email
> suggestions to this list or edit the wiki yourself (if you have editing
> privileges).  Here are the links:
>
>    1. Language Manual<https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new
>    bullet under File Formats)
>    2. LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>    3. CREATE TABLE<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable> (near
>    end of section, pasted in here:)
>
>    Use STORED AS TEXTFILE if the data needs to be stored as plain text
>    files. Use STORED AS SEQUENCEFILE if the data needs to be compressed.
>    Please read more about CompressedStorage<https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if
>    you are planning to keep data compressed in your Hive tables. Use
>    INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding
>    InputFormat and OutputFormat class as a string literal, e.g.,
>    'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'.
>    For LZO compression, the values to use are 'INPUTFORMAT
>    "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT
>    "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO
>    Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
>    ).
>
>
>
>   My cwiki id is
> https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
> It will be great if I could get edit privileges
>
>  Thanks
> sanjay
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>
> CONFIDENTIALITY NOTICE
> ======================
> This email message and any attachments are for the exclusive use of the
> intended recipient(s) and may contain confidential and privileged
> information. Any unauthorized review, use, disclosure or distribution is
> prohibited. If you are not the intended recipient, please contact the
> sender by reply email and destroy all copies of the original message along
> with any attachments, from your computer system. If you are the intended
> recipient, please be advised that the content of this message is subject to
> access, review and disclosure by the sender's Email System Administrator.
>

Last time request for cwiki update privileges

Posted by Sanjay Subramanian <Sa...@wizecommerce.com>.
Hey guys

I can only think of two reasons for my request is not yet accepted

1. The admins don't want to give me access

2. The admins have not seen my mail yet.

This is the fourth and the LAST time I am requesting permission to edit wiki docs…Nobody likes being ignored and that includes me.

Meanwhile to show my thankfulness to the Hive community I shall continue to answer questions .There will be no change in that behavior

Regards

sanjay




From: Sanjay Subramanian <sa...@wizecommerce.com>>
Date: Wednesday, August 14, 2013 3:52 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Re: Review Request (wikidoc): LZO Compression in Hive

Once again, I am down on my knees humbling calling upon the Hive Jedi Masters to please provide this paadwaan  with cwiki update privileges

May the Force be with u

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Date: Wednesday, July 31, 2013 9:38 AM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Re: Review Request (wikidoc): LZO Compression in Hive

Hi guys

Any chance I could get cwiki update privileges today ?

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Date: Tuesday, July 30, 2013 4:26 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Review Request (wikidoc): LZO Compression in Hive

Hi

Met with Lefty this afternoon and she was kind to spend time to add my documentation to the site - since I still don't have editing privileges :-)

Please review the new wikidoc about LZO compression in the Hive language manual.  If anything is unclear or needs more information, you can email suggestions to this list or edit the wiki yourself (if you have editing privileges).  Here are the links:

  1.  Language Manual<https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new bullet under File Formats)
  2.  LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
  3.  CREATE TABLE<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable> (near end of section, pasted in here:)
Use STORED AS TEXTFILE if the data needs to be stored as plain text files. Use STORED AS SEQUENCEFILE if the data needs to be compressed. Please read more about CompressedStorage<https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if you are planning to keep data compressed in your Hive tables. Use INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding InputFormat and OutputFormat class as a string literal, e.g., 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'. For LZO compression, the values to use are 'INPUTFORMAT "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).

My cwiki id is
https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
It will be great if I could get edit privileges

Thanks
sanjay

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

Last time request for cwiki update privileges

Posted by Sanjay Subramanian <Sa...@wizecommerce.com>.
Hey guys

I can only think of two reasons for my request is not yet accepted

1. The admins don't want to give me access

2. The admins have not seen my mail yet.

This is the fourth and the LAST time I am requesting permission to edit wiki docs…Nobody likes being ignored and that includes me.

Meanwhile to show my thankfulness to the Hive community I shall continue to answer questions .There will be no change in that behavior

Regards

sanjay




From: Sanjay Subramanian <sa...@wizecommerce.com>>
Date: Wednesday, August 14, 2013 3:52 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Re: Review Request (wikidoc): LZO Compression in Hive

Once again, I am down on my knees humbling calling upon the Hive Jedi Masters to please provide this paadwaan  with cwiki update privileges

May the Force be with u

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Date: Wednesday, July 31, 2013 9:38 AM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Re: Review Request (wikidoc): LZO Compression in Hive

Hi guys

Any chance I could get cwiki update privileges today ?

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Date: Tuesday, July 30, 2013 4:26 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Review Request (wikidoc): LZO Compression in Hive

Hi

Met with Lefty this afternoon and she was kind to spend time to add my documentation to the site - since I still don't have editing privileges :-)

Please review the new wikidoc about LZO compression in the Hive language manual.  If anything is unclear or needs more information, you can email suggestions to this list or edit the wiki yourself (if you have editing privileges).  Here are the links:

  1.  Language Manual<https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new bullet under File Formats)
  2.  LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
  3.  CREATE TABLE<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable> (near end of section, pasted in here:)
Use STORED AS TEXTFILE if the data needs to be stored as plain text files. Use STORED AS SEQUENCEFILE if the data needs to be compressed. Please read more about CompressedStorage<https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if you are planning to keep data compressed in your Hive tables. Use INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding InputFormat and OutputFormat class as a string literal, e.g., 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'. For LZO compression, the values to use are 'INPUTFORMAT "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).

My cwiki id is
https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
It will be great if I could get edit privileges

Thanks
sanjay

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

Re: Review Request (wikidoc): LZO Compression in Hive

Posted by Sanjay Subramanian <Sa...@wizecommerce.com>.
Once again, I am down on my knees humbling calling upon the Hive Jedi Masters to please provide this paadwaan  with cwiki update privileges

May the Force be with u

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Date: Wednesday, July 31, 2013 9:38 AM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Re: Review Request (wikidoc): LZO Compression in Hive

Hi guys

Any chance I could get cwiki update privileges today ?

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Date: Tuesday, July 30, 2013 4:26 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Review Request (wikidoc): LZO Compression in Hive

Hi

Met with Lefty this afternoon and she was kind to spend time to add my documentation to the site - since I still don't have editing privileges :-)

Please review the new wikidoc about LZO compression in the Hive language manual.  If anything is unclear or needs more information, you can email suggestions to this list or edit the wiki yourself (if you have editing privileges).  Here are the links:

  1.  Language Manual<https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new bullet under File Formats)
  2.  LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
  3.  CREATE TABLE<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable> (near end of section, pasted in here:)
Use STORED AS TEXTFILE if the data needs to be stored as plain text files. Use STORED AS SEQUENCEFILE if the data needs to be compressed. Please read more about CompressedStorage<https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if you are planning to keep data compressed in your Hive tables. Use INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding InputFormat and OutputFormat class as a string literal, e.g., 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'. For LZO compression, the values to use are 'INPUTFORMAT "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).

My cwiki id is
https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
It will be great if I could get edit privileges

Thanks
sanjay

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

Re: Review Request (wikidoc): LZO Compression in Hive

Posted by Sanjay Subramanian <Sa...@wizecommerce.com>.
Once again, I am down on my knees humbling calling upon the Hive Jedi Masters to please provide this paadwaan  with cwiki update privileges

May the Force be with u

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Reply-To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Date: Wednesday, July 31, 2013 9:38 AM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Re: Review Request (wikidoc): LZO Compression in Hive

Hi guys

Any chance I could get cwiki update privileges today ?

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Date: Tuesday, July 30, 2013 4:26 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Review Request (wikidoc): LZO Compression in Hive

Hi

Met with Lefty this afternoon and she was kind to spend time to add my documentation to the site - since I still don't have editing privileges :-)

Please review the new wikidoc about LZO compression in the Hive language manual.  If anything is unclear or needs more information, you can email suggestions to this list or edit the wiki yourself (if you have editing privileges).  Here are the links:

  1.  Language Manual<https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new bullet under File Formats)
  2.  LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
  3.  CREATE TABLE<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable> (near end of section, pasted in here:)
Use STORED AS TEXTFILE if the data needs to be stored as plain text files. Use STORED AS SEQUENCEFILE if the data needs to be compressed. Please read more about CompressedStorage<https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if you are planning to keep data compressed in your Hive tables. Use INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding InputFormat and OutputFormat class as a string literal, e.g., 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'. For LZO compression, the values to use are 'INPUTFORMAT "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).

My cwiki id is
https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
It will be great if I could get edit privileges

Thanks
sanjay

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

Re: Review Request (wikidoc): LZO Compression in Hive

Posted by Sanjay Subramanian <Sa...@wizecommerce.com>.
Hi guys

Any chance I could get cwiki update privileges today ?

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Date: Tuesday, July 30, 2013 4:26 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Review Request (wikidoc): LZO Compression in Hive

Hi

Met with Lefty this afternoon and she was kind to spend time to add my documentation to the site - since I still don't have editing privileges :-)

Please review the new wikidoc about LZO compression in the Hive language manual.  If anything is unclear or needs more information, you can email suggestions to this list or edit the wiki yourself (if you have editing privileges).  Here are the links:

  1.  Language Manual<https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new bullet under File Formats)
  2.  LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
  3.  CREATE TABLE<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable> (near end of section, pasted in here:)
Use STORED AS TEXTFILE if the data needs to be stored as plain text files. Use STORED AS SEQUENCEFILE if the data needs to be compressed. Please read more about CompressedStorage<https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if you are planning to keep data compressed in your Hive tables. Use INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding InputFormat and OutputFormat class as a string literal, e.g., 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'. For LZO compression, the values to use are 'INPUTFORMAT "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).

My cwiki id is
https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
It will be great if I could get edit privileges

Thanks
sanjay

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.

Re: Review Request (wikidoc): LZO Compression in Hive

Posted by Sanjay Subramanian <Sa...@wizecommerce.com>.
Hi guys

Any chance I could get cwiki update privileges today ?

Thanks

sanjay

From: Sanjay Subramanian <sa...@wizecommerce.com>>
Date: Tuesday, July 30, 2013 4:26 PM
To: "user@hive.apache.org<ma...@hive.apache.org>" <us...@hive.apache.org>>
Cc: "dev@hive.apache.org<ma...@hive.apache.org>" <de...@hive.apache.org>>
Subject: Review Request (wikidoc): LZO Compression in Hive

Hi

Met with Lefty this afternoon and she was kind to spend time to add my documentation to the site - since I still don't have editing privileges :-)

Please review the new wikidoc about LZO compression in the Hive language manual.  If anything is unclear or needs more information, you can email suggestions to this list or edit the wiki yourself (if you have editing privileges).  Here are the links:

  1.  Language Manual<https://cwiki.apache.org/confluence/display/Hive/LanguageManual> (new bullet under File Formats)
  2.  LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>
  3.  CREATE TABLE<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+DDL#LanguageManualDDL-CreateTable> (near end of section, pasted in here:)
Use STORED AS TEXTFILE if the data needs to be stored as plain text files. Use STORED AS SEQUENCEFILE if the data needs to be compressed. Please read more about CompressedStorage<https://cwiki.apache.org/confluence/display/Hive/CompressedStorage> if you are planning to keep data compressed in your Hive tables. Use INPUTFORMAT and OUTPUTFORMAT to specify the name of a corresponding InputFormat and OutputFormat class as a string literal, e.g., 'org.apache.hadoop.hive.contrib.fileformat.base64.Base64TextInputFormat'. For LZO compression, the values to use are 'INPUTFORMAT "com.hadoop.mapred.DeprecatedLzoTextInputFormat" OUTPUTFORMAT "org.apache.hadoop.hive.ql.io.HiveIgnoreKeyTextOutputFormat"' (see LZO Compression<https://cwiki.apache.org/confluence/display/Hive/LanguageManual+LZO>).

My cwiki id is
https://cwiki.apache.org/confluence/display/~sanjaysubramanian@yahoo.com
It will be great if I could get edit privileges

Thanks
sanjay

CONFIDENTIALITY NOTICE
======================
This email message and any attachments are for the exclusive use of the intended recipient(s) and may contain confidential and privileged information. Any unauthorized review, use, disclosure or distribution is prohibited. If you are not the intended recipient, please contact the sender by reply email and destroy all copies of the original message along with any attachments, from your computer system. If you are the intended recipient, please be advised that the content of this message is subject to access, review and disclosure by the sender's Email System Administrator.