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:
us...@infra.apache.org


With regards,
Apache Git Services

Reply via email to