[jira] [Commented] (HADOOP-9481) Broken conditional logic with HADOOP_SNAPPY_LIBRARY

2013-04-24 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13640300#comment-13640300
 ] 

Vadim Bondarev commented on HADOOP-9481:


First patch version do explicitly include config.h prior to doing the test for 
HADOOP_SNAPPY_LIBRARY, you can use it more preferable

> Broken conditional logic with HADOOP_SNAPPY_LIBRARY
> ---
>
> Key: HADOOP-9481
> URL: https://issues.apache.org/jira/browse/HADOOP-9481
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Vadim Bondarev
>Priority: Minor
> Attachments: HADOOP-9481-trunk--N1.patch, HADOOP-9481-trunk--N4.patch
>
>
> The problem is a regression introduced by recent fix 
> https://issues.apache.org/jira/browse/HADOOP-8562 .
> That fix makes some improvements for Windows platform, but breaks native code 
> work on Unix.
> Namely, let's see the diff HADOOP-8562 of the file 
> hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/snappy/SnappyCompressor.c
>  :  
> {noformat}
> --- 
> hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/snappy/SnappyCompressor.c
> +++ 
> hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/snappy/SnappyCompressor.c
> @@ -16,12 +16,18 @@
>   * limitations under the License.
>   */
> -#include 
> +
> +#if defined HADOOP_SNAPPY_LIBRARY
> +
>  #include 
>  #include 
>  #include 
> +#ifdef UNIX
> +#include 
>  #include "config.h"
> +#endif // UNIX
> +
>  #include "org_apache_hadoop_io_compress_snappy.h"
>  #include "org_apache_hadoop_io_compress_snappy_SnappyCompressor.h"
> @@ -81,7 +87,7 @@ JNIEXPORT jint JNICALL 
> Java_org_apache_hadoop_io_compress_snappy_SnappyCompresso
>UNLOCK_CLASS(env, clazz, "SnappyCompressor");
>if (uncompressed_bytes == 0) {
> -return 0;
> +return (jint)0;
>}
>// Get the output direct buffer
> @@ -90,7 +96,7 @@ JNIEXPORT jint JNICALL 
> Java_org_apache_hadoop_io_compress_snappy_SnappyCompresso
>UNLOCK_CLASS(env, clazz, "SnappyCompressor");
>if (compressed_bytes == 0) {
> -return 0;
> +return (jint)0;
>}
>/* size_t should always be 4 bytes or larger. */
> @@ -109,3 +115,5 @@ JNIEXPORT jint JNICALL 
> Java_org_apache_hadoop_io_compress_snappy_SnappyCompresso
>(*env)->SetIntField(env, thisj, SnappyCompressor_uncompressedDirectBufLen, 
> 0);
>return (jint)buf_len;
>  }
> +
> +#endif //define HADOOP_SNAPPY_LIBRARY
> {noformat}
> Here we see that all the class implementation got enclosed into "if defined 
> HADOOP_SNAPPY_LIBRARY" directive, and the point is that 
> "HADOOP_SNAPPY_LIBRARY" is *not* defined. 
> This causes the class implementation to be effectively empty, what, in turn, 
> causes the UnsatisfiedLinkError to be thrown in the runtime upon any attempt 
> to invoke the native methods implemented there.
> The actual intention of the authors of HADOOP-8562 was (as we suppose) to 
> invoke "include config.h", where "HADOOP_SNAPPY_LIBRARY" is defined. But 
> currently it is *not* included because it resides *inside* "if defined 
> HADOOP_SNAPPY_LIBRARY" block.
> Similar situation with "ifdef UNIX", because UNIX or WINDOWS variables are 
> defined in "org_apache_hadoop.h", which is indirectly included through 
> "include "org_apache_hadoop_io_compress_snappy.h"", and in the current code 
> this is done *after* code "ifdef UNIX", so in the current code the block 
> "ifdef UNIX" is *not* executed on UNIX.
> The suggested patch fixes the described problems by reordering the "include" 
> and "if" preprocessor directives accordingly, bringing the methods of class 
> org.apache.hadoop.io.compress.snappy.SnappyCompressor back to work again.
> Of course, Snappy native libraries must be installed to build and invoke 
> snappy native methods.
> (Note: there was a mistype in commit message: 8952 written in place of 8562: 
> HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows 
> Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas 
> Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, 
> Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, 
> Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, 
> Ramya Bharathi Nimmagadda.
>git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 
> 13f79535-47bb-0310-9956-ffa450edef68
> )

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9481) Broken conditional logic with HADOOP_SNAPPY_LIBRARY

2013-04-22 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13637846#comment-13637846
 ] 

Vadim Bondarev commented on HADOOP-9481:


TestSnappyCompressorDecompressor it's a class from 
https://issues.apache.org/jira/browse/HADOOP-9225

> Broken conditional logic with HADOOP_SNAPPY_LIBRARY
> ---
>
> Key: HADOOP-9481
> URL: https://issues.apache.org/jira/browse/HADOOP-9481
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Vadim Bondarev
>Priority: Minor
> Attachments: HADOOP-9481-trunk--N1.patch, HADOOP-9481-trunk--N4.patch
>
>
> The problem is a regression introduced by recent fix 
> https://issues.apache.org/jira/browse/HADOOP-8562 .
> That fix makes some improvements for Windows platform, but breaks native code 
> work on Unix.
> Namely, let's see the diff HADOOP-8562 of the file 
> hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/snappy/SnappyCompressor.c
>  :  
> {noformat}
> --- 
> hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/snappy/SnappyCompressor.c
> +++ 
> hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/snappy/SnappyCompressor.c
> @@ -16,12 +16,18 @@
>   * limitations under the License.
>   */
> -#include 
> +
> +#if defined HADOOP_SNAPPY_LIBRARY
> +
>  #include 
>  #include 
>  #include 
> +#ifdef UNIX
> +#include 
>  #include "config.h"
> +#endif // UNIX
> +
>  #include "org_apache_hadoop_io_compress_snappy.h"
>  #include "org_apache_hadoop_io_compress_snappy_SnappyCompressor.h"
> @@ -81,7 +87,7 @@ JNIEXPORT jint JNICALL 
> Java_org_apache_hadoop_io_compress_snappy_SnappyCompresso
>UNLOCK_CLASS(env, clazz, "SnappyCompressor");
>if (uncompressed_bytes == 0) {
> -return 0;
> +return (jint)0;
>}
>// Get the output direct buffer
> @@ -90,7 +96,7 @@ JNIEXPORT jint JNICALL 
> Java_org_apache_hadoop_io_compress_snappy_SnappyCompresso
>UNLOCK_CLASS(env, clazz, "SnappyCompressor");
>if (compressed_bytes == 0) {
> -return 0;
> +return (jint)0;
>}
>/* size_t should always be 4 bytes or larger. */
> @@ -109,3 +115,5 @@ JNIEXPORT jint JNICALL 
> Java_org_apache_hadoop_io_compress_snappy_SnappyCompresso
>(*env)->SetIntField(env, thisj, SnappyCompressor_uncompressedDirectBufLen, 
> 0);
>return (jint)buf_len;
>  }
> +
> +#endif //define HADOOP_SNAPPY_LIBRARY
> {noformat}
> Here we see that all the class implementation got enclosed into "if defined 
> HADOOP_SNAPPY_LIBRARY" directive, and the point is that 
> "HADOOP_SNAPPY_LIBRARY" is *not* defined. 
> This causes the class implementation to be effectively empty, what, in turn, 
> causes the UnsatisfiedLinkError to be thrown in the runtime upon any attempt 
> to invoke the native methods implemented there.
> The actual intention of the authors of HADOOP-8562 was (as we suppose) to 
> invoke "include config.h", where "HADOOP_SNAPPY_LIBRARY" is defined. But 
> currently it is *not* included because it resides *inside* "if defined 
> HADOOP_SNAPPY_LIBRARY" block.
> Similar situation with "ifdef UNIX", because UNIX or WINDOWS variables are 
> defined in "org_apache_hadoop.h", which is indirectly included through 
> "include "org_apache_hadoop_io_compress_snappy.h"", and in the current code 
> this is done *after* code "ifdef UNIX", so in the current code the block 
> "ifdef UNIX" is *not* executed on UNIX.
> The suggested patch fixes the described problems by reordering the "include" 
> and "if" preprocessor directives accordingly, bringing the methods of class 
> org.apache.hadoop.io.compress.snappy.SnappyCompressor back to work again.
> Of course, Snappy native libraries must be installed to build and invoke 
> snappy native methods.
> (Note: there was a mistype in commit message: 8952 written in place of 8562: 
> HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows 
> Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas 
> Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, 
> Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, 
> Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, 
> Ramya Bharathi Nimmagadda.
>git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 
> 13f79535-47bb-0310-9956-ffa450edef68
> )

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9481) Broken conditional logic with HADOOP_SNAPPY_LIBRARY

