[jira] [Commented] (AVRO-2588) DatumWriter does not serialize bytes-typed fields

2019-10-09 Thread Jacob Tolar (Jira)


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

Jacob Tolar commented on AVRO-2588:
---

I don't see anything broken here.

>From your example:
{code:java}
ByteBuffer binaryData = ByteBuffer.allocate(SAMPLE_BYTES.length);
binaryData.put(SAMPLE_BYTES);

MyRecord row = MyRecord.newBuilder()
 .setTag("Sample row")
 .setBigintCol(12345678901234L)
 .setBinaryCol(binaryData)
 .setBooleanCol(false)

 .build()
 ;

// serialize the row into the outgoing byte stream
datumWriter.write(row, encoder);
encoder.flush();
output.flush();
output.getFD().sync();
output.close();
 {code}
 

I think you forgot to {{rewind}} your ByteBuffer? 

 

> DatumWriter does not serialize bytes-typed fields
> -
>
> Key: AVRO-2588
> URL: https://issues.apache.org/jira/browse/AVRO-2588
> Project: Apache Avro
>  Issue Type: Bug
>  Components: java
>Affects Versions: 1.9.1
>Reporter: Richard N. Hillegas
>Priority: Major
> Attachments: avroByteSerialization.tar
>
>
> When you use a DatumWriter to serialize a record, fields of "bytes" type are 
> NOT serialized. You have to hand-serialize these fields using 
> BinaryEncoder.writeBytes().
> I will attach a sample program which demonstrates this problem.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Assigned] (AVRO-2589) Java (trevni) codec testing improvements

2019-10-09 Thread Jacob Tolar (Jira)


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

Jacob Tolar reassigned AVRO-2589:
-

Assignee: Jacob Tolar

> Java (trevni) codec testing improvements
> 
>
> Key: AVRO-2589
> URL: https://issues.apache.org/jira/browse/AVRO-2589
> Project: Apache Avro
>  Issue Type: Improvement
>Reporter: Jacob Tolar
>Assignee: Jacob Tolar
>Priority: Major
>
> In https://issues.apache.org/jira/browse/AVRO-2245 I made some improvements 
> to compression codec tests and it was suggested there to make the same 
> changes for trevni. 
>  
> The same fixes for improving behavior of sliced ByteBuffers can also be made. 
>  
> The trevni code is mostly duplicated from what is in avro-core; in the future 
> perhaps these could be combined into a single interface and codebase. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (AVRO-2589) Java (trevni) codec testing improvements

2019-10-09 Thread Jacob Tolar (Jira)
Jacob Tolar created AVRO-2589:
-

 Summary: Java (trevni) codec testing improvements
 Key: AVRO-2589
 URL: https://issues.apache.org/jira/browse/AVRO-2589
 Project: Apache Avro
  Issue Type: Improvement
Reporter: Jacob Tolar


In https://issues.apache.org/jira/browse/AVRO-2245 I made some improvements to 
compression codec tests and it was suggested there to make the same changes for 
trevni. 

 

The same fixes for improving behavior of sliced ByteBuffers can also be made. 

 

The trevni code is mostly duplicated from what is in avro-core; in the future 
perhaps these could be combined into a single interface and codebase. 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2587) Upgrade jackson to 2.10.0

2019-10-09 Thread Hudson (Jira)


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

Hudson commented on AVRO-2587:
--

