[jira] [Commented] (AVRO-2318) Test Avro's Hadoop related modules with Hadoop 3

2019-04-08 Thread Hudson (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-2318?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16812594#comment-16812594
 ] 

Hudson commented on AVRO-2318:
--

SUCCESS: Integrated in Jenkins build AvroJava #647 (See 
[https://builds.apache.org/job/AvroJava/647/])
AVRO-2318: Add hadoop3 profile run to validate support of Hadoop 3 (iemejia: 
[https://github.com/apache/avro/commit/a02495613d514e984ff486f334890099b1c922e7])
* (edit) lang/java/ipc-jetty/pom.xml
* (edit) lang/java/pom.xml
* (edit) lang/java/build.sh


> Test Avro's Hadoop related modules with Hadoop 3
> 
>
> Key: AVRO-2318
> URL: https://issues.apache.org/jira/browse/AVRO-2318
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Ismaël Mejía
>Priority: Major
> Fix For: 1.9.0
>
>
> We should provide a way to support Hadoop 3 or at least to ensure that Avro's 
> existing codebase does not break if Hadoop's `hadoop-client` library is 
> passed on version 3.x



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (AVRO-2318) Test Avro's Hadoop related modules with Hadoop 3

2019-04-08 Thread JIRA


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

Ismaël Mejía resolved AVRO-2318.

Resolution: Fixed
  Assignee: Ismaël Mejía  (was: Fokko Driesprong)

> Test Avro's Hadoop related modules with Hadoop 3
> 
>
> Key: AVRO-2318
> URL: https://issues.apache.org/jira/browse/AVRO-2318
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Ismaël Mejía
>Priority: Major
> Fix For: 1.9.0
>
>
> We should provide a way to support Hadoop 3 or at least to ensure that Avro's 
> existing codebase does not break if Hadoop's `hadoop-client` library is 
> passed on version 3.x



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-2318) Test Avro's Hadoop related modules with Hadoop 3

2019-04-08 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-2318?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16812572#comment-16812572
 ] 

ASF subversion and git services commented on AVRO-2318:
---

Commit a02495613d514e984ff486f334890099b1c922e7 in avro's branch 
refs/heads/master from Ismaël Mejía
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=a024956 ]

AVRO-2318: Add hadoop3 profile run to validate support of Hadoop 3

Notice that hadoop 3 uses a version of jetty that does not depend on
jetty-util so we need to explictly add it to ipc-jetty to avoid runtime
issues (ClassNotFoundException) in Avro's tools with Hadoop 3.


> Test Avro's Hadoop related modules with Hadoop 3
> 
>
> Key: AVRO-2318
> URL: https://issues.apache.org/jira/browse/AVRO-2318
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.9.0
>
>
> We should provide a way to support Hadoop 3 or at least to ensure that Avro's 
> existing codebase does not break if Hadoop's `hadoop-client` library is 
> passed on version 3.x



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (AVRO-2371) How can import one "avrofile" in another "avrofile" like java import

2019-04-08 Thread Bheema (JIRA)
Bheema created AVRO-2371:


 Summary: How can import one "avrofile" in another "avrofile" like 
java import
 Key: AVRO-2371
 URL: https://issues.apache.org/jira/browse/AVRO-2371
 Project: Apache Avro
  Issue Type: Improvement
Reporter: Bheema


{
 "type": "record",
 "name": "User",
 "namespace": "example.avro",
 "fields": [
 \{"name": "name", "type": "string"},
 \{"name": "favorite_number", "type": ["int", "null"]},
 \{"name": "favorite_color", "type": ["string", "null"]}
 ]
}

 

 

{"namespace": "example.avro",
 "type": "record",
 {color:#FF}*"imports": ["user.avsc"],*{color}
 "name": "Department",
 "fields": [
 \{"name": "name", "type": "string"},
 \{"name": "favorite_number", "type": ["int", "null"]},
 \{"name": "favorite_color", "type": ["string", "null"]},
 \{"name": "user","type": ["User"]}
 ]
}

 

Input files to compile:
 avro\linking\Department.avsc
Exception in thread "main" org.apache.avro.SchemaParseException: Undefined 
name: "User"
 at org.apache.avro.Schema.parse(Schema.java:1228)
 at org.apache.avro.Schema.parse(Schema.java:1340)
 at org.apache.avro.Schema.parse(Schema.java:1269)
 at org.apache.avro.Schema$Parser.parse(Schema.java:1032)
 at org.apache.avro.Schema$Parser.parse(Schema.java:997)
 at org.apache.avro.tool.SpecificCompilerTool.run(SpecificCompilerTool.java:92)
 at org.apache.avro.tool.Main.run(Main.java:87)
 at org.apache.avro.tool.Main.main(Main.java:76)

 

 

 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (AVRO-2318) Test Avro's Hadoop related modules with Hadoop 3

2019-04-08 Thread JIRA


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

Ismaël Mejía updated AVRO-2318:
---
Summary: Test Avro's Hadoop related modules with Hadoop 3  (was: Support 
Hadoop 3)