2013-04-22 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13637844#comment-13637844
 ] 

Vadim Bondarev commented on HADOOP-9481:


Chris, yes it's looks simpler. I add #include "org_apache_hadoop.h" as the 
first line of SnappyCompressor.c/SnappyDecompressor.c. and check for work. 
Test methods in TestSnappyCompressorDecompressor was passed. New version patch 
in attachments.

> Broken conditional logic with HADOOP_SNAPPY_LIBRARY
> ---
>
> Key: HADOOP-9481
> URL: https://issues.apache.org/jira/browse/HADOOP-9481
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Vadim Bondarev
>Priority: Minor
> Attachments: HADOOP-9481-trunk--N1.patch, HADOOP-9481-trunk--N4.patch
>
>
> The problem is a regression introduced by recent fix 
> https://issues.apache.org/jira/browse/HADOOP-8562 .
> That fix makes some improvements for Windows platform, but breaks native code 
> work on Unix.
> Namely, let's see the diff HADOOP-8562 of the file 
> hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/snappy/SnappyCompressor.c
>  :  
> {noformat}
> --- 
> hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/snappy/SnappyCompressor.c
> +++ 
> hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/snappy/SnappyCompressor.c
> @@ -16,12 +16,18 @@
>   * limitations under the License.
>   */
> -#include 
> +
> +#if defined HADOOP_SNAPPY_LIBRARY
> +
>  #include 
>  #include 
>  #include 
> +#ifdef UNIX
> +#include 
>  #include "config.h"
> +#endif // UNIX
> +
>  #include "org_apache_hadoop_io_compress_snappy.h"
>  #include "org_apache_hadoop_io_compress_snappy_SnappyCompressor.h"
> @@ -81,7 +87,7 @@ JNIEXPORT jint JNICALL 
> Java_org_apache_hadoop_io_compress_snappy_SnappyCompresso
>UNLOCK_CLASS(env, clazz, "SnappyCompressor");
>if (uncompressed_bytes == 0) {
> -return 0;
> +return (jint)0;
>}
>// Get the output direct buffer
> @@ -90,7 +96,7 @@ JNIEXPORT jint JNICALL 
> Java_org_apache_hadoop_io_compress_snappy_SnappyCompresso
>UNLOCK_CLASS(env, clazz, "SnappyCompressor");
>if (compressed_bytes == 0) {
> -return 0;
> +return (jint)0;
>}
>/* size_t should always be 4 bytes or larger. */
> @@ -109,3 +115,5 @@ JNIEXPORT jint JNICALL 
> Java_org_apache_hadoop_io_compress_snappy_SnappyCompresso
>(*env)->SetIntField(env, thisj, SnappyCompressor_uncompressedDirectBufLen, 
> 0);
>return (jint)buf_len;
>  }
> +
> +#endif //define HADOOP_SNAPPY_LIBRARY
> {noformat}
> Here we see that all the class implementation got enclosed into "if defined 
> HADOOP_SNAPPY_LIBRARY" directive, and the point is that 
> "HADOOP_SNAPPY_LIBRARY" is *not* defined. 
> This causes the class implementation to be effectively empty, what, in turn, 
> causes the UnsatisfiedLinkError to be thrown in the runtime upon any attempt 
> to invoke the native methods implemented there.
> The actual intention of the authors of HADOOP-8562 was (as we suppose) to 
> invoke "include config.h", where "HADOOP_SNAPPY_LIBRARY" is defined. But 
> currently it is *not* included because it resides *inside* "if defined 
> HADOOP_SNAPPY_LIBRARY" block.
> Similar situation with "ifdef UNIX", because UNIX or WINDOWS variables are 
> defined in "org_apache_hadoop.h", which is indirectly included through 
> "include "org_apache_hadoop_io_compress_snappy.h"", and in the current code 
> this is done *after* code "ifdef UNIX", so in the current code the block 
> "ifdef UNIX" is *not* executed on UNIX.
> The suggested patch fixes the described problems by reordering the "include" 
> and "if" preprocessor directives accordingly, bringing the methods of class 
> org.apache.hadoop.io.compress.snappy.SnappyCompressor back to work again.
> Of course, Snappy native libraries must be installed to build and invoke 
> snappy native methods.
> (Note: there was a mistype in commit message: 8952 written in place of 8562: 
> HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows 
> Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas 
> Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, 
> Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, 
> Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, 
> Ramya Bharathi Nimmagadda.
>git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 
> 13f79535-47bb-0310-9956-ffa450edef68
> )

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9481) Broken conditional logic with HADOOP_SNAPPY_LIBRARY

2013-04-22 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9481:
---

Attachment: HADOOP-9481-trunk--N4.patch

> Broken conditional logic with HADOOP_SNAPPY_LIBRARY
> ---
>
> Key: HADOOP-9481
> URL: https://issues.apache.org/jira/browse/HADOOP-9481
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Vadim Bondarev
>Priority: Minor
> Attachments: HADOOP-9481-trunk--N1.patch, HADOOP-9481-trunk--N4.patch
>
>
> The problem is a regression introduced by recent fix 
> https://issues.apache.org/jira/browse/HADOOP-8562 .
> That fix makes some improvements for Windows platform, but breaks native code 
> work on Unix.
> Namely, let's see the diff HADOOP-8562 of the file 
> hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/snappy/SnappyCompressor.c
>  :  
> {noformat}
> --- 
> hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/snappy/SnappyCompressor.c
> +++ 
> hadoop-common-project/hadoop-common/src/main/native/src/org/apache/hadoop/io/compress/snappy/SnappyCompressor.c
> @@ -16,12 +16,18 @@
>   * limitations under the License.
>   */
> -#include 
> +
> +#if defined HADOOP_SNAPPY_LIBRARY
> +
>  #include 
>  #include 
>  #include 
> +#ifdef UNIX
> +#include 
>  #include "config.h"
> +#endif // UNIX
> +
>  #include "org_apache_hadoop_io_compress_snappy.h"
>  #include "org_apache_hadoop_io_compress_snappy_SnappyCompressor.h"
> @@ -81,7 +87,7 @@ JNIEXPORT jint JNICALL 
> Java_org_apache_hadoop_io_compress_snappy_SnappyCompresso
>UNLOCK_CLASS(env, clazz, "SnappyCompressor");
>if (uncompressed_bytes == 0) {
> -return 0;
> +return (jint)0;
>}
>// Get the output direct buffer
> @@ -90,7 +96,7 @@ JNIEXPORT jint JNICALL 
> Java_org_apache_hadoop_io_compress_snappy_SnappyCompresso
>UNLOCK_CLASS(env, clazz, "SnappyCompressor");
>if (compressed_bytes == 0) {
> -return 0;
> +return (jint)0;
>}
>/* size_t should always be 4 bytes or larger. */
> @@ -109,3 +115,5 @@ JNIEXPORT jint JNICALL 
> Java_org_apache_hadoop_io_compress_snappy_SnappyCompresso
>(*env)->SetIntField(env, thisj, SnappyCompressor_uncompressedDirectBufLen, 
> 0);
>return (jint)buf_len;
>  }
> +
> +#endif //define HADOOP_SNAPPY_LIBRARY
> {noformat}
> Here we see that all the class implementation got enclosed into "if defined 
> HADOOP_SNAPPY_LIBRARY" directive, and the point is that 
> "HADOOP_SNAPPY_LIBRARY" is *not* defined. 
> This causes the class implementation to be effectively empty, what, in turn, 
> causes the UnsatisfiedLinkError to be thrown in the runtime upon any attempt 
> to invoke the native methods implemented there.
> The actual intention of the authors of HADOOP-8562 was (as we suppose) to 
> invoke "include config.h", where "HADOOP_SNAPPY_LIBRARY" is defined. But 
> currently it is *not* included because it resides *inside* "if defined 
> HADOOP_SNAPPY_LIBRARY" block.
> Similar situation with "ifdef UNIX", because UNIX or WINDOWS variables are 
> defined in "org_apache_hadoop.h", which is indirectly included through 
> "include "org_apache_hadoop_io_compress_snappy.h"", and in the current code 
> this is done *after* code "ifdef UNIX", so in the current code the block 
> "ifdef UNIX" is *not* executed on UNIX.
> The suggested patch fixes the described problems by reordering the "include" 
> and "if" preprocessor directives accordingly, bringing the methods of class 
> org.apache.hadoop.io.compress.snappy.SnappyCompressor back to work again.
> Of course, Snappy native libraries must be installed to build and invoke 
> snappy native methods.
> (Note: there was a mistype in commit message: 8952 written in place of 8562: 
> HADOOP-8952. Enhancements to support Hadoop on Windows Server and Windows 
> Azure environments. Contributed by Ivan Mitic, Chuan Liu, Ramya Sunil, Bikas 
> Saha, Kanna Karanam, John Gordon, Brandon Li, Chris Nauroth, David Lao, 
> Sumadhur Reddy Bolli, Arpit Agarwal, Ahmed El Baz, Mike Liddell, Jing Zhao, 
> Thejas Nair, Steve Maine, Ganeshan Iyer, Raja Aluri, Giridharan Kesavan, 
> Ramya Bharathi Nimmagadda.
>git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1453486 
> 13f79535-47bb-0310-9956-ffa450edef68
> )

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9481) Broken conditional logic with HADOOP_SNAPPY_LIBRARY