SUCCESS: Integrated in Jenkins build AvroJava #745 (See 
[https://builds.apache.org/job/AvroJava/745/])
AVRO-2587: Upgrade jackson to 2.10.0 (#675) (nandorkollar: 
[https://github.com/apache/avro/commit/2b75804d73fa3a8d4d25be2f79aa772f5965bbcd])
* (edit) lang/java/pom.xml
* (edit) lang/java/avro/src/main/java/org/apache/avro/SchemaBuilder.java


> Upgrade jackson to 2.10.0
> -
>
> Key: AVRO-2587
> URL: https://issues.apache.org/jira/browse/AVRO-2587
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.0
>Reporter: Ana
>Assignee: Ana
>Priority: Major
> Fix For: 1.10.0
>
>
> The new minor version of jackson is available, bumping the version will make 
> it easier to address future issues and vulnerabilities.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2583) Bump grpc.version from 1.23.0 to 1.24.0

2019-10-09 Thread Hudson (Jira)


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

Hudson commented on AVRO-2583:
--

SUCCESS: Integrated in Jenkins build AvroJava #745 (See 
[https://builds.apache.org/job/AvroJava/745/])
AVRO-2583: Bump grpc.version from 1.23.0 to 1.24.0 (#670) (nandorkollar: 
[https://github.com/apache/avro/commit/4cd5b8d804279eb670cbfdf0a0b08311e92d29a7])
* (edit) lang/java/pom.xml


> Bump grpc.version from 1.23.0 to 1.24.0
> ---
>
> Key: AVRO-2583
> URL: https://issues.apache.org/jira/browse/AVRO-2583
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2585) Bump jetty.version from 9.4.20.v20190813 to 9.4.21.v20190926

2019-10-09 Thread Hudson (Jira)


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

Hudson commented on AVRO-2585:
--

SUCCESS: Integrated in Jenkins build AvroJava #745 (See 
[https://builds.apache.org/job/AvroJava/745/])
AVRO-2585: Bump jetty.version from 9.4.20.v20190813 to 9.4.21.v20190926 
(nandorkollar: 
[https://github.com/apache/avro/commit/6a5ef2beabe52fb8612c807f424fc6cc64dacd2b])
* (edit) lang/java/pom.xml


> Bump jetty.version from 9.4.20.v20190813 to 9.4.21.v20190926
> 
>
> Key: AVRO-2585
> URL: https://issues.apache.org/jira/browse/AVRO-2585
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2582) Bump protobuf-java from 3.9.1 to 3.10.0

2019-10-09 Thread Hudson (Jira)


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

Hudson commented on AVRO-2582:
--

SUCCESS: Integrated in Jenkins build AvroJava #745 (See 
[https://builds.apache.org/job/AvroJava/745/])
AVRO-2582: Bump protobuf-java from 3.9.1 to 3.10.0 (#671) (nandorkollar: 
[https://github.com/apache/avro/commit/d99e2c2460ff305e92a9b103a9db441a0150ae81])
* (edit) lang/java/pom.xml


> Bump protobuf-java from 3.9.1 to 3.10.0
> ---
>
> Key: AVRO-2582
> URL: https://issues.apache.org/jira/browse/AVRO-2582
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2576) setuptools imports pycodestyle prematurely

2019-10-09 Thread Hudson (Jira)


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

Hudson commented on AVRO-2576:
--

SUCCESS: Integrated in Jenkins build AvroJava #745 (See 
[https://builds.apache.org/job/AvroJava/745/])
AVRO-2576: Fix Premature Import pycodestyle (#664) (nandorkollar: 
[https://github.com/apache/avro/commit/097ff2d69b52cddb249ea27c89bea7059f6a79df])
* (edit) lang/py/.gitignore
* (edit) lang/py/setup.cfg
* (edit) lang/py/src/avro/tether/tether_task_runner.py
* (edit) lang/py3/setup.cfg
* (edit) LICENSE.txt
* (edit) lang/py/setup.py
* (edit) lang/py3/setup.py
* (edit) share/docker/Dockerfile
* (edit) lang/py/src/avro/protocol.py
* (edit) lang/py/build.sh
* (edit) lang/py3/.gitignore
* (edit) pom.xml


> setuptools imports pycodestyle prematurely
> --
>
> Key: AVRO-2576
> URL: https://issues.apache.org/jira/browse/AVRO-2576
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> Trying to {{pip install -e}} in avro/lang/py3 leads to a failure:
>  
> {noformat}
>  $ pip install -e .
> Looking in indexes: https://pypi.org/simple, 
> https://40bf213c9f242207e515ffbe97ea98c1655548e584e42898:@packagecloud.io/syapse/General/pypi/simple
> Obtaining file:///home/michaels/dev/avro/lang/py3
> Complete output from command python setup.py egg_info:
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/home/michaels/dev/avro/lang/py3/setup.py", line 38, in 
> import pycodestyle
> ImportError: No module named 'pycodestyle'
> 
> Command "python setup.py egg_info" failed with error code 1 in 
> /home/michaels/dev/avro/lang/py3/{noformat}
> This is because AVRO-2240 / [https://github.com/apache/avro/pull/347] 
> introduces {{import pycodestyle}} into {{setup.py}} even though it is never 
> used directly as a module in there.
>  
> Mea culpa.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2586) Bump spotless-maven-plugin from 1.24.1 to 1.25.1

2019-10-09 Thread Hudson (Jira)


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

Hudson commented on AVRO-2586:
--

SUCCESS: Integrated in Jenkins build AvroJava #745 (See 
[https://builds.apache.org/job/AvroJava/745/])
AVRO-2586: Bump spotless-maven-plugin from 1.24.1 to 1.25.1 (#674) 
(nandorkollar: 
[https://github.com/apache/avro/commit/21a30042cf6b8704d440497088ede85afa17aee0])
* (edit) pom.xml


> Bump spotless-maven-plugin from 1.24.1 to 1.25.1
> 
>
> Key: AVRO-2586
> URL: https://issues.apache.org/jira/browse/AVRO-2586
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2576) setuptools imports pycodestyle prematurely

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 097ff2d69b52cddb249ea27c89bea7059f6a79df in avro's branch 
refs/heads/master from Michael A. Smith
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=097ff2d ]

AVRO-2576: Fix Premature Import pycodestyle (#664)

* AVRO-2445: Remove SimpleJSON License and Rat Excludes

* AVRO-2576: Fix Premature Import pycodestyle

* AVRO-2576: Run pycodestyle from setup for py2

* AVRO-2576: Fix and Ignore Lint Failures

* AVRO-2576: Update Setuptools

* AVRO-2576: Use Local pycodestyle If We Can

* AVRO-2576: Run isort from setuptools

* AVRO-2576: Include isort at setuptools time

* AVRO-2576: Rat Exclude Python Setup Files


> setuptools imports pycodestyle prematurely
> --
>
> Key: AVRO-2576
> URL: https://issues.apache.org/jira/browse/AVRO-2576
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> Trying to {{pip install -e}} in avro/lang/py3 leads to a failure:
>  
> {noformat}
>  $ pip install -e .
> Looking in indexes: https://pypi.org/simple, 
> https://40bf213c9f242207e515ffbe97ea98c1655548e584e42898:@packagecloud.io/syapse/General/pypi/simple
> Obtaining file:///home/michaels/dev/avro/lang/py3
> Complete output from command python setup.py egg_info:
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/home/michaels/dev/avro/lang/py3/setup.py", line 38, in 
> import pycodestyle
> ImportError: No module named 'pycodestyle'
> 
> Command "python setup.py egg_info" failed with error code 1 in 
> /home/michaels/dev/avro/lang/py3/{noformat}
> This is because AVRO-2240 / [https://github.com/apache/avro/pull/347] 
> introduces {{import pycodestyle}} into {{setup.py}} even though it is never 
> used directly as a module in there.
>  
> Mea culpa.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2576) setuptools imports pycodestyle prematurely

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 097ff2d69b52cddb249ea27c89bea7059f6a79df in avro's branch 
refs/heads/master from Michael A. Smith
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=097ff2d ]

AVRO-2576: Fix Premature Import pycodestyle (#664)

* AVRO-2445: Remove SimpleJSON License and Rat Excludes

* AVRO-2576: Fix Premature Import pycodestyle

* AVRO-2576: Run pycodestyle from setup for py2

* AVRO-2576: Fix and Ignore Lint Failures

* AVRO-2576: Update Setuptools

* AVRO-2576: Use Local pycodestyle If We Can

* AVRO-2576: Run isort from setuptools

* AVRO-2576: Include isort at setuptools time

* AVRO-2576: Rat Exclude Python Setup Files


> setuptools imports pycodestyle prematurely
> --
>
> Key: AVRO-2576
> URL: https://issues.apache.org/jira/browse/AVRO-2576
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> Trying to {{pip install -e}} in avro/lang/py3 leads to a failure:
>  
> {noformat}
>  $ pip install -e .
> Looking in indexes: https://pypi.org/simple, 
> https://40bf213c9f242207e515ffbe97ea98c1655548e584e42898:@packagecloud.io/syapse/General/pypi/simple
> Obtaining file:///home/michaels/dev/avro/lang/py3
> Complete output from command python setup.py egg_info:
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/home/michaels/dev/avro/lang/py3/setup.py", line 38, in 
> import pycodestyle
> ImportError: No module named 'pycodestyle'
> 
> Command "python setup.py egg_info" failed with error code 1 in 
> /home/michaels/dev/avro/lang/py3/{noformat}
> This is because AVRO-2240 / [https://github.com/apache/avro/pull/347] 
> introduces {{import pycodestyle}} into {{setup.py}} even though it is never 
> used directly as a module in there.
>  
> Mea culpa.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2576) setuptools imports pycodestyle prematurely

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 097ff2d69b52cddb249ea27c89bea7059f6a79df in avro's branch 
refs/heads/master from Michael A. Smith
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=097ff2d ]

AVRO-2576: Fix Premature Import pycodestyle (#664)

* AVRO-2445: Remove SimpleJSON License and Rat Excludes

* AVRO-2576: Fix Premature Import pycodestyle

* AVRO-2576: Run pycodestyle from setup for py2

* AVRO-2576: Fix and Ignore Lint Failures

* AVRO-2576: Update Setuptools

* AVRO-2576: Use Local pycodestyle If We Can

* AVRO-2576: Run isort from setuptools

* AVRO-2576: Include isort at setuptools time

* AVRO-2576: Rat Exclude Python Setup Files


> setuptools imports pycodestyle prematurely
> --
>
> Key: AVRO-2576
> URL: https://issues.apache.org/jira/browse/AVRO-2576
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> Trying to {{pip install -e}} in avro/lang/py3 leads to a failure:
>  
> {noformat}
>  $ pip install -e .
> Looking in indexes: https://pypi.org/simple, 
> https://40bf213c9f242207e515ffbe97ea98c1655548e584e42898:@packagecloud.io/syapse/General/pypi/simple
> Obtaining file:///home/michaels/dev/avro/lang/py3
> Complete output from command python setup.py egg_info:
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/home/michaels/dev/avro/lang/py3/setup.py", line 38, in 
> import pycodestyle
> ImportError: No module named 'pycodestyle'
> 
> Command "python setup.py egg_info" failed with error code 1 in 
> /home/michaels/dev/avro/lang/py3/{noformat}
> This is because AVRO-2240 / [https://github.com/apache/avro/pull/347] 
> introduces {{import pycodestyle}} into {{setup.py}} even though it is never 
> used directly as a module in there.
>  
> Mea culpa.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2576) setuptools imports pycodestyle prematurely

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 097ff2d69b52cddb249ea27c89bea7059f6a79df in avro's branch 
refs/heads/master from Michael A. Smith
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=097ff2d ]

AVRO-2576: Fix Premature Import pycodestyle (#664)

* AVRO-2445: Remove SimpleJSON License and Rat Excludes

* AVRO-2576: Fix Premature Import pycodestyle

* AVRO-2576: Run pycodestyle from setup for py2

* AVRO-2576: Fix and Ignore Lint Failures

* AVRO-2576: Update Setuptools

* AVRO-2576: Use Local pycodestyle If We Can

* AVRO-2576: Run isort from setuptools

* AVRO-2576: Include isort at setuptools time

* AVRO-2576: Rat Exclude Python Setup Files


> setuptools imports pycodestyle prematurely
> --
>
> Key: AVRO-2576
> URL: https://issues.apache.org/jira/browse/AVRO-2576
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> Trying to {{pip install -e}} in avro/lang/py3 leads to a failure:
>  
> {noformat}
>  $ pip install -e .
> Looking in indexes: https://pypi.org/simple, 
> https://40bf213c9f242207e515ffbe97ea98c1655548e584e42898:@packagecloud.io/syapse/General/pypi/simple
> Obtaining file:///home/michaels/dev/avro/lang/py3
> Complete output from command python setup.py egg_info:
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/home/michaels/dev/avro/lang/py3/setup.py", line 38, in 
> import pycodestyle
> ImportError: No module named 'pycodestyle'
> 
> Command "python setup.py egg_info" failed with error code 1 in 
> /home/michaels/dev/avro/lang/py3/{noformat}
> This is because AVRO-2240 / [https://github.com/apache/avro/pull/347] 
> introduces {{import pycodestyle}} into {{setup.py}} even though it is never 
> used directly as a module in there.
>  
> Mea culpa.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Resolved] (AVRO-2576) setuptools imports pycodestyle prematurely

2019-10-09 Thread Jira


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

Nándor Kollár resolved AVRO-2576.
-
Resolution: Fixed

> setuptools imports pycodestyle prematurely
> --
>
> Key: AVRO-2576
> URL: https://issues.apache.org/jira/browse/AVRO-2576
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> Trying to {{pip install -e}} in avro/lang/py3 leads to a failure:
>  
> {noformat}
>  $ pip install -e .
> Looking in indexes: https://pypi.org/simple, 
> https://40bf213c9f242207e515ffbe97ea98c1655548e584e42898:@packagecloud.io/syapse/General/pypi/simple
> Obtaining file:///home/michaels/dev/avro/lang/py3
> Complete output from command python setup.py egg_info:
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/home/michaels/dev/avro/lang/py3/setup.py", line 38, in 
> import pycodestyle
> ImportError: No module named 'pycodestyle'
> 
> Command "python setup.py egg_info" failed with error code 1 in 
> /home/michaels/dev/avro/lang/py3/{noformat}
> This is because AVRO-2240 / [https://github.com/apache/avro/pull/347] 
> introduces {{import pycodestyle}} into {{setup.py}} even though it is never 
> used directly as a module in there.
>  
> Mea culpa.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2576) setuptools imports pycodestyle prematurely

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 097ff2d69b52cddb249ea27c89bea7059f6a79df in avro's branch 
refs/heads/master from Michael A. Smith
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=097ff2d ]

AVRO-2576: Fix Premature Import pycodestyle (#664)

* AVRO-2445: Remove SimpleJSON License and Rat Excludes

* AVRO-2576: Fix Premature Import pycodestyle

* AVRO-2576: Run pycodestyle from setup for py2

* AVRO-2576: Fix and Ignore Lint Failures

* AVRO-2576: Update Setuptools

* AVRO-2576: Use Local pycodestyle If We Can

* AVRO-2576: Run isort from setuptools

* AVRO-2576: Include isort at setuptools time

* AVRO-2576: Rat Exclude Python Setup Files


> setuptools imports pycodestyle prematurely
> --
>
> Key: AVRO-2576
> URL: https://issues.apache.org/jira/browse/AVRO-2576
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> Trying to {{pip install -e}} in avro/lang/py3 leads to a failure:
>  
> {noformat}
>  $ pip install -e .
> Looking in indexes: https://pypi.org/simple, 
> https://40bf213c9f242207e515ffbe97ea98c1655548e584e42898:@packagecloud.io/syapse/General/pypi/simple
> Obtaining file:///home/michaels/dev/avro/lang/py3
> Complete output from command python setup.py egg_info:
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/home/michaels/dev/avro/lang/py3/setup.py", line 38, in 
> import pycodestyle
> ImportError: No module named 'pycodestyle'
> 
> Command "python setup.py egg_info" failed with error code 1 in 
> /home/michaels/dev/avro/lang/py3/{noformat}
> This is because AVRO-2240 / [https://github.com/apache/avro/pull/347] 
> introduces {{import pycodestyle}} into {{setup.py}} even though it is never 
> used directly as a module in there.
>  
> Mea culpa.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2576) setuptools imports pycodestyle prematurely

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 097ff2d69b52cddb249ea27c89bea7059f6a79df in avro's branch 
refs/heads/master from Michael A. Smith
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=097ff2d ]

AVRO-2576: Fix Premature Import pycodestyle (#664)

* AVRO-2445: Remove SimpleJSON License and Rat Excludes

* AVRO-2576: Fix Premature Import pycodestyle

* AVRO-2576: Run pycodestyle from setup for py2

* AVRO-2576: Fix and Ignore Lint Failures

* AVRO-2576: Update Setuptools

* AVRO-2576: Use Local pycodestyle If We Can

* AVRO-2576: Run isort from setuptools

* AVRO-2576: Include isort at setuptools time

* AVRO-2576: Rat Exclude Python Setup Files


> setuptools imports pycodestyle prematurely
> --
>
> Key: AVRO-2576
> URL: https://issues.apache.org/jira/browse/AVRO-2576
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> Trying to {{pip install -e}} in avro/lang/py3 leads to a failure:
>  
> {noformat}
>  $ pip install -e .
> Looking in indexes: https://pypi.org/simple, 
> https://40bf213c9f242207e515ffbe97ea98c1655548e584e42898:@packagecloud.io/syapse/General/pypi/simple
> Obtaining file:///home/michaels/dev/avro/lang/py3
> Complete output from command python setup.py egg_info:
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/home/michaels/dev/avro/lang/py3/setup.py", line 38, in 
> import pycodestyle
> ImportError: No module named 'pycodestyle'
> 
> Command "python setup.py egg_info" failed with error code 1 in 
> /home/michaels/dev/avro/lang/py3/{noformat}
> This is because AVRO-2240 / [https://github.com/apache/avro/pull/347] 
> introduces {{import pycodestyle}} into {{setup.py}} even though it is never 
> used directly as a module in there.
>  
> Mea culpa.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2576) setuptools imports pycodestyle prematurely

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 097ff2d69b52cddb249ea27c89bea7059f6a79df in avro's branch 
refs/heads/master from Michael A. Smith
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=097ff2d ]

AVRO-2576: Fix Premature Import pycodestyle (#664)

* AVRO-2445: Remove SimpleJSON License and Rat Excludes

* AVRO-2576: Fix Premature Import pycodestyle

* AVRO-2576: Run pycodestyle from setup for py2

* AVRO-2576: Fix and Ignore Lint Failures

* AVRO-2576: Update Setuptools

* AVRO-2576: Use Local pycodestyle If We Can

* AVRO-2576: Run isort from setuptools

* AVRO-2576: Include isort at setuptools time

* AVRO-2576: Rat Exclude Python Setup Files


> setuptools imports pycodestyle prematurely
> --
>
> Key: AVRO-2576
> URL: https://issues.apache.org/jira/browse/AVRO-2576
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> Trying to {{pip install -e}} in avro/lang/py3 leads to a failure:
>  
> {noformat}
>  $ pip install -e .
> Looking in indexes: https://pypi.org/simple, 
> https://40bf213c9f242207e515ffbe97ea98c1655548e584e42898:@packagecloud.io/syapse/General/pypi/simple
> Obtaining file:///home/michaels/dev/avro/lang/py3
> Complete output from command python setup.py egg_info:
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/home/michaels/dev/avro/lang/py3/setup.py", line 38, in 
> import pycodestyle
> ImportError: No module named 'pycodestyle'
> 
> Command "python setup.py egg_info" failed with error code 1 in 
> /home/michaels/dev/avro/lang/py3/{noformat}
> This is because AVRO-2240 / [https://github.com/apache/avro/pull/347] 
> introduces {{import pycodestyle}} into {{setup.py}} even though it is never 
> used directly as a module in there.
>  
> Mea culpa.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2445) Remove Python <2.7 compatibility

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 097ff2d69b52cddb249ea27c89bea7059f6a79df in avro's branch 
refs/heads/master from Michael A. Smith
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=097ff2d ]

AVRO-2576: Fix Premature Import pycodestyle (#664)

* AVRO-2445: Remove SimpleJSON License and Rat Excludes

* AVRO-2576: Fix Premature Import pycodestyle

* AVRO-2576: Run pycodestyle from setup for py2

* AVRO-2576: Fix and Ignore Lint Failures

* AVRO-2576: Update Setuptools

* AVRO-2576: Use Local pycodestyle If We Can

* AVRO-2576: Run isort from setuptools

* AVRO-2576: Include isort at setuptools time

* AVRO-2576: Rat Exclude Python Setup Files


> Remove Python <2.7 compatibility
> 
>
> Key: AVRO-2445
> URL: https://issues.apache.org/jira/browse/AVRO-2445
> Project: Apache Avro
>  Issue Type: Task
>  Components: python
>Affects Versions: 1.9.1
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> I'll send out a separate note to the dev list about this, but I would like to 
> remove all the polyfills for python 2.4, 2.5 and 2.6.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2576) setuptools imports pycodestyle prematurely

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 097ff2d69b52cddb249ea27c89bea7059f6a79df in avro's branch 
refs/heads/master from Michael A. Smith
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=097ff2d ]

AVRO-2576: Fix Premature Import pycodestyle (#664)

* AVRO-2445: Remove SimpleJSON License and Rat Excludes

* AVRO-2576: Fix Premature Import pycodestyle

* AVRO-2576: Run pycodestyle from setup for py2

* AVRO-2576: Fix and Ignore Lint Failures

* AVRO-2576: Update Setuptools

* AVRO-2576: Use Local pycodestyle If We Can

* AVRO-2576: Run isort from setuptools

* AVRO-2576: Include isort at setuptools time

* AVRO-2576: Rat Exclude Python Setup Files


> setuptools imports pycodestyle prematurely
> --
>
> Key: AVRO-2576
> URL: https://issues.apache.org/jira/browse/AVRO-2576
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> Trying to {{pip install -e}} in avro/lang/py3 leads to a failure:
>  
> {noformat}
>  $ pip install -e .
> Looking in indexes: https://pypi.org/simple, 
> https://40bf213c9f242207e515ffbe97ea98c1655548e584e42898:@packagecloud.io/syapse/General/pypi/simple
> Obtaining file:///home/michaels/dev/avro/lang/py3
> Complete output from command python setup.py egg_info:
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/home/michaels/dev/avro/lang/py3/setup.py", line 38, in 
> import pycodestyle
> ImportError: No module named 'pycodestyle'
> 
> Command "python setup.py egg_info" failed with error code 1 in 
> /home/michaels/dev/avro/lang/py3/{noformat}
> This is because AVRO-2240 / [https://github.com/apache/avro/pull/347] 
> introduces {{import pycodestyle}} into {{setup.py}} even though it is never 
> used directly as a module in there.
>  
> Mea culpa.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2576) setuptools imports pycodestyle prematurely

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 097ff2d69b52cddb249ea27c89bea7059f6a79df in avro's branch 
refs/heads/master from Michael A. Smith
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=097ff2d ]

AVRO-2576: Fix Premature Import pycodestyle (#664)

* AVRO-2445: Remove SimpleJSON License and Rat Excludes

* AVRO-2576: Fix Premature Import pycodestyle

* AVRO-2576: Run pycodestyle from setup for py2

* AVRO-2576: Fix and Ignore Lint Failures

* AVRO-2576: Update Setuptools

* AVRO-2576: Use Local pycodestyle If We Can

* AVRO-2576: Run isort from setuptools

* AVRO-2576: Include isort at setuptools time

* AVRO-2576: Rat Exclude Python Setup Files


> setuptools imports pycodestyle prematurely
> --
>
> Key: AVRO-2576
> URL: https://issues.apache.org/jira/browse/AVRO-2576
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> Trying to {{pip install -e}} in avro/lang/py3 leads to a failure:
>  
> {noformat}
>  $ pip install -e .
> Looking in indexes: https://pypi.org/simple, 
> https://40bf213c9f242207e515ffbe97ea98c1655548e584e42898:@packagecloud.io/syapse/General/pypi/simple
> Obtaining file:///home/michaels/dev/avro/lang/py3
> Complete output from command python setup.py egg_info:
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/home/michaels/dev/avro/lang/py3/setup.py", line 38, in 
> import pycodestyle
> ImportError: No module named 'pycodestyle'
> 
> Command "python setup.py egg_info" failed with error code 1 in 
> /home/michaels/dev/avro/lang/py3/{noformat}
> This is because AVRO-2240 / [https://github.com/apache/avro/pull/347] 
> introduces {{import pycodestyle}} into {{setup.py}} even though it is never 
> used directly as a module in there.
>  
> Mea culpa.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (AVRO-2576) setuptools imports pycodestyle prematurely

2019-10-09 Thread Jira


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

Nándor Kollár updated AVRO-2576:

Fix Version/s: 1.10.0

> setuptools imports pycodestyle prematurely
> --
>
> Key: AVRO-2576
> URL: https://issues.apache.org/jira/browse/AVRO-2576
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Michael A. Smith
>Assignee: Michael A. Smith
>Priority: Major
> Fix For: 1.10.0
>
>
> Trying to {{pip install -e}} in avro/lang/py3 leads to a failure:
>  
> {noformat}
>  $ pip install -e .
> Looking in indexes: https://pypi.org/simple, 
> https://40bf213c9f242207e515ffbe97ea98c1655548e584e42898:@packagecloud.io/syapse/General/pypi/simple
> Obtaining file:///home/michaels/dev/avro/lang/py3
> Complete output from command python setup.py egg_info:
> Traceback (most recent call last):
>   File "", line 1, in 
>   File "/home/michaels/dev/avro/lang/py3/setup.py", line 38, in 
> import pycodestyle
> ImportError: No module named 'pycodestyle'
> 
> Command "python setup.py egg_info" failed with error code 1 in 
> /home/michaels/dev/avro/lang/py3/{noformat}
> This is because AVRO-2240 / [https://github.com/apache/avro/pull/347] 
> introduces {{import pycodestyle}} into {{setup.py}} even though it is never 
> used directly as a module in there.
>  
> Mea culpa.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2587) Upgrade jackson to 2.10.0

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 2b75804d73fa3a8d4d25be2f79aa772f5965bbcd in avro's branch 
refs/heads/master from Ana Felisatti
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=2b75804 ]

AVRO-2587: Upgrade jackson to 2.10.0 (#675)



> Upgrade jackson to 2.10.0
> -
>
> Key: AVRO-2587
> URL: https://issues.apache.org/jira/browse/AVRO-2587
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.0
>Reporter: Ana
>Assignee: Ana
>Priority: Major
> Fix For: 1.10.0
>
>
> The new minor version of jackson is available, bumping the version will make 
> it easier to address future issues and vulnerabilities.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Resolved] (AVRO-2587) Upgrade jackson to 2.10.0

2019-10-09 Thread Jira


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

Nándor Kollár resolved AVRO-2587.
-
Resolution: Fixed

> Upgrade jackson to 2.10.0
> -
>
> Key: AVRO-2587
> URL: https://issues.apache.org/jira/browse/AVRO-2587
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.0
>Reporter: Ana
>Assignee: Ana
>Priority: Major
> Fix For: 1.10.0
>
>
> The new minor version of jackson is available, bumping the version will make 
> it easier to address future issues and vulnerabilities.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (AVRO-2587) Upgrade jackson to 2.10.0

2019-10-09 Thread Jira


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

Nándor Kollár updated AVRO-2587:

Fix Version/s: 1.10.0

> Upgrade jackson to 2.10.0
> -
>
> Key: AVRO-2587
> URL: https://issues.apache.org/jira/browse/AVRO-2587
> Project: Apache Avro
>  Issue Type: Task
>Reporter: Ana
>Assignee: Ana
>Priority: Major
> Fix For: 1.10.0
>
>
> The new minor version of jackson is available, bumping the version will make 
> it easier to address future issues and vulnerabilities.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Assigned] (AVRO-2587) Upgrade jackson to 2.10.0

2019-10-09 Thread Jira


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

Nándor Kollár reassigned AVRO-2587:
---

Assignee: Ana

> Upgrade jackson to 2.10.0
> -
>
> Key: AVRO-2587
> URL: https://issues.apache.org/jira/browse/AVRO-2587
> Project: Apache Avro
>  Issue Type: Task
>Reporter: Ana
>Assignee: Ana
>Priority: Major
>
> The new minor version of jackson is available, bumping the version will make 
> it easier to address future issues and vulnerabilities.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (AVRO-2587) Upgrade jackson to 2.10.0

2019-10-09 Thread Jira


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

Nándor Kollár updated AVRO-2587:

Affects Version/s: 1.9.0

> Upgrade jackson to 2.10.0
> -
>
> Key: AVRO-2587
> URL: https://issues.apache.org/jira/browse/AVRO-2587
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.0
>Reporter: Ana
>Assignee: Ana
>Priority: Major
> Fix For: 1.10.0
>
>
> The new minor version of jackson is available, bumping the version will make 
> it easier to address future issues and vulnerabilities.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2586) Bump spotless-maven-plugin from 1.24.1 to 1.25.1

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 21a30042cf6b8704d440497088ede85afa17aee0 in avro's branch 
refs/heads/master from Fokko Driesprong
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=21a3004 ]

AVRO-2586: Bump spotless-maven-plugin from 1.24.1 to 1.25.1 (#674)



> Bump spotless-maven-plugin from 1.24.1 to 1.25.1
> 
>
> Key: AVRO-2586
> URL: https://issues.apache.org/jira/browse/AVRO-2586
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Resolved] (AVRO-2586) Bump spotless-maven-plugin from 1.24.1 to 1.25.1

2019-10-09 Thread Jira


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

Nándor Kollár resolved AVRO-2586.
-
Resolution: Fixed

> Bump spotless-maven-plugin from 1.24.1 to 1.25.1
> 
>
> Key: AVRO-2586
> URL: https://issues.apache.org/jira/browse/AVRO-2586
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Resolved] (AVRO-2585) Bump jetty.version from 9.4.20.v20190813 to 9.4.21.v20190926

2019-10-09 Thread Jira


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

Nándor Kollár resolved AVRO-2585.
-
Resolution: Fixed

> Bump jetty.version from 9.4.20.v20190813 to 9.4.21.v20190926
> 
>
> Key: AVRO-2585
> URL: https://issues.apache.org/jira/browse/AVRO-2585
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2585) Bump jetty.version from 9.4.20.v20190813 to 9.4.21.v20190926

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 6a5ef2beabe52fb8612c807f424fc6cc64dacd2b in avro's branch 
refs/heads/master from Fokko Driesprong
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=6a5ef2b ]

AVRO-2585: Bump jetty.version from 9.4.20.v20190813 to 9.4.21.v20190926 (#673)



> Bump jetty.version from 9.4.20.v20190813 to 9.4.21.v20190926
> 
>
> Key: AVRO-2585
> URL: https://issues.apache.org/jira/browse/AVRO-2585
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Resolved] (AVRO-2582) Bump protobuf-java from 3.9.1 to 3.10.0

2019-10-09 Thread Jira


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

Nándor Kollár resolved AVRO-2582.
-
Resolution: Fixed

> Bump protobuf-java from 3.9.1 to 3.10.0
> ---
>
> Key: AVRO-2582
> URL: https://issues.apache.org/jira/browse/AVRO-2582
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2582) Bump protobuf-java from 3.9.1 to 3.10.0

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit d99e2c2460ff305e92a9b103a9db441a0150ae81 in avro's branch 
refs/heads/master from Fokko Driesprong
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=d99e2c2 ]

AVRO-2582: Bump protobuf-java from 3.9.1 to 3.10.0 (#671)



> Bump protobuf-java from 3.9.1 to 3.10.0
> ---
>
> Key: AVRO-2582
> URL: https://issues.apache.org/jira/browse/AVRO-2582
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2583) Bump grpc.version from 1.23.0 to 1.24.0

2019-10-09 Thread ASF subversion and git services (Jira)


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

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

Commit 4cd5b8d804279eb670cbfdf0a0b08311e92d29a7 in avro's branch 
refs/heads/master from Fokko Driesprong
[ https://gitbox.apache.org/repos/asf?p=avro.git;h=4cd5b8d ]

AVRO-2583: Bump grpc.version from 1.23.0 to 1.24.0 (#670)



> Bump grpc.version from 1.23.0 to 1.24.0
> ---
>
> Key: AVRO-2583
> URL: https://issues.apache.org/jira/browse/AVRO-2583
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Resolved] (AVRO-2583) Bump grpc.version from 1.23.0 to 1.24.0

2019-10-09 Thread Jira


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

Nándor Kollár resolved AVRO-2583.
-
Resolution: Fixed

> Bump grpc.version from 1.23.0 to 1.24.0
> ---
>
> Key: AVRO-2583
> URL: https://issues.apache.org/jira/browse/AVRO-2583
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Commented] (AVRO-2588) DatumWriter does not serialize bytes-typed fields

2019-10-09 Thread Richard N. Hillegas (Jira)


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

Richard N. Hillegas commented on AVRO-2588:
---

I have attached avroByteSerialization.tar, a program which demonstrates this 
problem. Here are the contents of the README file in this tarball:

This sample program demonstrates that fields typed as "bytes" are NOT 
serialized when using a DatumWriter. However, they are serialized correctly 
when you hand-write them via a BinaryEncoder.

1) After unpacking the tarball, cd to the root of the unpacked directory tree.

2) Then issue the following command

   mvn install

3) Then issue the following command

   mvn exec:java

This will produce the following output:

  Result of serializing from an object: {"tag": "Sample row", "bigintCol": 
12345678901234, "binaryCol": "", "booleanCol": false}


  Result of hand-serializing the fields: {"tag": "Sample row 2", "bigintCol": 
12345678901235, "binaryCol": "\u000F\u000E\r", "booleanCol": true}

As you can see, the binaryCol field is empty when using the first approach but 
has the correct data when using the second approach.


> DatumWriter does not serialize bytes-typed fields
> -
>
> Key: AVRO-2588
> URL: https://issues.apache.org/jira/browse/AVRO-2588
> Project: Apache Avro
>  Issue Type: Bug
>  Components: java
>Affects Versions: 1.9.1
>Reporter: Richard N. Hillegas
>Priority: Major
> Attachments: avroByteSerialization.tar
>
>
> When you use a DatumWriter to serialize a record, fields of "bytes" type are 
> NOT serialized. You have to hand-serialize these fields using 
> BinaryEncoder.writeBytes().
> I will attach a sample program which demonstrates this problem.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (AVRO-2588) DatumWriter does not serialize bytes-typed fields

2019-10-09 Thread Richard N. Hillegas (Jira)


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

Richard N. Hillegas updated AVRO-2588:
--
Attachment: avroByteSerialization.tar

> DatumWriter does not serialize bytes-typed fields
> -
>
> Key: AVRO-2588
> URL: https://issues.apache.org/jira/browse/AVRO-2588
> Project: Apache Avro
>  Issue Type: Bug
>  Components: java
>Affects Versions: 1.9.1
>Reporter: Richard N. Hillegas
>Priority: Major
> Attachments: avroByteSerialization.tar
>
>
> When you use a DatumWriter to serialize a record, fields of "bytes" type are 
> NOT serialized. You have to hand-serialize these fields using 
> BinaryEncoder.writeBytes().
> I will attach a sample program which demonstrates this problem.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (AVRO-2588) DatumWriter does not serialize bytes-typed fields

2019-10-09 Thread Richard N. Hillegas (Jira)
Richard N. Hillegas created AVRO-2588:
-

 Summary: DatumWriter does not serialize bytes-typed fields
 Key: AVRO-2588
 URL: https://issues.apache.org/jira/browse/AVRO-2588
 Project: Apache Avro
  Issue Type: Bug
  Components: java
Affects Versions: 1.9.1
Reporter: Richard N. Hillegas


When you use a DatumWriter to serialize a record, fields of "bytes" type are 
NOT serialized. You have to hand-serialize these fields using 
BinaryEncoder.writeBytes().

I will attach a sample program which demonstrates this problem.




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (AVRO-2587) Upgrade jackson to 2.10.0

2019-10-09 Thread Ana (Jira)
Ana created AVRO-2587:
-

 Summary: Upgrade jackson to 2.10.0
 Key: AVRO-2587
 URL: https://issues.apache.org/jira/browse/AVRO-2587
 Project: Apache Avro
  Issue Type: Task
Reporter: Ana


The new minor version of jackson is available, bumping the version will make it 
easier to address future issues and vulnerabilities.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (AVRO-2586) Bump spotless-maven-plugin from 1.24.1 to 1.25.1

2019-10-09 Thread Fokko Driesprong (Jira)
Fokko Driesprong created AVRO-2586:
--

 Summary: Bump spotless-maven-plugin from 1.24.1 to 1.25.1
 Key: AVRO-2586
 URL: https://issues.apache.org/jira/browse/AVRO-2586
 Project: Apache Avro
  Issue Type: Task
Affects Versions: 1.9.1
Reporter: Fokko Driesprong
 Fix For: 1.10.0






--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Assigned] (AVRO-2586) Bump spotless-maven-plugin from 1.24.1 to 1.25.1

2019-10-09 Thread Fokko Driesprong (Jira)


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

Fokko Driesprong reassigned AVRO-2586:
--

Assignee: Fokko Driesprong

> Bump spotless-maven-plugin from 1.24.1 to 1.25.1
> 
>
> Key: AVRO-2586
> URL: https://issues.apache.org/jira/browse/AVRO-2586
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Work started] (AVRO-2586) Bump spotless-maven-plugin from 1.24.1 to 1.25.1