> Test Avro's Hadoop related modules with Hadoop 3
> 
>
> Key: AVRO-2318
> URL: https://issues.apache.org/jira/browse/AVRO-2318
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.9.0
>
>
> We should provide a way to support Hadoop 3 or at least to ensure that Avro's 
> existing codebase does not break if Hadoop's `hadoop-client` library is 
> passed on version 3.x



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-2370) Update snappy to version 1.1.7.3

2019-04-08 Thread Hudson (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-2370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16812291#comment-16812291
 ] 

Hudson commented on AVRO-2370:
--

SUCCESS: Integrated in Jenkins build AvroJava #646 (See 
[https://builds.apache.org/job/AvroJava/646/])
AVRO-2370: Update snappy to version 1.1.7.3 (iemejia: 
[https://github.com/apache/avro/commit/c847de572528d64dfa28ad5a3a67deac692c3fe1])
* (edit) lang/java/pom.xml


> Update snappy to version 1.1.7.3
> 
>
> Key: AVRO-2370
> URL: https://issues.apache.org/jira/browse/AVRO-2370
> Project: Apache Avro
>  Issue Type: Improvement
>Reporter: Ismaël Mejía
>Assignee: Ismaël Mejía
>Priority: Minor
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-2315) Update zstd-jni to version 1.3.8-6

2019-04-08 Thread Hudson (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-2315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16812290#comment-16812290
 ] 

Hudson commented on AVRO-2315:
--

SUCCESS: Integrated in Jenkins build AvroJava #646 (See 
[https://builds.apache.org/job/AvroJava/646/])
AVRO-2315 Update zstd-jni to version 1.3.8-6 (iemejia: 
[https://github.com/apache/avro/commit/95534f4ca63293fc51df3a533f07b5a9cae7f473])
* (edit) lang/java/pom.xml


> Update zstd-jni to version 1.3.8-6
> --
>
> Key: AVRO-2315
> URL: https://issues.apache.org/jira/browse/AVRO-2315
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.9.0
>Reporter: Ismaël Mejía
>Assignee: Ismaël Mejía
>Priority: Minor
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-2319) Update grpc to version 1.19.0

2019-04-08 Thread Hudson (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-2319?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16812292#comment-16812292
 ] 

Hudson commented on AVRO-2319:
--

SUCCESS: Integrated in Jenkins build AvroJava #646 (See 
[https://builds.apache.org/job/AvroJava/646/])
AVRO-2319: Update grpc to version 1.19.0 (iemejia: 
[https://github.com/apache/avro/commit/d0354df648e8b0067f87ee162edf322dff60523c])
* (edit) lang/java/pom.xml


> Update grpc to version 1.19.0
> -
>
> Key: AVRO-2319
> URL: https://issues.apache.org/jira/browse/AVRO-2319
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Ismaël Mejía
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (AVRO-2319) Update grpc to version 1.19.0

2019-04-08 Thread JIRA


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

Ismaël Mejía updated AVRO-2319:
---
Summary: Update grpc to version 1.19.0  (was: AVRO-2319: Update grpc to 
version 1.19.0)

> Update grpc to version 1.19.0
> -
>
> Key: AVRO-2319
> URL: https://issues.apache.org/jira/browse/AVRO-2319
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Ismaël Mejía
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-2319) AVRO-2319: Update grpc to version 1.19.0

2019-04-08 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-2319?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16812263#comment-16812263
 ] 

ASF subversion and git services commented on AVRO-2319:
---

Commit d0354df648e8b0067f87ee162edf322dff60523c in avro's branch 
refs/heads/master from Ismaël Mejía
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=d0354df ]

AVRO-2319: Update grpc to version 1.19.0


> AVRO-2319: Update grpc to version 1.19.0
> 
>
> Key: AVRO-2319
> URL: https://issues.apache.org/jira/browse/AVRO-2319
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Ismaël Mejía
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-2315) Update zstd-jni to version 1.3.8-6

2019-04-08 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-2315?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16812261#comment-16812261
 ] 

ASF subversion and git services commented on AVRO-2315:
---

Commit 95534f4ca63293fc51df3a533f07b5a9cae7f473 in avro's branch 
refs/heads/master from Ismaël Mejía
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=95534f4 ]

AVRO-2315 Update zstd-jni to version 1.3.8-6


> Update zstd-jni to version 1.3.8-6
> --
>
> Key: AVRO-2315
> URL: https://issues.apache.org/jira/browse/AVRO-2315
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.9.0
>Reporter: Ismaël Mejía
>Assignee: Ismaël Mejía
>Priority: Minor
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (AVRO-2370) Update snappy to version 1.1.7.3

2019-04-08 Thread JIRA


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

Ismaël Mejía resolved AVRO-2370.

Resolution: Fixed

> Update snappy to version 1.1.7.3
> 
>
> Key: AVRO-2370
> URL: https://issues.apache.org/jira/browse/AVRO-2370
> Project: Apache Avro
>  Issue Type: Improvement
>Reporter: Ismaël Mejía
>Assignee: Ismaël Mejía
>Priority: Minor
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (AVRO-2370) Update snappy to version 1.1.7.3

2019-04-08 Thread ASF subversion and git services (JIRA)


[ 
https://issues.apache.org/jira/browse/AVRO-2370?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16812262#comment-16812262
 ] 

ASF subversion and git services commented on AVRO-2370:
---

Commit c847de572528d64dfa28ad5a3a67deac692c3fe1 in avro's branch 
refs/heads/master from Ismaël Mejía
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=c847de5 ]