2013-04-17 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9481:
---

Status: Patch Available  (was: Open)

> Broken conditional logic with HADOOP_SNAPPY_LIBRARY
> ---
>
> Key: HADOOP-9481
> URL: https://issues.apache.org/jira/browse/HADOOP-9481
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Vadim Bondarev
>Priority: Minor
> Attachments: HADOOP-9481-trunk--N1.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9481) Broken conditional logic with HADOOP_SNAPPY_LIBRARY

2013-04-17 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9481:
---

Attachment: HADOOP-9481-trunk--N1.patch

> Broken conditional logic with HADOOP_SNAPPY_LIBRARY
> ---
>
> Key: HADOOP-9481
> URL: https://issues.apache.org/jira/browse/HADOOP-9481
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Vadim Bondarev
>Priority: Minor
> Attachments: HADOOP-9481-trunk--N1.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9481) Broken conditional logic with HADOOP_SNAPPY_LIBRARY

2013-04-17 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13634044#comment-13634044
 ] 

Vadim Bondarev commented on HADOOP-9481:


Its has affected on patch https://issues.apache.org/jira/browse/HADOOP-9225

> Broken conditional logic with HADOOP_SNAPPY_LIBRARY
> ---
>
> Key: HADOOP-9481
> URL: https://issues.apache.org/jira/browse/HADOOP-9481
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Vadim Bondarev
>Priority: Minor
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9481) Broken conditional logic with HADOOP_SNAPPY_LIBRARY

2013-04-17 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13634039#comment-13634039
 ] 

Vadim Bondarev commented on HADOOP-9481:


Since commit 102f2e3ea007f8cda041f9df7358098482e5f3e2 in classes 
SnappyCompressor.c/SnappyDecompressor.c was added includes and conditional 
logic (if defined),
But his order make classes (SnappyCompressor/SnappyDecompressor) with empty 
body after compilation in so file.
This easy to prove with this test method:

SnappyCompressor compressor = new SnappyCompressor();
compressor.compress(compressed, 0, compressed.length);

Call method compress() was fail with java.lang.UnsatisfiedLinkError: 
org.apache.hadoop.io.compress.snappy.SnappyCompressor.compressBytesDirect()I



> Broken conditional logic with HADOOP_SNAPPY_LIBRARY
> ---
>
> Key: HADOOP-9481
> URL: https://issues.apache.org/jira/browse/HADOOP-9481
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Vadim Bondarev
>Priority: Minor
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9481) Broken conditional logic with HADOOP_SNAPPY_LIBRARY

2013-04-17 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9481:
---

Description: (was: Since commit 
102f2e3ea007f8cda041f9df7358098482e5f3e2 in classes 
SnappyCompressor.c/SnappyDecompressor.c was added includes and conditional 
logic (if defined),
But his order make classes (SnappyCompressor/SnappyDecompressor) with empty 
body after compilation in so file.
This easy to prove with this test method:
)

> Broken conditional logic with HADOOP_SNAPPY_LIBRARY
> ---
>
> Key: HADOOP-9481
> URL: https://issues.apache.org/jira/browse/HADOOP-9481
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Vadim Bondarev
>Priority: Minor
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9481) Broken conditional logic with HADOOP_SNAPPY_LIBRARY

2013-04-17 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9481?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9481:
---

Description: 
Since commit 102f2e3ea007f8cda041f9df7358098482e5f3e2 in classes 
SnappyCompressor.c/SnappyDecompressor.c was added includes and conditional 
logic (if defined),
But his order make classes (SnappyCompressor/SnappyDecompressor) with empty 
body after compilation in so file.
This easy to prove with this test method:


> Broken conditional logic with HADOOP_SNAPPY_LIBRARY
> ---
>
> Key: HADOOP-9481
> URL: https://issues.apache.org/jira/browse/HADOOP-9481
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Vadim Bondarev
>Priority: Minor
>
> Since commit 102f2e3ea007f8cda041f9df7358098482e5f3e2 in classes 
> SnappyCompressor.c/SnappyDecompressor.c was added includes and conditional 
> logic (if defined),
> But his order make classes (SnappyCompressor/SnappyDecompressor) with empty 
> body after compilation in so file.
> This easy to prove with this test method:

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (HADOOP-9481) Broken conditional logic with HADOOP_SNAPPY_LIBRARY

2013-04-17 Thread Vadim Bondarev (JIRA)
Vadim Bondarev created HADOOP-9481:
--

 Summary: Broken conditional logic with HADOOP_SNAPPY_LIBRARY
 Key: HADOOP-9481
 URL: https://issues.apache.org/jira/browse/HADOOP-9481
 Project: Hadoop Common
  Issue Type: Bug
Affects Versions: 3.0.0
Reporter: Vadim Bondarev
Priority: Minor




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9222) Cover package with org.apache.hadoop.io.lz4 unit tests

2013-04-09 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9222?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13626540#comment-13626540
 ] 

Vadim Bondarev commented on HADOOP-9222:


New patch version is available
1. BytesGenerator class was been replaced with a static "generate" function
2. Lz4Codec.isNativeCodeLoaded instead NativeCodeLoader methods

> Cover package with org.apache.hadoop.io.lz4 unit tests
> --
>
> Key: HADOOP-9222
> URL: https://issues.apache.org/jira/browse/HADOOP-9222
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>Assignee: Vadim Bondarev
> Attachments: HADOOP-9222-branch-0.23-a.patch, 
> HADOOP-9222-branch-0.23-b.patch, HADOOP-9222-branch-2-a.patch, 
> HADOOP-9222-branch-2-b.patch, HADOOP-9222-trunk-a.patch, 
> HADOOP-9222-trunk-b.patch, HADOOP-9222-trunk-c.patch
>
>
> Add test class TestLz4CompressorDecompressor with method for Lz4Compressor, 
> Lz4Decompressor testing 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9222) Cover package with org.apache.hadoop.io.lz4 unit tests