2019-10-09 Thread Fokko Driesprong (Jira)


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

Work on AVRO-2586 started by Fokko Driesprong.
--
> Bump spotless-maven-plugin from 1.24.1 to 1.25.1
> 
>
> Key: AVRO-2586
> URL: https://issues.apache.org/jira/browse/AVRO-2586
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Assigned] (AVRO-2585) Bump jetty.version from 9.4.20.v20190813 to 9.4.21.v20190926

2019-10-09 Thread Fokko Driesprong (Jira)


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

Fokko Driesprong reassigned AVRO-2585:
--

Assignee: Fokko Driesprong

> Bump jetty.version from 9.4.20.v20190813 to 9.4.21.v20190926
> 
>
> Key: AVRO-2585
> URL: https://issues.apache.org/jira/browse/AVRO-2585
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Work started] (AVRO-2584) Bump netty-codec-http2 from 4.1.39.Final to 4.1.42.Final

2019-10-09 Thread Fokko Driesprong (Jira)


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

Work on AVRO-2584 started by Fokko Driesprong.
--
> Bump netty-codec-http2 from 4.1.39.Final to 4.1.42.Final
> 
>
> Key: AVRO-2584
> URL: https://issues.apache.org/jira/browse/AVRO-2584
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (AVRO-2585) Bump jetty.version from 9.4.20.v20190813 to 9.4.21.v20190926

