[jira] [Resolved] (BEAM-5620) Some tests use assertItemsEqual method, not available in Python 3

2018-10-09 Thread Matthias Feys (JIRA)


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

Matthias Feys resolved BEAM-5620.
-
   Resolution: Fixed
Fix Version/s: Not applicable

> Some tests use assertItemsEqual method, not available in Python 3
> -
>
> Key: BEAM-5620
> URL: https://issues.apache.org/jira/browse/BEAM-5620
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Valentyn Tymofieiev
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>
> See: 
> https://github.com/apache/beam/search?q=assertItemsEqual_q=assertItemsEqual



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


[jira] [Commented] (BEAM-5627) Several IO tests fail in Python 3 when accessing a temporary file with TypeError: a bytes-like object is required, not 'str'

2018-10-07 Thread Matthias Feys (JIRA)


[ 
https://issues.apache.org/jira/browse/BEAM-5627?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16641075#comment-16641075
 ] 

Matthias Feys commented on BEAM-5627:
-

[~rakeshkumar] & [~splovyt]: this is caused by the test that create inputs with 
`str()`, which behaves differently between Py3 and Py2. See table 
below([source|https://timothybramlett.com/Strings_Bytes_and_Unicode_in_Python_2_and_3.html]):
 
|Python 2|this string literal is called a "str" object but its stored as bytes. 
If you prefix it with "u" you get a "unicode" object which is stored as Unicode 
code points.|
|Python 3|this string literal is a "str" object that stores Unicode code points 
by default. You can prefix it with "b" to get a bytes object or use .encode.|

Adding .encode('utf-8') will resolve these issues.

> Several IO tests fail in Python 3  when accessing a temporary file with  
> TypeError: a bytes-like object is required, not 'str'
> --
>
> Key: BEAM-5627
> URL: https://issues.apache.org/jira/browse/BEAM-5627
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Valentyn Tymofieiev
>Assignee: Rakesh Kumar
>Priority: Major
>
> ERROR: test_split_at_fraction_exhaustive 
> (apache_beam.io.source_test_utils_test.SourceTestUtilsTest)
>  --
>  Traceback (most recent call last):
>File 
> "/usr/local/google/home/valentyn/projects/beam/clean_head/beam/sdks/python/apache_beam/io/source_test_utils_test.py",
>  line 120, in test_split_at_fraction_exhaustive
>  source = self._create_source(data)
>File 
> "/usr/local/google/home/valentyn/projects/beam/clean_head/beam/sdks/python/apache_beam/io/source_test_utils_test.py",
>  line 43, in _create_source
>  source = LineSource(self._create_file_with_data(data))
>File 
> "/usr/local/google/home/valentyn/projects/beam/clean_head/beam/sdks/python/apache_beam/io/source_test_utils_test.py",
>  line 35, in _create_file_with_data
>  f.write(line + '\n')
>File 
> "/usr/local/google/home/valentyn/projects/beam/clean_head/beam/sdks/python/target/.tox/py3/lib/python3.5/tempfile.py",
>  line 622, in func_wrapper
>  return func(*args, **kwargs)
> TypeError: a bytes-like object is required, not 'str'
> Also similar:
> ==
>  ERROR: test_file_sink_writing 
> (apache_beam.io.filebasedsink_test.TestFileBasedSink)
> --
> Traceback (most recent call last):
>File 
> "/usr/local/google/home/valentyn/projects/beam/clean_head/beam/sdks/python/   
>apache_beam/io/filebasedsink_test.py", line 121, in 
> test_file_sink_writing
>   init_token, writer_results = self._common_init(sink)
> File 
> "/usr/local/google/home/valentyn/projects/beam/clean_head/beam/sdks/python/   
>apache_beam/io/filebasedsink_test.py", line 103, in _common_init
>   writer1 = sink.open_writer(init_token, '1')
> File 
> "/usr/local/google/home/valentyn/projects/beam/clean_head/beam/sdks/python/   
>apache_beam/options/value_provider.py", line 133, in _f
>   return fnc(self, *args, **kwargs)
> File 
> "/usr/local/google/home/valentyn/projects/beam/clean_head/beam/sdks/python/   
>apache_beam/io/filebasedsink.py", line 185, in open_writer
> return FileBasedSinkWriter(self, os.path.join(init_result, uid) + suffix)
> File 
> "/usr/local/google/home/valentyn/projects/beam/clean_head/beam/sdks/python/   
>apache_beam/io/filebasedsink.py", line 385, in __init__
>   self.temp_handle = self.sink.open(temp_shard_path)
> File 
> "/usr/local/google/home/valentyn/projects/beam/clean_head/beam/sdks/python/   
>apache_beam/io/filebasedsink_test.py", line 82, in open
>   file_handle.write('[start]')
>   TypeError: a bytes-like object is required, not 'str'



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


[jira] [Assigned] (BEAM-5620) Some tests use assertItemsEqual method, not available in Python 3

2018-10-06 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-5620:
---

Assignee: Matthias Feys

> Some tests use assertItemsEqual method, not available in Python 3
> -
>
> Key: BEAM-5620
> URL: https://issues.apache.org/jira/browse/BEAM-5620
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Valentyn Tymofieiev
>Assignee: Matthias Feys
>Priority: Major
>
> See: 
> https://github.com/apache/beam/search?q=assertItemsEqual_q=assertItemsEqual



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


[jira] [Assigned] (BEAM-5321) Finish Python 3 porting for transforms module

2018-10-03 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-5321:
---

Assignee: Matthias Feys  (was: Simon)

> Finish Python 3 porting for transforms module
> -
>
> Key: BEAM-5321
> URL: https://issues.apache.org/jira/browse/BEAM-5321
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
>




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


[jira] [Assigned] (BEAM-5321) Finish Python 3 porting for transforms module

2018-10-03 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-5321:
---

Assignee: Simon  (was: Matthias Feys)

> Finish Python 3 porting for transforms module
> -
>
> Key: BEAM-5321
> URL: https://issues.apache.org/jira/browse/BEAM-5321
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Simon
>Priority: Major
>




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


[jira] [Assigned] (BEAM-5321) Finish Python 3 porting for transforms module

2018-10-03 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-5321:
---

Assignee: Simon

> Finish Python 3 porting for transforms module
> -
>
> Key: BEAM-5321
> URL: https://issues.apache.org/jira/browse/BEAM-5321
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Simon
>Priority: Major
>




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


[jira] [Assigned] (BEAM-5315) Finish Python 3 porting for io module

2018-10-03 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-5315:
---

Assignee: Simon  (was: Matthias Feys)

> Finish Python 3 porting for io module
> -
>
> Key: BEAM-5315
> URL: https://issues.apache.org/jira/browse/BEAM-5315
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Simon
>Priority: Major
>




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


[jira] [Commented] (BEAM-5322) Finish Python 3 porting for typehints module

2018-10-01 Thread Matthias Feys (JIRA)


[ 
https://issues.apache.org/jira/browse/BEAM-5322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16634276#comment-16634276
 ] 

Matthias Feys commented on BEAM-5322:
-

Hi [~altay], could you assign this task to [~splovyt]? Thank you!

> Finish Python 3 porting for typehints module
> 
>
> Key: BEAM-5322
> URL: https://issues.apache.org/jira/browse/BEAM-5322
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Robbe
>Priority: Major
>




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


[jira] [Assigned] (BEAM-5315) Finish Python 3 porting for io module

2018-10-01 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-5315:
---

Assignee: Matthias Feys

> Finish Python 3 porting for io module
> -
>
> Key: BEAM-5315
> URL: https://issues.apache.org/jira/browse/BEAM-5315
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
>




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


[jira] [Commented] (BEAM-5320) Finish Python 3 porting for testing module

2018-09-18 Thread Matthias Feys (JIRA)


[ 
https://issues.apache.org/jira/browse/BEAM-5320?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16618689#comment-16618689
 ] 

Matthias Feys commented on BEAM-5320:
-

  [~altay] would it be possible to add [~sdcubber] to this task. I think he 
doesn't has the required rights to be added? Thanks!

> Finish Python 3 porting for testing module
> --
>
> Key: BEAM-5320
> URL: https://issues.apache.org/jira/browse/BEAM-5320
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Ahmet Altay
>Priority: Major
>




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


[jira] [Assigned] (BEAM-5320) Finish Python 3 porting for testing module

2018-09-18 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-5320:
---

Assignee: Ahmet Altay  (was: Matthias Feys)

> Finish Python 3 porting for testing module
> --
>
> Key: BEAM-5320
> URL: https://issues.apache.org/jira/browse/BEAM-5320
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Ahmet Altay
>Priority: Major
>




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


[jira] [Resolved] (BEAM-5317) Finish Python 3 porting for options module

2018-09-17 Thread Matthias Feys (JIRA)


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

Matthias Feys resolved BEAM-5317.
-
   Resolution: Fixed
Fix Version/s: Not applicable

> Finish Python 3 porting for options module
> --
>
> Key: BEAM-5317
> URL: https://issues.apache.org/jira/browse/BEAM-5317
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Manu Zhang
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 3h 40m
>  Remaining Estimate: 0h
>




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


[jira] [Assigned] (BEAM-5320) Finish Python 3 porting for testing module

2018-09-17 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-5320:
---

Assignee: Ahmet Altay  (was: Matthias Feys)

> Finish Python 3 porting for testing module
> --
>
> Key: BEAM-5320
> URL: https://issues.apache.org/jira/browse/BEAM-5320
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Ahmet Altay
>Priority: Major
>




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


[jira] [Assigned] (BEAM-5320) Finish Python 3 porting for testing module

2018-09-17 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-5320:
---

Assignee: Matthias Feys  (was: Ahmet Altay)

> Finish Python 3 porting for testing module
> --
>
> Key: BEAM-5320
> URL: https://issues.apache.org/jira/browse/BEAM-5320
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
>




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


[jira] [Assigned] (BEAM-5320) Finish Python 3 porting for testing module

2018-09-17 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-5320:
---

Assignee: Matthias Feys  (was: Ahmet Altay)

> Finish Python 3 porting for testing module
> --
>
> Key: BEAM-5320
> URL: https://issues.apache.org/jira/browse/BEAM-5320
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
>




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


[jira] [Assigned] (BEAM-5320) Finish Python 3 porting for testing module

2018-09-17 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-5320:
---

Assignee: Ahmet Altay

> Finish Python 3 porting for testing module
> --
>
> Key: BEAM-5320
> URL: https://issues.apache.org/jira/browse/BEAM-5320
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Ahmet Altay
>Priority: Major
>




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


[jira] [Assigned] (BEAM-4511) Create a tox environment that uses Py3 interpreter for pre/post commit test suites, once codebase supports Py3.

2018-08-22 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-4511:
---

Assignee: Matthias Feys

> Create a tox environment that uses Py3 interpreter for pre/post commit test 
> suites, once codebase supports Py3. 
> 
>
> Key: BEAM-4511
> URL: https://issues.apache.org/jira/browse/BEAM-4511
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Valentyn Tymofieiev
>Assignee: Matthias Feys
>Priority: Major
>




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


[jira] [Resolved] (BEAM-3058) Python futurize stage 2

2018-08-05 Thread Matthias Feys (JIRA)


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

Matthias Feys resolved BEAM-3058.
-
   Resolution: Fixed
Fix Version/s: Not applicable

> Python futurize stage 2
> ---
>
> Key: BEAM-3058
> URL: https://issues.apache.org/jira/browse/BEAM-3058
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: holdenk
>Assignee: Holden Karau
>Priority: Major
> Fix For: Not applicable
>
>
> Apply futurize stage 2 and fix the issues so it continues to run in Python 2.X



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


[jira] [Resolved] (BEAM-4006) Futurize and fix python 2 compatibility for transforms subpackage

2018-08-05 Thread Matthias Feys (JIRA)


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

Matthias Feys resolved BEAM-4006.
-
   Resolution: Fixed
Fix Version/s: Not applicable

> Futurize and fix python 2 compatibility for transforms subpackage
> -
>
> Key: BEAM-4006
> URL: https://issues.apache.org/jira/browse/BEAM-4006
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 16h 10m
>  Remaining Estimate: 0h
>




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


[jira] [Commented] (BEAM-4000) Futurize and fix python 2 compatibility for io subpackage

2018-08-02 Thread Matthias Feys (JIRA)


[ 
https://issues.apache.org/jira/browse/BEAM-4000?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16566388#comment-16566388
 ] 

Matthias Feys commented on BEAM-4000:
-

Yes, also moved now

 

> Futurize and fix python 2 compatibility for io subpackage
> -
>
> Key: BEAM-4000
> URL: https://issues.apache.org/jira/browse/BEAM-4000
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 6h
>  Remaining Estimate: 0h
>




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


[jira] [Commented] (BEAM-4751) Finish io futurize stage 2: fix the missing pylint3 check in tox.ini

2018-08-01 Thread Matthias Feys (JIRA)


[ 
https://issues.apache.org/jira/browse/BEAM-4751?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16566387#comment-16566387
 ] 

Matthias Feys commented on BEAM-4751:
-

Yes, fixed now

> Finish io futurize stage 2: fix the missing pylint3 check in tox.ini
> 
>
> Key: BEAM-4751
> URL: https://issues.apache.org/jira/browse/BEAM-4751
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Matthias Feys
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 2.5h
>  Remaining Estimate: 0h
>
> Finish io futurize stage 2: fix the missing pylint3 check in tox.ini



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


[jira] [Resolved] (BEAM-4751) Finish io futurize stage 2: fix the missing pylint3 check in tox.ini

2018-08-01 Thread Matthias Feys (JIRA)


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

Matthias Feys resolved BEAM-4751.
-
   Resolution: Fixed
Fix Version/s: Not applicable

> Finish io futurize stage 2: fix the missing pylint3 check in tox.ini
> 
>
> Key: BEAM-4751
> URL: https://issues.apache.org/jira/browse/BEAM-4751
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Matthias Feys
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 2.5h
>  Remaining Estimate: 0h
>
> Finish io futurize stage 2: fix the missing pylint3 check in tox.ini



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


[jira] [Resolved] (BEAM-4000) Futurize and fix python 2 compatibility for io subpackage

2018-08-01 Thread Matthias Feys (JIRA)


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

Matthias Feys resolved BEAM-4000.
-
   Resolution: Fixed
Fix Version/s: Not applicable

> Futurize and fix python 2 compatibility for io subpackage
> -
>
> Key: BEAM-4000
> URL: https://issues.apache.org/jira/browse/BEAM-4000
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 6h
>  Remaining Estimate: 0h
>




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


[jira] [Updated] (BEAM-4855) Microbenchmarks for windowinto

2018-07-24 Thread Matthias Feys (JIRA)


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

Matthias Feys updated BEAM-4855:

Description: 
Add microbenchmarks for the windowinto transform:

R: [~tvalentyn]

  was:
Add microbenchmarks for the transforms subpackage:

Currently working on WindowInto microbenchmark

R: [~tvalentyn]


> Microbenchmarks for windowinto
> --
>
> Key: BEAM-4855
> URL: https://issues.apache.org/jira/browse/BEAM-4855
> Project: Beam
>  Issue Type: Task
>  Components: sdk-py-core
>Reporter: Matthias Feys
>Assignee: Matthias Feys
>Priority: Major
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Add microbenchmarks for the windowinto transform:
> R: [~tvalentyn]



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


[jira] [Updated] (BEAM-4855) Microbenchmarks for transforms package

2018-07-24 Thread Matthias Feys (JIRA)


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

Matthias Feys updated BEAM-4855:

Description: 
Add microbenchmarks for the transforms subpackage:

Currently working on WindowInto microbenchmark

R: [~tvalentyn]

  was:
Add microbenchmarks for the transforms subpackage:

Currently working on TimestampedValue microbenchmark

R: [~tvalentyn]


> Microbenchmarks for transforms package
> --
>
> Key: BEAM-4855
> URL: https://issues.apache.org/jira/browse/BEAM-4855
> Project: Beam
>  Issue Type: Task
>  Components: sdk-py-core
>Reporter: Matthias Feys
>Assignee: Matthias Feys
>Priority: Major
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Add microbenchmarks for the transforms subpackage:
> Currently working on WindowInto microbenchmark
> R: [~tvalentyn]



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


[jira] [Updated] (BEAM-4855) Microbenchmarks for windowinto

2018-07-24 Thread Matthias Feys (JIRA)


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

Matthias Feys updated BEAM-4855:

Summary: Microbenchmarks for windowinto  (was: Microbenchmarks for 
transforms package)

> Microbenchmarks for windowinto
> --
>
> Key: BEAM-4855
> URL: https://issues.apache.org/jira/browse/BEAM-4855
> Project: Beam
>  Issue Type: Task
>  Components: sdk-py-core
>Reporter: Matthias Feys
>Assignee: Matthias Feys
>Priority: Major
>  Time Spent: 20m
>  Remaining Estimate: 0h
>
> Add microbenchmarks for the transforms subpackage:
> Currently working on WindowInto microbenchmark
> R: [~tvalentyn]



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


[jira] [Created] (BEAM-4855) Microbenchmarks for transforms package

2018-07-24 Thread Matthias Feys (JIRA)
Matthias Feys created BEAM-4855:
---

 Summary: Microbenchmarks for transforms package
 Key: BEAM-4855
 URL: https://issues.apache.org/jira/browse/BEAM-4855
 Project: Beam
  Issue Type: Task
  Components: sdk-py-core
Reporter: Matthias Feys
Assignee: Matthias Feys


Add microbenchmarks for the transforms subpackage:

Currently working on TimestampedValue microbenchmark

R: [~tvalentyn]



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


[jira] [Updated] (BEAM-4751) Finish io futurize stage 2: fix the missing pylint3 check in tox.ini

2018-07-10 Thread Matthias Feys (JIRA)


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

Matthias Feys updated BEAM-4751:

Issue Type: Sub-task  (was: Task)
Parent: BEAM-1251

> Finish io futurize stage 2: fix the missing pylint3 check in tox.ini
> 
>
> Key: BEAM-4751
> URL: https://issues.apache.org/jira/browse/BEAM-4751
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Matthias Feys
>Assignee: Matthias Feys
>Priority: Major
>
> Finish io futurize stage 2: fix the missing pylint3 check in tox.ini



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


[jira] [Created] (BEAM-4751) Finish io futurize stage 2: fix the missing pylint3 check in tox.ini

2018-07-10 Thread Matthias Feys (JIRA)
Matthias Feys created BEAM-4751:
---

 Summary: Finish io futurize stage 2: fix the missing pylint3 check 
in tox.ini
 Key: BEAM-4751
 URL: https://issues.apache.org/jira/browse/BEAM-4751
 Project: Beam
  Issue Type: Task
  Components: sdk-py-core
Reporter: Matthias Feys
Assignee: Matthias Feys


Finish io futurize stage 2: fix the missing pylint3 check in tox.ini



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


[jira] [Resolved] (BEAM-4003) Futurize and fix python 2 compatibility for runners subpackage

2018-07-10 Thread Matthias Feys (JIRA)


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

Matthias Feys resolved BEAM-4003.
-
   Resolution: Fixed
Fix Version/s: Not applicable

> Futurize and fix python 2 compatibility for runners subpackage
> --
>
> Key: BEAM-4003
> URL: https://issues.apache.org/jira/browse/BEAM-4003
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 9h 40m
>  Remaining Estimate: 0h
>




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


[jira] [Resolved] (BEAM-3998) Futurize and fix python 2 compatibility for examples subpackage

2018-06-20 Thread Matthias Feys (JIRA)


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

Matthias Feys resolved BEAM-3998.
-
   Resolution: Fixed
Fix Version/s: Not applicable

> Futurize and fix python 2 compatibility for examples subpackage
> ---
>
> Key: BEAM-3998
> URL: https://issues.apache.org/jira/browse/BEAM-3998
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 2h 10m
>  Remaining Estimate: 0h
>




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


[jira] [Assigned] (BEAM-4000) Futurize and fix python 2 compatibility for io subpackage

2018-06-20 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-4000:
---

Assignee: Matthias Feys  (was: Ahmet Altay)

> Futurize and fix python 2 compatibility for io subpackage
> -
>
> Key: BEAM-4000
> URL: https://issues.apache.org/jira/browse/BEAM-4000
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
>




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


[jira] [Assigned] (BEAM-3998) Futurize and fix python 2 compatibility for examples subpackage

2018-06-14 Thread Matthias Feys (JIRA)


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

Matthias Feys reassigned BEAM-3998:
---

Assignee: Matthias Feys  (was: Ahmet Altay)

> Futurize and fix python 2 compatibility for examples subpackage
> ---
>
> Key: BEAM-3998
> URL: https://issues.apache.org/jira/browse/BEAM-3998
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
>




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


[jira] [Closed] (BEAM-4299) Futurize and fix python 2 compatibility for portability subpackage

2018-06-13 Thread Matthias Feys (JIRA)


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

Matthias Feys closed BEAM-4299.
---
   Resolution: Fixed
Fix Version/s: Not applicable

> Futurize and fix python 2 compatibility for portability subpackage
> --
>
> Key: BEAM-4299
> URL: https://issues.apache.org/jira/browse/BEAM-4299
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Matthias Feys
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>




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


[jira] [Closed] (BEAM-4009) Futurize and fix python 2 compatibility for unpackaged files

2018-06-13 Thread Matthias Feys (JIRA)


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

Matthias Feys closed BEAM-4009.
---
   Resolution: Fixed
Fix Version/s: Not applicable

> Futurize and fix python 2 compatibility for unpackaged files
> 
>
> Key: BEAM-4009
> URL: https://issues.apache.org/jira/browse/BEAM-4009
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 1.5h
>  Remaining Estimate: 0h
>




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


[jira] [Resolved] (BEAM-4005) Futurize and fix python 2 compatibility for tools subpackage

2018-06-13 Thread Matthias Feys (JIRA)


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

Matthias Feys resolved BEAM-4005.
-
   Resolution: Fixed
Fix Version/s: Not applicable

> Futurize and fix python 2 compatibility for tools subpackage
> 
>
> Key: BEAM-4005
> URL: https://issues.apache.org/jira/browse/BEAM-4005
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 1h 10m
>  Remaining Estimate: 0h
>




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


[jira] [Closed] (BEAM-4004) Futurize and fix python 2 compatibility for testing subpackage

2018-06-13 Thread Matthias Feys (JIRA)


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

Matthias Feys closed BEAM-4004.
---
   Resolution: Fixed
Fix Version/s: Not applicable

> Futurize and fix python 2 compatibility for testing subpackage
> --
>
> Key: BEAM-4004
> URL: https://issues.apache.org/jira/browse/BEAM-4004
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 1h
>  Remaining Estimate: 0h
>




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


[jira] [Resolved] (BEAM-4002) Futurize and fix python 2 compatibility for options subpackage

2018-05-23 Thread Matthias Feys (JIRA)

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

Matthias Feys resolved BEAM-4002.
-
   Resolution: Fixed
Fix Version/s: Not applicable

> Futurize and fix python 2 compatibility for options subpackage
> --
>
> Key: BEAM-4002
> URL: https://issues.apache.org/jira/browse/BEAM-4002
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 0.5h
>  Remaining Estimate: 0h
>




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


[jira] [Resolved] (BEAM-4001) Futurize and fix python 2 compatibility for metrics subpackage

2018-05-22 Thread Matthias Feys (JIRA)

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

Matthias Feys resolved BEAM-4001.
-
   Resolution: Done
Fix Version/s: Not applicable

> Futurize and fix python 2 compatibility for metrics subpackage
> --
>
> Key: BEAM-4001
> URL: https://issues.apache.org/jira/browse/BEAM-4001
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
> Fix For: Not applicable
>
>  Time Spent: 50m
>  Remaining Estimate: 0h
>




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


[jira] [Assigned] (BEAM-4009) Futurize and fix python 2 compatibility for unpackaged files

2018-05-16 Thread Matthias Feys (JIRA)

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

Matthias Feys reassigned BEAM-4009:
---

Assignee: Matthias Feys  (was: Ahmet Altay)

> Futurize and fix python 2 compatibility for unpackaged files
> 
>
> Key: BEAM-4009
> URL: https://issues.apache.org/jira/browse/BEAM-4009
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
>




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


[jira] [Created] (BEAM-4299) Futurize and fix python 2 compatibility for portability subpackage

2018-05-16 Thread Matthias Feys (JIRA)
Matthias Feys created BEAM-4299:
---

 Summary: Futurize and fix python 2 compatibility for portability 
subpackage
 Key: BEAM-4299
 URL: https://issues.apache.org/jira/browse/BEAM-4299
 Project: Beam
  Issue Type: Sub-task
  Components: sdk-py-core
Reporter: Matthias Feys
Assignee: Matthias Feys






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


[jira] [Assigned] (BEAM-4003) Futurize and fix python 2 compatibility for runners subpackage

2018-05-14 Thread Matthias Feys (JIRA)

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

Matthias Feys reassigned BEAM-4003:
---

Assignee: Matthias Feys  (was: Ahmet Altay)

> Futurize and fix python 2 compatibility for runners subpackage
> --
>
> Key: BEAM-4003
> URL: https://issues.apache.org/jira/browse/BEAM-4003
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
>




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


[jira] [Assigned] (BEAM-4004) Futurize and fix python 2 compatibility for testing subpackage

2018-05-12 Thread Matthias Feys (JIRA)

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

Matthias Feys reassigned BEAM-4004:
---

Assignee: Matthias Feys  (was: Ahmet Altay)

> Futurize and fix python 2 compatibility for testing subpackage
> --
>
> Key: BEAM-4004
> URL: https://issues.apache.org/jira/browse/BEAM-4004
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
>




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


[jira] [Assigned] (BEAM-4005) Futurize and fix python 2 compatibility for tools subpackage

2018-05-11 Thread Matthias Feys (JIRA)

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

Matthias Feys reassigned BEAM-4005:
---

Assignee: Matthias Feys  (was: Ahmet Altay)

> Futurize and fix python 2 compatibility for tools subpackage
> 
>
> Key: BEAM-4005
> URL: https://issues.apache.org/jira/browse/BEAM-4005
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
>




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


[jira] [Assigned] (BEAM-4002) Futurize and fix python 2 compatibility for options subpackage

2018-05-11 Thread Matthias Feys (JIRA)

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

Matthias Feys reassigned BEAM-4002:
---

Assignee: Matthias Feys  (was: Ahmet Altay)

> Futurize and fix python 2 compatibility for options subpackage
> --
>
> Key: BEAM-4002
> URL: https://issues.apache.org/jira/browse/BEAM-4002
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Matthias Feys
>Priority: Major
>




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


[jira] [Commented] (BEAM-4001) Futurize and fix python 2 compatibility for metrics subpackage

2018-05-09 Thread Matthias Feys (JIRA)

[ 
https://issues.apache.org/jira/browse/BEAM-4001?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16468962#comment-16468962
 ] 

Matthias Feys commented on BEAM-4001:
-

I am working on this issue, would it be possible to get assigned to it? Thx!

> Futurize and fix python 2 compatibility for metrics subpackage
> --
>
> Key: BEAM-4001
> URL: https://issues.apache.org/jira/browse/BEAM-4001
> Project: Beam
>  Issue Type: Sub-task
>  Components: sdk-py-core
>Reporter: Robbe
>Assignee: Ahmet Altay
>Priority: Major
>




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