2013-04-09 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9222?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9222:
---

Attachment: HADOOP-9222-trunk-c.patch

> Cover package with org.apache.hadoop.io.lz4 unit tests
> --
>
> Key: HADOOP-9222
> URL: https://issues.apache.org/jira/browse/HADOOP-9222
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>Assignee: Vadim Bondarev
> Attachments: HADOOP-9222-branch-0.23-a.patch, 
> HADOOP-9222-branch-0.23-b.patch, HADOOP-9222-branch-2-a.patch, 
> HADOOP-9222-branch-2-b.patch, HADOOP-9222-trunk-a.patch, 
> HADOOP-9222-trunk-b.patch, HADOOP-9222-trunk-c.patch
>
>
> Add test class TestLz4CompressorDecompressor with method for Lz4Compressor, 
> Lz4Decompressor testing 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-04-09 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13626513#comment-13626513
 ] 

Vadim Bondarev commented on HADOOP-9233:


1.ZlibCompressor/ZlibDecompressor was replaced in 
TestZlibCompressorDecompressor class
2.Used ZlibFactory for check on native code   
3.Created static function "generate" instead ByteGenerator class

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>Assignee: Vadim Bondarev
> Attachments: HADOOP-9233-branch-0.23-b.patch, 
> HADOOP-9233-branch-2-a.patch, HADOOP-9233-branch-2-b.patch, 
> HADOOP-9233-trunk-a.patch, HADOOP-9233-trunk-b.patch, 
> HADOOP-9233-trunk-c.patch, HADOOP-9233-trunk-d.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-04-09 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: HADOOP-9233-trunk-d.patch

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>Assignee: Vadim Bondarev
> Attachments: HADOOP-9233-branch-0.23-b.patch, 
> HADOOP-9233-branch-2-a.patch, HADOOP-9233-branch-2-b.patch, 
> HADOOP-9233-trunk-a.patch, HADOOP-9233-trunk-b.patch, 
> HADOOP-9233-trunk-c.patch, HADOOP-9233-trunk-d.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-04-08 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13625311#comment-13625311
 ] 

Vadim Bondarev commented on HADOOP-9233:


New patch version was attached.


> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>Assignee: Vadim Bondarev
> Attachments: HADOOP-9233-branch-0.23-b.patch, 
> HADOOP-9233-branch-2-a.patch, HADOOP-9233-branch-2-b.patch, 
> HADOOP-9233-trunk-a.patch, HADOOP-9233-trunk-b.patch, 
> HADOOP-9233-trunk-c.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-04-08 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: HADOOP-9233-trunk-c.patch

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>Assignee: Vadim Bondarev
> Attachments: HADOOP-9233-branch-0.23-b.patch, 
> HADOOP-9233-branch-2-a.patch, HADOOP-9233-branch-2-b.patch, 
> HADOOP-9233-trunk-a.patch, HADOOP-9233-trunk-b.patch, 
> HADOOP-9233-trunk-c.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9225) Cover package org.apache.hadoop.compress.Snappy

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9225?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9225:
---

Attachment: HADOOP-9225-trunk-c.patch
HADOOP-9225-branch-2-c.patch

> Cover package org.apache.hadoop.compress.Snappy
> ---
>
> Key: HADOOP-9225
> URL: https://issues.apache.org/jira/browse/HADOOP-9225
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9225-branch-0.23-a.patch, 
> HADOOP-9225-branch-2-a.patch, HADOOP-9225-branch-2-b.patch, 
> HADOOP-9225-branch-2-c.patch, HADOOP-9225-trunk-a.patch, 
> HADOOP-9225-trunk-b.patch, HADOOP-9225-trunk-c.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9254) Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9254?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9254:
---

Attachment: HADOOP-9254-trunk-b.patch
HADOOP-9254-branch-2-b.patch
HADOOP-9254-branch-0.23-c.patch

> Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash
> 
>
> Key: HADOOP-9254
> URL: https://issues.apache.org/jira/browse/HADOOP-9254
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9254-branch-0.23-a.patch, 
> HADOOP-9254-branch-0.23-c.patch, HADOOP-9254-branch-2-a.patch, 
> HADOOP-9254-branch-2-b.patch, HADOOP-9254-trunk-a.patch, 
> HADOOP-9254-trunk-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: HADOOP-9199-trunk-e.patch
HADOOP-9199-branch-2-e.patch
HADOOP-9199-branch-0.23-e.patch

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-0.23-b.patch, HADOOP-9199-branch-0.23-c.patch, 
> HADOOP-9199-branch-0.23-e.patch, HADOOP-9199-branch-2-a.patch, 
> HADOOP-9199-branch-2-b.patch, HADOOP-9199-branch-2-c.patch, 
> HADOOP-9199-branch-2-e.patch, HADOOP-9199-trunk-a.patch, 
> HADOOP-9199-trunk-b.patch, HADOOP-9199-trunk-c.patch, 
> HADOOP-9199-trunk-e.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: (was: HADOOP-9199-trunk-e.patch)

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-0.23-b.patch, HADOOP-9199-branch-0.23-c.patch, 
> HADOOP-9199-branch-0.23-e.patch, HADOOP-9199-branch-2-a.patch, 
> HADOOP-9199-branch-2-b.patch, HADOOP-9199-branch-2-c.patch, 
> HADOOP-9199-branch-2-e.patch, HADOOP-9199-trunk-a.patch, 
> HADOOP-9199-trunk-b.patch, HADOOP-9199-trunk-c.patch, 
> HADOOP-9199-trunk-e.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: (was: HADOOP-9199-branch-2-e.patch)

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-0.23-b.patch, HADOOP-9199-branch-0.23-c.patch, 
> HADOOP-9199-branch-0.23-e.patch, HADOOP-9199-branch-2-a.patch, 
> HADOOP-9199-branch-2-b.patch, HADOOP-9199-branch-2-c.patch, 
> HADOOP-9199-branch-2-e.patch, HADOOP-9199-trunk-a.patch, 
> HADOOP-9199-trunk-b.patch, HADOOP-9199-trunk-c.patch, 
> HADOOP-9199-trunk-e.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: (was: HADOOP-9199-branch-0.23-e.patch)

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-0.23-b.patch, HADOOP-9199-branch-0.23-c.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-branch-2-b.patch, 
> HADOOP-9199-branch-2-c.patch, HADOOP-9199-branch-2-e.patch, 
> HADOOP-9199-trunk-a.patch, HADOOP-9199-trunk-b.patch, 
> HADOOP-9199-trunk-c.patch, HADOOP-9199-trunk-e.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: HADOOP-9233-trunk-b.patch
HADOOP-9233-branch-2-b.patch
HADOOP-9233-branch-0.23-b.patch

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9233-branch-0.23-b.patch, 
> HADOOP-9233-branch-2-a.patch, HADOOP-9233-branch-2-b.patch, 
> HADOOP-9233-trunk-a.patch, HADOOP-9233-trunk-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: (was: HADOOP-9199-branch-2-b.patch)

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9233-branch-0.23-b.patch, 
> HADOOP-9233-branch-2-a.patch, HADOOP-9233-branch-2-b.patch, 
> HADOOP-9233-trunk-a.patch, HADOOP-9233-trunk-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: (was: HADOOP-9199-branch-0.23-b.patch)

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9233-branch-0.23-b.patch, 
> HADOOP-9233-branch-2-a.patch, HADOOP-9233-branch-2-b.patch, 
> HADOOP-9233-trunk-a.patch, HADOOP-9233-trunk-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: (was: HADOOP-9233-branch-0.23-a.patch)

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9233-branch-0.23-b.patch, 
> HADOOP-9233-branch-2-a.patch, HADOOP-9233-branch-2-b.patch, 
> HADOOP-9233-trunk-a.patch, HADOOP-9233-trunk-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: (was: HADOOP-9199-trunk-b.patch)

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9233-branch-0.23-b.patch, 
> HADOOP-9233-branch-2-a.patch, HADOOP-9233-branch-2-b.patch, 
> HADOOP-9233-trunk-a.patch, HADOOP-9233-trunk-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: HADOOP-9199-trunk-b.patch
HADOOP-9199-branch-2-b.patch
HADOOP-9199-branch-0.23-b.patch

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9233-branch-0.23-b.patch, 
> HADOOP-9233-branch-2-a.patch, HADOOP-9233-branch-2-b.patch, 
> HADOOP-9233-trunk-a.patch, HADOOP-9233-trunk-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9222) Cover package with org.apache.hadoop.io.lz4 unit tests

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9222?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9222:
---