2019-10-09 Thread Fokko Driesprong (Jira)
Fokko Driesprong created AVRO-2585:
--

 Summary: Bump jetty.version from 9.4.20.v20190813 to 
9.4.21.v20190926
 Key: AVRO-2585
 URL: https://issues.apache.org/jira/browse/AVRO-2585
 Project: Apache Avro
  Issue Type: Task
Affects Versions: 1.9.1
Reporter: Fokko Driesprong
 Fix For: 1.10.0






--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Work started] (AVRO-2583) Bump grpc.version from 1.23.0 to 1.24.0

2019-10-09 Thread Fokko Driesprong (Jira)


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

Work on AVRO-2583 started by Fokko Driesprong.
--
> Bump grpc.version from 1.23.0 to 1.24.0
> ---
>
> Key: AVRO-2583
> URL: https://issues.apache.org/jira/browse/AVRO-2583
> Project: Apache Avro
>  Issue Type: Task
>Affects Versions: 1.9.1
>Reporter: Fokko Driesprong
>Assignee: Fokko Driesprong
>Priority: Major
> Fix For: 1.10.0
>
>




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (AVRO-2584) Bump netty-codec-http2 from 4.1.39.Final to 4.1.42.Final

2019-10-09 Thread Fokko Driesprong (Jira)
Fokko Driesprong created AVRO-2584:
--

 Summary: Bump netty-codec-http2 from 4.1.39.Final to 4.1.42.Final
 Key: AVRO-2584
 URL: https://issues.apache.org/jira/browse/AVRO-2584
 Project: Apache Avro
  Issue Type: Task