AVRO-2370: Update snappy to version 1.1.7.3


> Update snappy to version 1.1.7.3
> 
>
> Key: AVRO-2370
> URL: https://issues.apache.org/jira/browse/AVRO-2370
> Project: Apache Avro
>  Issue Type: Improvement
>Reporter: Ismaël Mejía
>Assignee: Ismaël Mejía
>Priority: Minor
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (AVRO-2319) AVRO-2319: Update grpc to version 1.19.0

2019-04-08 Thread JIRA


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

Ismaël Mejía resolved AVRO-2319.

Resolution: Fixed

> AVRO-2319: Update grpc to version 1.19.0
> 
>
> Key: AVRO-2319
> URL: https://issues.apache.org/jira/browse/AVRO-2319
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Ismaël Mejía
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Resolved] (AVRO-2315) Update zstd-jni to version 1.3.8-6

2019-04-08 Thread JIRA


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

Ismaël Mejía resolved AVRO-2315.

Resolution: Fixed

> Update zstd-jni to version 1.3.8-6
> --
>
> Key: AVRO-2315
> URL: https://issues.apache.org/jira/browse/AVRO-2315
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.9.0
>Reporter: Ismaël Mejía
>Assignee: Ismaël Mejía
>Priority: Minor
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Issue Comment Deleted] (AVRO-2318) Support Hadoop 3

2019-04-08 Thread JIRA


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

Ismaël Mejía updated AVRO-2318:
---
Comment: was deleted

(was: I removed fix version because this one seems to be contentious and 
probably worth of re checking it for 2.10.0)

> Support Hadoop 3
> 
>
> Key: AVRO-2318
> URL: https://issues.apache.org/jira/browse/AVRO-2318
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
>
> We should provide a way to support Hadoop 3 or at least to ensure that Avro's 
> existing codebase does not break if Hadoop's `hadoop-client` library is 
> passed on version 3.x



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (AVRO-2318) Support Hadoop 3

2019-04-08 Thread JIRA


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

Ismaël Mejía updated AVRO-2318:
---
Description: We should provide a way to support Hadoop 3 or at least to 
ensure that Avro's existing codebase does not break if Hadoop's `hadoop-client` 
library is passed on version 3.x

> Support Hadoop 3
> 
>
> Key: AVRO-2318
> URL: https://issues.apache.org/jira/browse/AVRO-2318
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
>
> We should provide a way to support Hadoop 3 or at least to ensure that Avro's 
> existing codebase does not break if Hadoop's `hadoop-client` library is 
> passed on version 3.x



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (AVRO-2318) Support Hadoop 3

2019-04-08 Thread JIRA


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

Ismaël Mejía updated AVRO-2318:
---
Summary: Support Hadoop 3  (was: Support Hadoop3 in avro-mapred)

> Support Hadoop 3
> 
>
> Key: AVRO-2318
> URL: https://issues.apache.org/jira/browse/AVRO-2318
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (AVRO-2318) Support Hadoop3 in avro-mapred

2019-04-08 Thread JIRA


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

Ismaël Mejía updated AVRO-2318:
---
Summary: Support Hadoop3 in avro-mapred  (was: Bump Hadoop to 3.x)

> Support Hadoop3 in avro-mapred
> --
>
> Key: AVRO-2318
> URL: https://issues.apache.org/jira/browse/AVRO-2318
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (AVRO-2319) AVRO-2319: Update grpc to version 1.19.0

2019-04-08 Thread JIRA


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

Ismaël Mejía updated AVRO-2319:
---
Summary: AVRO-2319: Update grpc to version 1.19.0  (was: Bump grpc.version 
from 1.17.1 to 1.19.0)

> AVRO-2319: Update grpc to version 1.19.0
> 
>
> Key: AVRO-2319
> URL: https://issues.apache.org/jira/browse/AVRO-2319
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Ismaël Mejía
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (AVRO-2319) Bump grpc.version from 1.17.1 to 1.19.0

