You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@beam.apache.org by "lovk korm (Jira)" <ji...@apache.org> on 2021/05/12 07:39:00 UTC

[jira] [Updated] (BEAM-12327) Using Any for unsupported type: typing.Sequence[~T]

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

lovk korm updated BEAM-12327:
-----------------------------
    Description: 
Started to see this:
 
{code:java}
[2021-05-11 13:00:51,541] {native_type_compatibility.py:268} INFO - Using Any for unsupported type: typing.Sequence[~T]
{code}
From what I can tell it related to this code:
{code:java}
 # Find the first matching entry. matched_entry = next((entry for entry in type_map if entry.match(typ)), None) if not matched_entry: # Please add missing type support if you see this message. _LOGGER.info('Using Any for unsupported type: %s', typ) return typehints.{code}
[https://github.com/apache/beam/blob/c3c4933977f96ebc2d858b8953635041a17d2fd1/sdks/python/apache_beam/typehints/native_type_compatibility.py#L257]

but I don't know what to do with it.. I'll leave it to you

  was:
Started to see this:
 [2021-05-11 13:00:51,541] {native_type_compatibility.py:268} INFO - Using Any for unsupported type: typing.Sequence[~T]

From what I can tell it related to this code:

{code:java}
 # Find the first matching entry. matched_entry = next((entry for entry in type_map if entry.match(typ)), None) if not matched_entry: # Please add missing type support if you see this message. _LOGGER.info('Using Any for unsupported type: %s', typ) return typehints.{code}
[https://github.com/apache/beam/blob/c3c4933977f96ebc2d858b8953635041a17d2fd1/sdks/python/apache_beam/typehints/native_type_compatibility.py#L257]

but I don't know what to do with it.. I'll leave it to you


> Using Any for unsupported type: typing.Sequence[~T]
> ---------------------------------------------------
>
>                 Key: BEAM-12327
>                 URL: https://issues.apache.org/jira/browse/BEAM-12327
>             Project: Beam
>          Issue Type: Bug
>          Components: beam-community
>            Reporter: lovk korm
>            Priority: P2
>
> Started to see this:
>  
> {code:java}
> [2021-05-11 13:00:51,541] {native_type_compatibility.py:268} INFO - Using Any for unsupported type: typing.Sequence[~T]
> {code}
> From what I can tell it related to this code:
> {code:java}
>  # Find the first matching entry. matched_entry = next((entry for entry in type_map if entry.match(typ)), None) if not matched_entry: # Please add missing type support if you see this message. _LOGGER.info('Using Any for unsupported type: %s', typ) return typehints.{code}
> [https://github.com/apache/beam/blob/c3c4933977f96ebc2d858b8953635041a17d2fd1/sdks/python/apache_beam/typehints/native_type_compatibility.py#L257]
> but I don't know what to do with it.. I'll leave it to you



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