Affects Versions: 1.9.1
Reporter: Fokko Driesprong
Assignee: Fokko Driesprong
 Fix For: 1.10.0






--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (AVRO-2583) Bump grpc.version from 1.23.0 to 1.24.0

2019-10-09 Thread Fokko Driesprong (Jira)
Fokko Driesprong created AVRO-2583:
--

 Summary: Bump grpc.version from 1.23.0 to 1.24.0
 Key: AVRO-2583
 URL: https://issues.apache.org/jira/browse/AVRO-2583
 Project: Apache Avro
  Issue Type: Task
Affects Versions: 1.9.1
Reporter: Fokko Driesprong
Assignee: Fokko Driesprong
 Fix For: 1.10.0






--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (AVRO-2582) Bump protobuf-java from 3.9.1 to 3.10.0

2019-10-09 Thread Fokko Driesprong (Jira)
Fokko Driesprong created AVRO-2582:
--

 Summary: Bump protobuf-java from 3.9.1 to 3.10.0
 Key: AVRO-2582
 URL: https://issues.apache.org/jira/browse/AVRO-2582
 Project: Apache Avro
  Issue Type: Task
Affects Versions: 1.9.1
Reporter: Fokko Driesprong
Assignee: Fokko Driesprong
 Fix For: 1.10.0