2019-04-08 Thread JIRA


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

Ismaël Mejía updated AVRO-2319:
---
Summary: Bump grpc.version from 1.17.1 to 1.19.0  (was: Bump grpc.version 
from 1.17.1 to 1.18.0)

> Bump grpc.version from 1.17.1 to 1.19.0
> ---
>
> Key: AVRO-2319
> URL: https://issues.apache.org/jira/browse/AVRO-2319
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Ismaël Mejía
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Reopened] (AVRO-2319) Bump grpc.version from 1.17.1 to 1.18.0

2019-04-08 Thread JIRA


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

Ismaël Mejía reopened AVRO-2319:

  Assignee: Ismaël Mejía  (was: Fokko Driesprong)

Reopened just to update it to 1.19.0

> Bump grpc.version from 1.17.1 to 1.18.0
> ---
>
> Key: AVRO-2319
> URL: https://issues.apache.org/jira/browse/AVRO-2319
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.8.2
>Reporter: Fokko Driesprong
>Assignee: Ismaël Mejía
>Priority: Major
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (AVRO-2370) Update snappy to version 1.1.7.3

2019-04-08 Thread JIRA


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

Ismaël Mejía updated AVRO-2370:
---
Fix Version/s: 1.9.0

> Update snappy to version 1.1.7.3
> 
>
> Key: AVRO-2370
> URL: https://issues.apache.org/jira/browse/AVRO-2370
> Project: Apache Avro
>  Issue Type: Improvement
>Reporter: Ismaël Mejía
>Assignee: Ismaël Mejía
>Priority: Minor
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (AVRO-1978) Update snappy version to 1.1.2.6

2019-04-08 Thread JIRA


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

Ismaël Mejía updated AVRO-1978:
---
Fix Version/s: (was: 1.9.0)

> Update snappy version to 1.1.2.6
> 
>
> Key: AVRO-1978
> URL: https://issues.apache.org/jira/browse/AVRO-1978
> Project: Apache Avro
>  Issue Type: Task
>  Components: java
>Affects Versions: 1.8.1
>Reporter: Bharat Viswanadham
>Assignee: Bharat Viswanadham
>Priority: Major
> Attachments: AVRO-1978.PATCH
>
>
> Update snappy version to 1.1.2.6 which has improved performance and also 
> resolved snappy compression errors



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (AVRO-1978) Update snappy version to 1.1.2.6

2019-04-08 Thread JIRA


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

Ismaël Mejía updated AVRO-1978:
---
Fix Version/s: 1.9.0

> Update snappy version to 1.1.2.6
> 
>
> Key: AVRO-1978
> URL: https://issues.apache.org/jira/browse/AVRO-1978
> Project: Apache Avro
>  Issue Type: Task
>  Components: java
>Affects Versions: 1.8.1
>Reporter: Bharat Viswanadham
>Assignee: Bharat Viswanadham
>Priority: Major
> Fix For: 1.9.0
>
> Attachments: AVRO-1978.PATCH
>
>
> Update snappy version to 1.1.2.6 which has improved performance and also 
> resolved snappy compression errors



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Created] (AVRO-2370) Update snappy to version 1.1.7.3

2019-04-08 Thread JIRA
Ismaël Mejía created AVRO-2370:
--

 Summary: Update snappy to version 1.1.7.3
 Key: AVRO-2370
 URL: https://issues.apache.org/jira/browse/AVRO-2370
 Project: Apache Avro
  Issue Type: Improvement
Reporter: Ismaël Mejía
Assignee: Ismaël Mejía






--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Reopened] (AVRO-2315) Update zstd-jni to version 1.3.8-6

2019-04-08 Thread JIRA


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

Ismaël Mejía reopened AVRO-2315:


Reopened just to pump the version up.

> Update zstd-jni to version 1.3.8-6
> --
>
> Key: AVRO-2315
> URL: https://issues.apache.org/jira/browse/AVRO-2315
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.9.0
>Reporter: Ismaël Mejía
>Assignee: Ismaël Mejía
>Priority: Minor
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Updated] (AVRO-2315) Update zstd-jni to version 1.3.8-6

2019-04-08 Thread JIRA


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

Ismaël Mejía updated AVRO-2315:
---
Summary: Update zstd-jni to version 1.3.8-6  (was: Update zstd-jni to 
version 1.3.8-3)

> Update zstd-jni to version 1.3.8-6
> --
>
> Key: AVRO-2315
> URL: https://issues.apache.org/jira/browse/AVRO-2315
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Affects Versions: 1.9.0
>Reporter: Ismaël Mejía
>Assignee: Ismaël Mejía
>Priority: Minor
> Fix For: 1.9.0
>
>




--
This message was sent by Atlassian JIRA
(v7.6.3#76005)