Attachment: HADOOP-9222-trunk-b.patch
HADOOP-9222-branch-2-b.patch
HADOOP-9222-branch-0.23-b.patch

> Cover package with org.apache.hadoop.io.lz4 unit tests
> --
>
> Key: HADOOP-9222
> URL: https://issues.apache.org/jira/browse/HADOOP-9222
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9222-branch-0.23-a.patch, 
> HADOOP-9222-branch-0.23-b.patch, HADOOP-9222-branch-2-a.patch, 
> HADOOP-9222-branch-2-b.patch, HADOOP-9222-trunk-a.patch, 
> HADOOP-9222-trunk-b.patch
>
>
> Add test class TestLz4CompressorDecompressor with method for Lz4Compressor, 
> Lz4Decompressor testing 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-04-02 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: HADOOP-9199-branch-0.23-e.patch
HADOOP-9199-branch-2-e.patch
HADOOP-9199-trunk-e.patch

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-0.23-b.patch, HADOOP-9199-branch-0.23-c.patch, 
> HADOOP-9199-branch-0.23-e.patch, HADOOP-9199-branch-2-a.patch, 
> HADOOP-9199-branch-2-b.patch, HADOOP-9199-branch-2-c.patch, 
> HADOOP-9199-branch-2-e.patch, HADOOP-9199-trunk-a.patch, 
> HADOOP-9199-trunk-b.patch, HADOOP-9199-trunk-c.patch, 
> HADOOP-9199-trunk-e.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (HADOOP-9298) Cover with unit test package org.apache.hadoop.hdfs.tools

2013-02-21 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev resolved HADOOP-9298.


Resolution: Duplicate

> Cover with unit test package org.apache.hadoop.hdfs.tools
> -
>
> Key: HADOOP-9298
> URL: https://issues.apache.org/jira/browse/HADOOP-9298
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9298-branch-0.23-a.patch, 
> HADOOP-9298-branch-2-a.patch, HADOOP-9298-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (HADOOP-9268) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-02-21 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev resolved HADOOP-9268.


Resolution: Duplicate

> Cover package org.apache.hadoop.hdfs.server.common  with tests
> --
>
> Key: HADOOP-9268
> URL: https://issues.apache.org/jira/browse/HADOOP-9268
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9268-branch-0.23-a.patch, 
> HADOOP-9268-branch-2-a.patch, HADOOP-9268-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Resolved] (HADOOP-9314) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-02-21 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9314?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev resolved HADOOP-9314.


Resolution: Duplicate

> Cover package org.apache.hadoop.hdfs.server.common with tests
> -
>
> Key: HADOOP-9314
> URL: https://issues.apache.org/jira/browse/HADOOP-9314
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9314) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-02-20 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9314?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13582986#comment-13582986
 ] 

Vadim Bondarev commented on HADOOP-9314:


The issue was moved to HDFS JIRA space  
https://issues.apache.org/jira/browse/HDFS-4512. Please delete both tickets 
(9314, 9268).

> Cover package org.apache.hadoop.hdfs.server.common with tests
> -
>
> Key: HADOOP-9314
> URL: https://issues.apache.org/jira/browse/HADOOP-9314
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9314) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-02-20 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9314?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13582496#comment-13582496
 ] 

Vadim Bondarev commented on HADOOP-9314:


was replaced in https://issues.apache.org/jira/browse/HDFS-4512

> Cover package org.apache.hadoop.hdfs.server.common with tests
> -
>
> Key: HADOOP-9314
> URL: https://issues.apache.org/jira/browse/HADOOP-9314
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9314) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-02-20 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9314?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9314:
---

Status: Open  (was: Patch Available)

> Cover package org.apache.hadoop.hdfs.server.common with tests
> -
>
> Key: HADOOP-9314
> URL: https://issues.apache.org/jira/browse/HADOOP-9314
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 2.0.3-alpha, 3.0.0, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9314) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-02-20 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9314?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9314:
---

Status: Patch Available  (was: Open)

> Cover package org.apache.hadoop.hdfs.server.common with tests
> -
>
> Key: HADOOP-9314
> URL: https://issues.apache.org/jira/browse/HADOOP-9314
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 2.0.3-alpha, 3.0.0, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (HADOOP-9314) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-02-18 Thread Vadim Bondarev (JIRA)
Vadim Bondarev created HADOOP-9314:
--

 Summary: Cover package org.apache.hadoop.hdfs.server.common with 
tests
 Key: HADOOP-9314
 URL: https://issues.apache.org/jira/browse/HADOOP-9314
 Project: Hadoop Common
  Issue Type: Test
Affects Versions: 2.0.3-alpha, 3.0.0, 0.23.6
Reporter: Vadim Bondarev




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9268) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-02-18 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9268:
---

Status: Open  (was: Patch Available)

replace in hdfs project

> Cover package org.apache.hadoop.hdfs.server.common  with tests
> --
>
> Key: HADOOP-9268
> URL: https://issues.apache.org/jira/browse/HADOOP-9268
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 2.0.3-alpha, 3.0.0, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9268-branch-0.23-a.patch, 
> HADOOP-9268-branch-2-a.patch, HADOOP-9268-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9298) Cover with unit test package org.apache.hadoop.hdfs.tools

2013-02-18 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9298:
---

Status: Open  (was: Patch Available)

recreate issue in hadoop-hdfs project

> Cover with unit test package org.apache.hadoop.hdfs.tools
> -
>
> Key: HADOOP-9298
> URL: https://issues.apache.org/jira/browse/HADOOP-9298
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 2.0.3-alpha, 3.0.0, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9298-branch-0.23-a.patch, 
> HADOOP-9298-branch-2-a.patch, HADOOP-9298-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9298) Cover with unit test package org.apache.hadoop.hdfs.tools

2013-02-15 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9298:
---

Attachment: HADOOP-9298-trunk-a.patch
HADOOP-9298-branch-2-a.patch
HADOOP-9298-branch-0.23-a.patch

> Cover with unit test package org.apache.hadoop.hdfs.tools
> -
>
> Key: HADOOP-9298
> URL: https://issues.apache.org/jira/browse/HADOOP-9298
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9298-branch-0.23-a.patch, 
> HADOOP-9298-branch-2-a.patch, HADOOP-9298-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9298) Cover with unit test package org.apache.hadoop.hdfs.tools

2013-02-15 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9298:
---

Attachment: (was: HADOOP-9298-branch-0.23-a.patch)

> Cover with unit test package org.apache.hadoop.hdfs.tools
> -
>
> Key: HADOOP-9298
> URL: https://issues.apache.org/jira/browse/HADOOP-9298
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9298-branch-0.23-a.patch, 
> HADOOP-9298-branch-2-a.patch, HADOOP-9298-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9298) Cover with unit test package org.apache.hadoop.hdfs.tools

2013-02-15 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9298:
---

Attachment: (was: HADOOP-9298-branch-2-a.patch)

> Cover with unit test package org.apache.hadoop.hdfs.tools
> -
>
> Key: HADOOP-9298
> URL: https://issues.apache.org/jira/browse/HADOOP-9298
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9298-branch-0.23-a.patch, 
> HADOOP-9298-branch-2-a.patch, HADOOP-9298-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9298) Cover with unit test package org.apache.hadoop.hdfs.tools