--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (AVRO-2581) Generate @Deprecated public attribute in Java

2019-10-09 Thread Fokko Driesprong (Jira)


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

Fokko Driesprong updated AVRO-2581:
---
Status: Patch Available  (was: Open)

> Generate @Deprecated public attribute in Java
> -
>
> Key: AVRO-2581
> URL: https://issues.apache.org/jira/browse/AVRO-2581
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Reporter: Zezeng Wang
>Assignee: Zezeng Wang
>Priority: Major
>
> When using avro-maven-plugin to generate a class, the generated property 
> defaults to @Deprecated public, but the properties of the class in java 
> should be private by default.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Updated] (AVRO-2581) Generate @Deprecated public attribute in Java

2019-10-09 Thread Fokko Driesprong (Jira)


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

Fokko Driesprong updated AVRO-2581:
---
Fix Version/s: 1.10.0

> Generate @Deprecated public attribute in Java
> -
>
> Key: AVRO-2581
> URL: https://issues.apache.org/jira/browse/AVRO-2581
> Project: Apache Avro
>  Issue Type: Improvement
>  Components: java
>Reporter: Zezeng Wang
>Assignee: Zezeng Wang
>Priority: Major
> Fix For: 1.10.0
>
>
> When using avro-maven-plugin to generate a class, the generated property 
> defaults to @Deprecated public, but the properties of the class in java 
> should be private by default.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


