You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flink.apache.org by GitBox <gi...@apache.org> on 2020/02/07 13:42:55 UTC

[GitHub] [flink-statefun] igalshilman opened a new pull request #15: [FLINK-15952] Replace the usage of a raw byte[] for keys in MultiplexedState

igalshilman opened a new pull request #15: [FLINK-15952] Replace the usage of a raw byte[] for keys in MultiplexedState
URL: https://github.com/apache/flink-statefun/pull/15
 
 
   This PR address the problem, that when using Flink's heap state backend keys to a `MapState` can not be of a primitive array type.
   This PR introduces a new Protobuf message to be used as a key in a multiplexed state context.
   ```
   message MultiplexedStateKey {
       string function_namespace = 1;
       string function_type = 2;
       string state_name = 3;
       repeated bytes user_keys = 4;
   }
   ```
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [flink-statefun] tzulitai closed pull request #15: [FLINK-15952] Replace the usage of a raw byte[] for keys in MultiplexedState

Posted by GitBox <gi...@apache.org>.
tzulitai closed pull request #15: [FLINK-15952] Replace the usage of a raw byte[] for keys in MultiplexedState
URL: https://github.com/apache/flink-statefun/pull/15
 
 
   

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services

[GitHub] [flink-statefun] tzulitai commented on issue #15: [FLINK-15952] Replace the usage of a raw byte[] for keys in MultiplexedState

Posted by GitBox <gi...@apache.org>.
tzulitai commented on issue #15: [FLINK-15952] Replace the usage of a raw byte[] for keys in MultiplexedState
URL: https://github.com/apache/flink-statefun/pull/15#issuecomment-583689015
 
 
   Local run of the greeter example works, and Travis is green as well.
   Merging ...

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services