2013-02-15 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9298:
---

Attachment: (was: HADOOP-9298-trunk-a.patch)

> Cover with unit test package org.apache.hadoop.hdfs.tools
> -
>
> Key: HADOOP-9298
> URL: https://issues.apache.org/jira/browse/HADOOP-9298
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9298-branch-0.23-a.patch, 
> HADOOP-9298-branch-2-a.patch, HADOOP-9298-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9298) Cover with unit test package org.apache.hadoop.hdfs.tools

2013-02-12 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9298:
---

Attachment: HADOOP-9298-trunk-a.patch
HADOOP-9298-branch-2-a.patch
HADOOP-9298-branch-0.23-a.patch

> Cover with unit test package org.apache.hadoop.hdfs.tools
> -
>
> Key: HADOOP-9298
> URL: https://issues.apache.org/jira/browse/HADOOP-9298
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9298-branch-0.23-a.patch, 
> HADOOP-9298-branch-2-a.patch, HADOOP-9298-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9298) Cover with unit test package org.apache.hadoop.hdfs.tools

2013-02-12 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9298?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9298:
---

Status: Patch Available  (was: Open)

> Cover with unit test package org.apache.hadoop.hdfs.tools
> -
>
> Key: HADOOP-9298
> URL: https://issues.apache.org/jira/browse/HADOOP-9298
> Project: Hadoop Common
>  Issue Type: Bug
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9298-branch-0.23-a.patch, 
> HADOOP-9298-branch-2-a.patch, HADOOP-9298-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (HADOOP-9298) Cover with unit test package org.apache.hadoop.hdfs.tools

2013-02-12 Thread Vadim Bondarev (JIRA)
Vadim Bondarev created HADOOP-9298:
--

 Summary: Cover with unit test package org.apache.hadoop.hdfs.tools
 Key: HADOOP-9298
 URL: https://issues.apache.org/jira/browse/HADOOP-9298
 Project: Hadoop Common
  Issue Type: Bug
Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
Reporter: Vadim Bondarev




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (HADOOP-9292) NullPointerException in tests

2013-02-08 Thread Vadim Bondarev (JIRA)
Vadim Bondarev created HADOOP-9292:
--

 Summary: NullPointerException in tests
 Key: HADOOP-9292
 URL: https://issues.apache.org/jira/browse/HADOOP-9292
 Project: Hadoop Common
  Issue Type: Bug
Reporter: Vadim Bondarev


testDelegationTokenWithWebhdfsFileSystem(org.apache.hadoop.fs.http.server.TestHttpFSWithKerberos)

testOperation[7](org.apache.hadoop.fs.http.client.TestHttpFSFWithWebhdfsFileSystem)

testOperationDoAs[7](org.apache.hadoop.fs.http.client.TestHttpFSFWithWebhdfsFileSystem)

problem in method JsonUtil.toFileStatus

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-02-06 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: HADOOP-9233-trunk-a.patch
HADOOP-9233-branch-2-a.patch
HADOOP-9233-branch-0.23-a.patch

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9233-branch-0.23-a.patch, 
> HADOOP-9233-branch-2-a.patch, HADOOP-9233-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-02-06 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: (was: HADOOP-9233-trunk-a.patch)

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-02-06 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: (was: HADOOP-9233-branch-0.23-a.patch)

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-02-06 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: (was: HADOOP-9233-branch-2-a.patch)

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9268) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9268:
---

Attachment: (was: HADOOP-9268-branch-2-a.patch)

> Cover package org.apache.hadoop.hdfs.server.common  with tests
> --
>
> Key: HADOOP-9268
> URL: https://issues.apache.org/jira/browse/HADOOP-9268
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9268-branch-0.23-a.patch, 
> HADOOP-9268-branch-2-a.patch, HADOOP-9268-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9268) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9268:
---

Attachment: HADOOP-9268-trunk-a.patch
HADOOP-9268-branch-2-a.patch
HADOOP-9268-branch-0.23-a.patch

> Cover package org.apache.hadoop.hdfs.server.common  with tests
> --
>
> Key: HADOOP-9268
> URL: https://issues.apache.org/jira/browse/HADOOP-9268
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9268-branch-0.23-a.patch, 
> HADOOP-9268-branch-2-a.patch, HADOOP-9268-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9268) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9268:
---

Attachment: (was: HADOOP-9268-trunk-a.patch)

> Cover package org.apache.hadoop.hdfs.server.common  with tests
> --
>
> Key: HADOOP-9268
> URL: https://issues.apache.org/jira/browse/HADOOP-9268
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9268-branch-0.23-a.patch, 
> HADOOP-9268-branch-2-a.patch, HADOOP-9268-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9268) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9268:
---

Status: Patch Available  (was: Open)

> Cover package org.apache.hadoop.hdfs.server.common  with tests
> --
>
> Key: HADOOP-9268
> URL: https://issues.apache.org/jira/browse/HADOOP-9268
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9268-branch-0.23-a.patch, 
> HADOOP-9268-branch-2-a.patch, HADOOP-9268-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9268) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9268:
---

Attachment: HADOOP-9268-trunk-a.patch
HADOOP-9268-branch-2-a.patch
YAHOO-9268-branch-0.23-a.patch

> Cover package org.apache.hadoop.hdfs.server.common  with tests
> --
>
> Key: HADOOP-9268
> URL: https://issues.apache.org/jira/browse/HADOOP-9268
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9268-branch-0.23-a.patch, 
> HADOOP-9268-branch-2-a.patch, HADOOP-9268-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9268) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9268?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9268:
---

Attachment: (was: YAHOO-9268-branch-0.23-a.patch)

> Cover package org.apache.hadoop.hdfs.server.common  with tests
> --
>
> Key: HADOOP-9268
> URL: https://issues.apache.org/jira/browse/HADOOP-9268
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9268-branch-0.23-a.patch, 
> HADOOP-9268-branch-2-a.patch, HADOOP-9268-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (HADOOP-9268) Cover package org.apache.hadoop.hdfs.server.common with tests

2013-01-31 Thread Vadim Bondarev (JIRA)
Vadim Bondarev created HADOOP-9268:
--

 Summary: Cover package org.apache.hadoop.hdfs.server.common  with 
tests
 Key: HADOOP-9268
 URL: https://issues.apache.org/jira/browse/HADOOP-9268
 Project: Hadoop Common
  Issue Type: Test
Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
Reporter: Vadim Bondarev




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: HADOOP-9233-trunk-a.patch
HADOOP-9233-branch-2-a.patch
HADOOP-9233-branch-0.23-a.patch

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9233-branch-0.23-a.patch, 
> HADOOP-9233-branch-2-a.patch, HADOOP-9233-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: (was: YAHOO-9233-trunk-a.patch)

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: (was: YAHOO-9233-branch-0.23-a.patch)

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: (was: YAHOO-9233-branch-2-a.patch)

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9254) Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9254?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9254:
---

Attachment: HADOOP-9254-trunk-a.patch
HADOOP-9254-branch-2-a.patch
HADOOP-9254-branch-0.23-a.patch

> Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash
> 
>
> Key: HADOOP-9254
> URL: https://issues.apache.org/jira/browse/HADOOP-9254
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9254-branch-0.23-a.patch, 
> HADOOP-9254-branch-2-a.patch, HADOOP-9254-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9254) Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9254?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9254:
---

Attachment: (was: YAHOO-9254-branch-2-a.patch)

> Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash
> 
>
> Key: HADOOP-9254
> URL: https://issues.apache.org/jira/browse/HADOOP-9254
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9254) Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9254?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9254:
---

Attachment: (was: YAHOO-9254-trunk-a.patch)

> Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash
> 
>
> Key: HADOOP-9254
> URL: https://issues.apache.org/jira/browse/HADOOP-9254
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9254) Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash

2013-01-31 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9254?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9254:
---

Attachment: (was: YAHOO-9254-branch-0.23-a.patch)

> Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash
> 
>
> Key: HADOOP-9254
> URL: https://issues.apache.org/jira/browse/HADOOP-9254
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9254) Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash

2013-01-28 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9254?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9254:
---

Attachment: YAHOO-9254-trunk-a.patch
YAHOO-9254-branch-2-a.patch
YAHOO-9254-branch-0.23-a.patch

> Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash
> 
>
> Key: HADOOP-9254
> URL: https://issues.apache.org/jira/browse/HADOOP-9254
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: YAHOO-9254-branch-0.23-a.patch, 
> YAHOO-9254-branch-2-a.patch, YAHOO-9254-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9254) Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash

2013-01-28 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9254?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9254:
---

Status: Patch Available  (was: Open)

> Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash
> 
>
> Key: HADOOP-9254
> URL: https://issues.apache.org/jira/browse/HADOOP-9254
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: YAHOO-9254-branch-0.23-a.patch, 
> YAHOO-9254-branch-2-a.patch, YAHOO-9254-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (HADOOP-9254) Cover packages org.apache.hadoop.util.bloom, org.apache.hadoop.util.hash

2013-01-28 Thread Vadim Bondarev (JIRA)
Vadim Bondarev created HADOOP-9254:
--

 Summary: Cover packages org.apache.hadoop.util.bloom, 
org.apache.hadoop.util.hash
 Key: HADOOP-9254
 URL: https://issues.apache.org/jira/browse/HADOOP-9254
 Project: Hadoop Common
  Issue Type: Test
Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
Reporter: Vadim Bondarev




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-23 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: HADOOP-9199-trunk-c.patch
HADOOP-9199-branch-2-c.patch
HADOOP-9199-branch-0.23-c.patch

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-0.23-b.patch, HADOOP-9199-branch-0.23-c.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-branch-2-b.patch, 
> HADOOP-9199-branch-2-c.patch, HADOOP-9199-trunk-a.patch, 
> HADOOP-9199-trunk-b.patch, HADOOP-9199-trunk-c.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-01-22 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Status: Patch Available  (was: Open)

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: YAHOO-9233-branch-0.23-a.patch, 
> YAHOO-9233-branch-2-a.patch, YAHOO-9233-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-01-22 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9233?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9233:
---

Attachment: YAHOO-9233-trunk-a.patch
YAHOO-9233-branch-2-a.patch
YAHOO-9233-branch-0.23-a.patch

> Cover package org.apache.hadoop.compress.zlib with unit tests
> -
>
> Key: HADOOP-9233
> URL: https://issues.apache.org/jira/browse/HADOOP-9233
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: YAHOO-9233-branch-0.23-a.patch, 
> YAHOO-9233-branch-2-a.patch, YAHOO-9233-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (HADOOP-9233) Cover package org.apache.hadoop.compress.zlib with unit tests

2013-01-22 Thread Vadim Bondarev (JIRA)
Vadim Bondarev created HADOOP-9233:
--

 Summary: Cover package org.apache.hadoop.compress.zlib with unit 
tests
 Key: HADOOP-9233
 URL: https://issues.apache.org/jira/browse/HADOOP-9233
 Project: Hadoop Common
  Issue Type: Test
Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
Reporter: Vadim Bondarev




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9225) Cover package org.apache.hadoop.compress.Snappy

2013-01-21 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9225?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13558659#comment-13558659
 ] 

Vadim Bondarev commented on HADOOP-9225:


Yes, you are right. Now a do correct check of snappy support.

> Cover package org.apache.hadoop.compress.Snappy
> ---
>
> Key: HADOOP-9225
> URL: https://issues.apache.org/jira/browse/HADOOP-9225
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9225-branch-0.23-a.patch, 
> HADOOP-9225-branch-2-a.patch, HADOOP-9225-branch-2-b.patch, 
> HADOOP-9225-trunk-a.patch, HADOOP-9225-trunk-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9225) Cover package org.apache.hadoop.compress.Snappy

2013-01-21 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9225?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9225:
---

Attachment: HADOOP-9225-trunk-b.patch
HADOOP-9225-branch-2-b.patch

> Cover package org.apache.hadoop.compress.Snappy
> ---
>
> Key: HADOOP-9225
> URL: https://issues.apache.org/jira/browse/HADOOP-9225
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9225-branch-0.23-a.patch, 
> HADOOP-9225-branch-2-a.patch, HADOOP-9225-branch-2-b.patch, 
> HADOOP-9225-trunk-a.patch, HADOOP-9225-trunk-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9225) Cover package org.apache.hadoop.compress.Snappy

2013-01-18 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9225?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13557126#comment-13557126
 ] 

Vadim Bondarev commented on HADOOP-9225:


Since there is on dependency on snappy native library in project and it's not 
builded in mvn project we should :

1. download from http://snappy.googlecode.com/files/snappy-1.0.5.tar.gz and 
build. 
Default installation folder for snappy is {/usr/local/lib}

2. before build do   export LD_LIBRARY_PATH=/usr/local/lib {snappy default 
installation directory}



> Cover package org.apache.hadoop.compress.Snappy
> ---
>
> Key: HADOOP-9225
> URL: https://issues.apache.org/jira/browse/HADOOP-9225
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9225-branch-0.23-a.patch, 
> HADOOP-9225-branch-2-a.patch, HADOOP-9225-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9225) Cover package org.apache.hadoop.compress.Snappy

2013-01-18 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9225?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9225:
---

Attachment: HADOOP-9225-trunk-a.patch
HADOOP-9225-branch-2-a.patch
HADOOP-9225-branch-0.23-a.patch

> Cover package org.apache.hadoop.compress.Snappy
> ---
>
> Key: HADOOP-9225
> URL: https://issues.apache.org/jira/browse/HADOOP-9225
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9225-branch-0.23-a.patch, 
> HADOOP-9225-branch-2-a.patch, HADOOP-9225-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9225) Cover package org.apache.hadoop.compress.Snappy

2013-01-18 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9225?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9225:
---

Status: Patch Available  (was: Open)

> Cover package org.apache.hadoop.compress.Snappy
> ---
>
> Key: HADOOP-9225
> URL: https://issues.apache.org/jira/browse/HADOOP-9225
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9225-branch-0.23-a.patch, 
> HADOOP-9225-branch-2-a.patch, HADOOP-9225-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (HADOOP-9225) Cover package org.apache.hadoop.compress.Snappy

2013-01-18 Thread Vadim Bondarev (JIRA)
Vadim Bondarev created HADOOP-9225:
--

 Summary: Cover package org.apache.hadoop.compress.Snappy
 Key: HADOOP-9225
 URL: https://issues.apache.org/jira/browse/HADOOP-9225
 Project: Hadoop Common
  Issue Type: Test
Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
Reporter: Vadim Bondarev




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9222) Cover package with org.apache.hadoop.io.lz4 unit tests

2013-01-18 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9222?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9222:
---

Status: Patch Available  (was: Open)

> Cover package with org.apache.hadoop.io.lz4 unit tests
> --
>
> Key: HADOOP-9222
> URL: https://issues.apache.org/jira/browse/HADOOP-9222
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9222-branch-0.23-a.patch, 
> HADOOP-9222-branch-2-a.patch, HADOOP-9222-trunk-a.patch
>
>
> Add test class TestLz4CompressorDecompressor with method for Lz4Compressor, 
> Lz4Decompressor testing 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9222) Cover package with org.apache.hadoop.io.lz4 unit tests

2013-01-18 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9222?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9222:
---

Attachment: HADOOP-9222-trunk-a.patch
HADOOP-9222-branch-2-a.patch
HADOOP-9222-branch-0.23-a.patch

> Cover package with org.apache.hadoop.io.lz4 unit tests
> --
>
> Key: HADOOP-9222
> URL: https://issues.apache.org/jira/browse/HADOOP-9222
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9222-branch-0.23-a.patch, 
> HADOOP-9222-branch-2-a.patch, HADOOP-9222-trunk-a.patch
>
>
> Add test class TestLz4CompressorDecompressor with method for Lz4Compressor, 
> Lz4Decompressor testing 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (HADOOP-9222) Cover package with org.apache.hadoop.io.lz4 unit tests