Re: DRAFT ASF Board Report - Apache Avro October 2019

2019-10-09 Thread Driesprong, Fokko
Looks great Sean, thanks for taking care of this.

Great to see that Avro is getting more traction again.

Cheers, Fokko

Op wo 9 okt. 2019 om 17:07 schreef Niels Basjes :

> LGTM.
> +1
>
> On Wed, 9 Oct 2019, 16:06 Sean Busbey,  wrote:
>
> > I went ahead and posted the report, with one minor change noted below. I
> > can still edit it over the next few days if needed.
> >
> > On Wed, Oct 9, 2019 at 12:00 AM Sean Busbey  wrote:
> >
> > >
> > > ## Activity:
> > > The Avro project slowly is improving on our gains from the last year.
> > >
> > > We've gotten a fair bit of feedback on the 1.9.0 release and are
> working
> > > towards establishing a regular cadence for getting the result of that
> > > feedback
> > > into our downstream communities. As noted in the summary, we've gotten
> > the
> > > follow-up 1.9.1 release out after a period of approximately 4 months.
> > >
> > >
> > I added a parenthetical here to make clear that 1.9.1 is a minor release
> > (rather than a maintenance release).
> >
>


Re: DRAFT ASF Board Report - Apache Avro October 2019

2019-10-09 Thread Niels Basjes
LGTM.
+1

On Wed, 9 Oct 2019, 16:06 Sean Busbey,  wrote:

> I went ahead and posted the report, with one minor change noted below. I
> can still edit it over the next few days if needed.
>
> On Wed, Oct 9, 2019 at 12:00 AM Sean Busbey  wrote:
>
> >
> > ## Activity:
> > The Avro project slowly is improving on our gains from the last year.
> >
> > We've gotten a fair bit of feedback on the 1.9.0 release and are working
> > towards establishing a regular cadence for getting the result of that
> > feedback
> > into our downstream communities. As noted in the summary, we've gotten
> the
> > follow-up 1.9.1 release out after a period of approximately 4 months.
> >
> >
> I added a parenthetical here to make clear that 1.9.1 is a minor release
> (rather than a maintenance release).
>


Re: DRAFT ASF Board Report - Apache Avro October 2019

2019-10-09 Thread Sean Busbey
I went ahead and posted the report, with one minor change noted below. I
can still edit it over the next few days if needed.

On Wed, Oct 9, 2019 at 12:00 AM Sean Busbey  wrote:

>
> ## Activity:
> The Avro project slowly is improving on our gains from the last year.
>
> We've gotten a fair bit of feedback on the 1.9.0 release and are working
> towards establishing a regular cadence for getting the result of that
> feedback
> into our downstream communities. As noted in the summary, we've gotten the
> follow-up 1.9.1 release out after a period of approximately 4 months.
>
>
I added a parenthetical here to make clear that 1.9.1 is a minor release
(rather than a maintenance release).


[jira] [Commented] (AVRO-2498) UUID generation is not working avro 1.9 version

2019-10-09 Thread Ryan Skraba (Jira)


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

Ryan Skraba commented on AVRO-2498:
---

Great news for the maven plugin, thank you!  The missing piece for me was 
{{}} avro-maven-plugin configuration which does not exist 
for the avro-tools jar.  

I'm guessing that *far* more devs are generating specific records via the maven 
plugin than the tools jar, so that's very good news.  Is there any work to be 
done on this JIRA then?

> UUID generation is not working avro 1.9 version
> ---
>
> Key: AVRO-2498
> URL: https://issues.apache.org/jira/browse/AVRO-2498
> Project: Apache Avro
>  Issue Type: Bug
>Reporter: Raj G
>Priority: Major
>
> Hi, 
>  
> I've downloaded avro-tools 1.9 jar and trying to generate a java file from an 
> avro schema using below command
>  
> java -jar avro-tools-1.9.0.jar compile schema ./myschema.avsc  ./avro_java
>  
> and have below schema in my .avsc file to generate a UUID field
> {
>  "name": "myField",
>  "type": {
>  "type": "long",
>  "logicalType": "uuid"
>  }
> }
>  
> But this is generating a long field instead of UUID type. Please suggest.
>  



--
This message was sent by Atlassian Jira
(v8.3.4#803005)