2013-01-18 Thread Vadim Bondarev (JIRA)
Vadim Bondarev created HADOOP-9222:
--

 Summary: Cover package with org.apache.hadoop.io.lz4 unit tests
 Key: HADOOP-9222
 URL: https://issues.apache.org/jira/browse/HADOOP-9222
 Project: Hadoop Common
  Issue Type: Test
Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
Reporter: Vadim Bondarev
 Attachments: HADOOP-9222-branch-0.23-a.patch, 
HADOOP-9222-branch-2-a.patch, HADOOP-9222-trunk-a.patch

Add test class TestLz4CompressorDecompressor with method for Lz4Compressor, 
Lz4Decompressor testing 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-17 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: HADOOP-9199-trunk-b.patch
HADOOP-9199-branch-2-b.patch
HADOOP-9199-branch-0.23-b.patch

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-0.23-b.patch, HADOOP-9199-branch-2-a.patch, 
> HADOOP-9199-branch-2-b.patch, HADOOP-9199-trunk-a.patch, 
> HADOOP-9199-trunk-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-17 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: (was: HODOOP-9199-branch-0.23-b.patch)

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-17 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: (was: HADOOP-9199-branch-2-b.patch)

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch, 
> HODOOP-9199-branch-0.23-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-17 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: (was: HADOOP-9199-trunk-b.patch)

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch, 
> HODOOP-9199-branch-0.23-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-17 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: HADOOP-9199-trunk-b.patch
HADOOP-9199-branch-2-b.patch
HODOOP-9199-branch-0.23-b.patch

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch, 
> HODOOP-9199-branch-0.23-b.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-16 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: (was: HADOOP-9199-trunk-a.patch)

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-16 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: HADOOP-9199-trunk-a.patch

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-14 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: (was: Test_Desc)

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-14 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13552647#comment-13552647
 ] 

Vadim Bondarev commented on HADOOP-9199:


look at test method description in attach

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch, Test_Desc
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-14 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: Test_Desc

test method description

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch, Test_Desc
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Commented] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-14 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13552639#comment-13552639
 ] 

Vadim Bondarev commented on HADOOP-9199:


Classes   Method  Desc
  
TestArrayFile   testArrayFileIteration  test ArrayFile.Reader 
methods next(); reader reader.seek() in range and out of range.

TestArrayWritable   testArrayWritableStringConstructor  test ArrayWritable 
constructor with String[] as a parameter
testNullArgumenttest TextArrayWritable 
with null parameter
testArrayWritableToArraytest TextArrayWritable 
toArray() method


TestBloomMapFiletestBloomMapFileConstructorstest all 
BloomMapFile.Writer available constructors.
testDeleteFile  test method 
BloomMapFile.delete.  
testGetBloomMapFile test 
BloomMapFile.Reader method get(Writable wr) in range and out of range.
testIOExceptionInWriterConstructor  test 
BloomMapFile.Reader constructor with throw IOException in 
filesystem.getFileSystem(conf);

TestBooleanWritable testCommonMethods   test methods 
hashCode(), equals(), compareTo() against instance of type BooleanWritable

TestBytesWritable   testObjectCommonMethods test methods 
compareTo(), toString(), equals() against instance of type ByteWritable


TestCompressedWritable testCompressedWritableWriteHeader test 
CompressedWritable write(DataOutputBuffer) method 
   testCompressedWritableReadFields  test 
CompressedWritable readFields() method

TestEnumSetWritabletestEnumSetWritableEquals test equals() method 
against instance of type EnumSetWritable
   testEnumSetWritableWriteRead  test EnumSetWritable 
write(DataOutputBuffer out) and iteration by TestEnumSet through iterator().


TestMapFile
   testDeprecatedConstructorstest all available 
constructor of type MapFile.Writer.
   testDescOrderWithThrowExceptionWriterAppend test 
MapFile.Writer method append(Writable wr) in desc order (2, 1);
   testFix   test MapFile.fix() 
method which attempts to re-creating MapFile index.
   testGetClosestOnCurrentApitest method 
reader.getClosest(WritableComparable wrc) variations.
   testKeyLessWriterCreation test MapFile.Writer 
constructor without varargs paramereters (SequenceFile.Writer.Option... opts).
   testKeyValueClasses   test on verification 
key and value classes for MapFile.Writer type.
   testMainMethodMapFile test for static void 
main() method.
   testMidKeyOnCurrentApitest MapFile.Reader 
method reader.midKey() which get key in the middle of the file.
   testOnFinalKeytest MapFile.Reader 
method reader.finalKey() which get key in the end of file.
   testPathExplosionWriterCreation   test IOException in 
MapFile.Writer constructor
   testReaderKeyIterationtest MapFile.Reader 
method reader.next(key, value) for iteration.
   testReaderWithWrongKeyClass   test MapFile.Reader 
method reader.getClosest() whith wrond class key
   testReaderWithWrongValueClass test MapFile.Writer 
method writer.append() with wrong type key instance
   testRenametest MapFile.rename() 
method
   testRenameWithException   test MapFile.rename() 
method with throw IOException 
   testRenameWithFalse   test MapFile.rename() 
method with FleSystem.rename return false
   testWriteWithFailDirCreation  test MapFile.Writer 
constructor with throw IOException
TestMultipleIOException
   testEmptyParamIOException test 
MultipleIOException.createIOException() method
   testSingleParamIOExceptiontest 
MultipleIOException.testSingleParamIOException() method 
   testMultipleIOException   test 
MultipleIOException.createIOException() method

TestNullWritable
   testNullableWritable  test uncovered methods 
in class NullWritable

TestOutputBuffer   testOutputBufferWithoutResize test OutputBuffer 
methods write(InputStream in, int), out.getData()
   testOutputBufferReset test just like 
previous only with adding out.reset() call

TestSetFiletestSetFileAccessMethods  test SetFile.Rea

[jira] [Commented] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-14 Thread Vadim Bondarev (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13552530#comment-13552530
 ] 

Vadim Bondarev commented on HADOOP-9199:


add description in issue or in test source code ?

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-11 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Fix Version/s: (was: 0.23.6)
   (was: 2.0.3-alpha)
   (was: 3.0.0)

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-11 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Fix Version/s: 0.23.6
   2.0.3-alpha
   3.0.0
   Status: Patch Available  (was: Open)

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Fix For: 3.0.0, 2.0.3-alpha, 0.23.6
>
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-11 Thread Vadim Bondarev (JIRA)

 [ 
https://issues.apache.org/jira/browse/HADOOP-9199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Vadim Bondarev updated HADOOP-9199:
---

Attachment: HADOOP-9199-trunk-a.patch
HADOOP-9199-branch-2-a.patch
HADOOP-9199-branch-0.23-a.patch

> Cover package org.apache.hadoop.io with unit tests
> --
>
> Key: HADOOP-9199
> URL: https://issues.apache.org/jira/browse/HADOOP-9199
> Project: Hadoop Common
>  Issue Type: Test
>Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
>Reporter: Vadim Bondarev
> Attachments: HADOOP-9199-branch-0.23-a.patch, 
> HADOOP-9199-branch-2-a.patch, HADOOP-9199-trunk-a.patch
>
>


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Created] (HADOOP-9199) Cover package org.apache.hadoop.io with unit tests

2013-01-11 Thread Vadim Bondarev (JIRA)
Vadim Bondarev created HADOOP-9199:
--

 Summary: Cover package org.apache.hadoop.io with unit tests
 Key: HADOOP-9199
 URL: https://issues.apache.org/jira/browse/HADOOP-9199
 Project: Hadoop Common
  Issue Type: Test
Affects Versions: 3.0.0, 2.0.3-alpha, 0.23.6
Reporter: Vadim Bondarev




--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


  1   2   >