Java Code Examples for org.apache.flink.queryablestate.client.state.serialization.KvStateSerializer#deserializeMap()
The following examples show how to use
org.apache.flink.queryablestate.client.state.serialization.KvStateSerializer#deserializeMap() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: KvStateRequestSerializerTest.java From flink with Apache License 2.0 | 5 votes |
/** * Tests map deserialization with too few bytes. */ @Test(expected = IOException.class) public void testDeserializeMapTooShort3() throws Exception { // Long (Key1) + Boolean (false) + Long (Value1) + 1 byte (incomplete Key2) KvStateSerializer.deserializeMap(new byte[] {1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 3}, LongSerializer.INSTANCE, LongSerializer.INSTANCE); }
Example 2
Source File: KvStateRequestSerializerTest.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
/** * Tests map deserialization with too few bytes. */ @Test public void testDeserializeMapEmpty() throws Exception { Map<Long, String> actualValue = KvStateSerializer .deserializeMap(new byte[] {}, LongSerializer.INSTANCE, StringSerializer.INSTANCE); assertEquals(0, actualValue.size()); }
Example 3
Source File: KvStateRequestSerializerTest.java From flink with Apache License 2.0 | 5 votes |
/** * Tests map deserialization with too few bytes. */ @Test(expected = IOException.class) public void testDeserializeMapTooShort2() throws Exception { // Long (Key) + 1 byte (incomplete Value) KvStateSerializer.deserializeMap(new byte[]{1, 1, 1, 1, 1, 1, 1, 1, 0}, LongSerializer.INSTANCE, LongSerializer.INSTANCE); }
Example 4
Source File: KvStateRequestSerializerTest.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
/** * Tests map deserialization with too few bytes. */ @Test(expected = IOException.class) public void testDeserializeMapTooShort2() throws Exception { // Long (Key) + 1 byte (incomplete Value) KvStateSerializer.deserializeMap(new byte[]{1, 1, 1, 1, 1, 1, 1, 1, 0}, LongSerializer.INSTANCE, LongSerializer.INSTANCE); }
Example 5
Source File: KvStateRequestSerializerTest.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
/** * Tests map deserialization with too few bytes. */ @Test(expected = IOException.class) public void testDeserializeMapTooShort3() throws Exception { // Long (Key1) + Boolean (false) + Long (Value1) + 1 byte (incomplete Key2) KvStateSerializer.deserializeMap(new byte[] {1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 3}, LongSerializer.INSTANCE, LongSerializer.INSTANCE); }
Example 6
Source File: ImmutableMapState.java From flink with Apache License 2.0 | 5 votes |
@SuppressWarnings("unchecked") public static <K, V, T, S extends State> S createState( StateDescriptor<S, T> stateDescriptor, byte[] serializedState) throws IOException { MapStateDescriptor<K, V> mapStateDescriptor = (MapStateDescriptor<K, V>) stateDescriptor; final Map<K, V> state = KvStateSerializer.deserializeMap( serializedState, mapStateDescriptor.getKeySerializer(), mapStateDescriptor.getValueSerializer()); return (S) new ImmutableMapState<>(state); }
Example 7
Source File: StateBackendTestBase.java From flink with Apache License 2.0 | 5 votes |
/** * Returns the value by getting the serialized value and deserializing it * if it is not null. */ private static <UK, UV, K, N> Map<UK, UV> getSerializedMap( InternalKvState<K, N, Map<UK, UV>> kvState, K key, TypeSerializer<K> keySerializer, N namespace, TypeSerializer<N> namespaceSerializer, TypeSerializer<UK> userKeySerializer, TypeSerializer<UV> userValueSerializer ) throws Exception { byte[] serializedKeyAndNamespace = KvStateSerializer.serializeKeyAndNamespace( key, keySerializer, namespace, namespaceSerializer); byte[] serializedValue = kvState.getSerializedValue( serializedKeyAndNamespace, kvState.getKeySerializer(), kvState.getNamespaceSerializer(), kvState.getValueSerializer() ); if (serializedValue == null) { return null; } else { return KvStateSerializer.deserializeMap(serializedValue, userKeySerializer, userValueSerializer); } }
Example 8
Source File: KvStateRequestSerializerTest.java From flink with Apache License 2.0 | 5 votes |
/** * Tests map deserialization with too few bytes. */ @Test public void testDeserializeMapEmpty() throws Exception { Map<Long, String> actualValue = KvStateSerializer .deserializeMap(new byte[] {}, LongSerializer.INSTANCE, StringSerializer.INSTANCE); assertEquals(0, actualValue.size()); }
Example 9
Source File: StateBackendTestBase.java From Flink-CEPplus with Apache License 2.0 | 5 votes |
/** * Returns the value by getting the serialized value and deserializing it * if it is not null. */ private static <UK, UV, K, N> Map<UK, UV> getSerializedMap( InternalKvState<K, N, Map<UK, UV>> kvState, K key, TypeSerializer<K> keySerializer, N namespace, TypeSerializer<N> namespaceSerializer, TypeSerializer<UK> userKeySerializer, TypeSerializer<UV> userValueSerializer ) throws Exception { byte[] serializedKeyAndNamespace = KvStateSerializer.serializeKeyAndNamespace( key, keySerializer, namespace, namespaceSerializer); byte[] serializedValue = kvState.getSerializedValue( serializedKeyAndNamespace, kvState.getKeySerializer(), kvState.getNamespaceSerializer(), kvState.getValueSerializer() ); if (serializedValue == null) { return null; } else { return KvStateSerializer.deserializeMap(serializedValue, userKeySerializer, userValueSerializer); } }
Example 10
Source File: KvStateRequestSerializerTest.java From flink with Apache License 2.0 | 5 votes |
/** * Tests map deserialization with too few bytes. */ @Test(expected = IOException.class) public void testDeserializeMapTooShort2() throws Exception { // Long (Key) + 1 byte (incomplete Value) KvStateSerializer.deserializeMap(new byte[]{1, 1, 1, 1, 1, 1, 1, 1, 0}, LongSerializer.INSTANCE, LongSerializer.INSTANCE); }
Example 11
Source File: KvStateRequestSerializerTest.java From flink with Apache License 2.0 | 5 votes |
/** * Tests map deserialization with too few bytes. */ @Test(expected = IOException.class) public void testDeserializeMapTooShort3() throws Exception { // Long (Key1) + Boolean (false) + Long (Value1) + 1 byte (incomplete Key2) KvStateSerializer.deserializeMap(new byte[] {1, 1, 1, 1, 1, 1, 1, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 3}, LongSerializer.INSTANCE, LongSerializer.INSTANCE); }
Example 12
Source File: ImmutableMapState.java From flink with Apache License 2.0 | 5 votes |
@SuppressWarnings("unchecked") public static <K, V, T, S extends State> S createState( StateDescriptor<S, T> stateDescriptor, byte[] serializedState) throws IOException { MapStateDescriptor<K, V> mapStateDescriptor = (MapStateDescriptor<K, V>) stateDescriptor; final Map<K, V> state = KvStateSerializer.deserializeMap( serializedState, mapStateDescriptor.getKeySerializer(), mapStateDescriptor.getValueSerializer()); return (S) new ImmutableMapState<>(state); }
Example 13
Source File: StateBackendTestBase.java From flink with Apache License 2.0 | 5 votes |
/** * Returns the value by getting the serialized value and deserializing it * if it is not null. */ private static <UK, UV, K, N> Map<UK, UV> getSerializedMap( InternalKvState<K, N, Map<UK, UV>> kvState, K key, TypeSerializer<K> keySerializer, N namespace, TypeSerializer<N> namespaceSerializer, TypeSerializer<UK> userKeySerializer, TypeSerializer<UV> userValueSerializer ) throws Exception { byte[] serializedKeyAndNamespace = KvStateSerializer.serializeKeyAndNamespace( key, keySerializer, namespace, namespaceSerializer); byte[] serializedValue = kvState.getSerializedValue( serializedKeyAndNamespace, kvState.getKeySerializer(), kvState.getNamespaceSerializer(), kvState.getValueSerializer() ); if (serializedValue == null) { return null; } else { return KvStateSerializer.deserializeMap(serializedValue, userKeySerializer, userValueSerializer); } }
Example 14
Source File: KvStateRequestSerializerTest.java From flink with Apache License 2.0 | 5 votes |
/** * Tests map deserialization with too few bytes. */ @Test public void testDeserializeMapEmpty() throws Exception { Map<Long, String> actualValue = KvStateSerializer .deserializeMap(new byte[] {}, LongSerializer.INSTANCE, StringSerializer.INSTANCE); assertEquals(0, actualValue.size()); }
Example 15
Source File: KvStateRequestSerializerTest.java From flink with Apache License 2.0 | 4 votes |
/** * Tests map deserialization with too few bytes. */ @Test(expected = IOException.class) public void testDeserializeMapTooShort1() throws Exception { // 1 byte (incomplete Key) KvStateSerializer.deserializeMap(new byte[] {1}, LongSerializer.INSTANCE, StringSerializer.INSTANCE); }
Example 16
Source File: KvStateRequestSerializerTest.java From flink with Apache License 2.0 | 4 votes |
/** * Tests map deserialization with too few bytes. */ @Test(expected = IOException.class) public void testDeserializeMapTooShort1() throws Exception { // 1 byte (incomplete Key) KvStateSerializer.deserializeMap(new byte[] {1}, LongSerializer.INSTANCE, StringSerializer.INSTANCE); }
Example 17
Source File: KvStateRequestSerializerTest.java From flink with Apache License 2.0 | 4 votes |
/** * Verifies that the serialization of a map using the given map state * matches the deserialization with {@link KvStateSerializer#deserializeList}. * * @param key * key of the map state * @param mapState * map state using the {@link VoidNamespace}, must also be a {@link InternalKvState} instance * * @throws Exception */ public static void testMapSerialization( final long key, final InternalMapState<Long, VoidNamespace, Long, String> mapState) throws Exception { TypeSerializer<Long> userKeySerializer = LongSerializer.INSTANCE; TypeSerializer<String> userValueSerializer = StringSerializer.INSTANCE; mapState.setCurrentNamespace(VoidNamespace.INSTANCE); // Map final int numElements = 10; final Map<Long, String> expectedValues = new HashMap<>(); for (int i = 1; i <= numElements; i++) { final long value = ThreadLocalRandom.current().nextLong(); expectedValues.put(value, Long.toString(value)); mapState.put(value, Long.toString(value)); } expectedValues.put(0L, null); mapState.put(0L, null); final byte[] serializedKey = KvStateSerializer.serializeKeyAndNamespace( key, LongSerializer.INSTANCE, VoidNamespace.INSTANCE, VoidNamespaceSerializer.INSTANCE); final byte[] serializedValues = mapState.getSerializedValue( serializedKey, mapState.getKeySerializer(), mapState.getNamespaceSerializer(), mapState.getValueSerializer()); Map<Long, String> actualValues = KvStateSerializer.deserializeMap(serializedValues, userKeySerializer, userValueSerializer); assertEquals(expectedValues.size(), actualValues.size()); for (Map.Entry<Long, String> actualEntry : actualValues.entrySet()) { assertEquals(expectedValues.get(actualEntry.getKey()), actualEntry.getValue()); } // Single value ByteArrayOutputStream baos = new ByteArrayOutputStream(); long expectedKey = ThreadLocalRandom.current().nextLong(); String expectedValue = Long.toString(expectedKey); byte[] isNull = {0}; baos.write(KvStateSerializer.serializeValue(expectedKey, userKeySerializer)); baos.write(isNull); baos.write(KvStateSerializer.serializeValue(expectedValue, userValueSerializer)); byte[] serializedValue = baos.toByteArray(); Map<Long, String> actualValue = KvStateSerializer.deserializeMap(serializedValue, userKeySerializer, userValueSerializer); assertEquals(1, actualValue.size()); assertEquals(expectedValue, actualValue.get(expectedKey)); }
Example 18
Source File: KvStateRequestSerializerTest.java From flink with Apache License 2.0 | 4 votes |
/** * Verifies that the serialization of a map using the given map state * matches the deserialization with {@link KvStateSerializer#deserializeList}. * * @param key * key of the map state * @param mapState * map state using the {@link VoidNamespace}, must also be a {@link InternalKvState} instance * * @throws Exception */ public static void testMapSerialization( final long key, final InternalMapState<Long, VoidNamespace, Long, String> mapState) throws Exception { TypeSerializer<Long> userKeySerializer = LongSerializer.INSTANCE; TypeSerializer<String> userValueSerializer = StringSerializer.INSTANCE; mapState.setCurrentNamespace(VoidNamespace.INSTANCE); // Map final int numElements = 10; final Map<Long, String> expectedValues = new HashMap<>(); for (int i = 1; i <= numElements; i++) { final long value = ThreadLocalRandom.current().nextLong(); expectedValues.put(value, Long.toString(value)); mapState.put(value, Long.toString(value)); } expectedValues.put(0L, null); mapState.put(0L, null); final byte[] serializedKey = KvStateSerializer.serializeKeyAndNamespace( key, LongSerializer.INSTANCE, VoidNamespace.INSTANCE, VoidNamespaceSerializer.INSTANCE); final byte[] serializedValues = mapState.getSerializedValue( serializedKey, mapState.getKeySerializer(), mapState.getNamespaceSerializer(), mapState.getValueSerializer()); Map<Long, String> actualValues = KvStateSerializer.deserializeMap(serializedValues, userKeySerializer, userValueSerializer); assertEquals(expectedValues.size(), actualValues.size()); for (Map.Entry<Long, String> actualEntry : actualValues.entrySet()) { assertEquals(expectedValues.get(actualEntry.getKey()), actualEntry.getValue()); } // Single value ByteArrayOutputStream baos = new ByteArrayOutputStream(); long expectedKey = ThreadLocalRandom.current().nextLong(); String expectedValue = Long.toString(expectedKey); byte[] isNull = {0}; baos.write(KvStateSerializer.serializeValue(expectedKey, userKeySerializer)); baos.write(isNull); baos.write(KvStateSerializer.serializeValue(expectedValue, userValueSerializer)); byte[] serializedValue = baos.toByteArray(); Map<Long, String> actualValue = KvStateSerializer.deserializeMap(serializedValue, userKeySerializer, userValueSerializer); assertEquals(1, actualValue.size()); assertEquals(expectedValue, actualValue.get(expectedKey)); }
Example 19
Source File: KvStateRequestSerializerTest.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
/** * Tests map deserialization with too few bytes. */ @Test(expected = IOException.class) public void testDeserializeMapTooShort1() throws Exception { // 1 byte (incomplete Key) KvStateSerializer.deserializeMap(new byte[] {1}, LongSerializer.INSTANCE, StringSerializer.INSTANCE); }
Example 20
Source File: KvStateRequestSerializerTest.java From Flink-CEPplus with Apache License 2.0 | 4 votes |
/** * Verifies that the serialization of a map using the given map state * matches the deserialization with {@link KvStateSerializer#deserializeList}. * * @param key * key of the map state * @param mapState * map state using the {@link VoidNamespace}, must also be a {@link InternalKvState} instance * * @throws Exception */ public static void testMapSerialization( final long key, final InternalMapState<Long, VoidNamespace, Long, String> mapState) throws Exception { TypeSerializer<Long> userKeySerializer = LongSerializer.INSTANCE; TypeSerializer<String> userValueSerializer = StringSerializer.INSTANCE; mapState.setCurrentNamespace(VoidNamespace.INSTANCE); // Map final int numElements = 10; final Map<Long, String> expectedValues = new HashMap<>(); for (int i = 1; i <= numElements; i++) { final long value = ThreadLocalRandom.current().nextLong(); expectedValues.put(value, Long.toString(value)); mapState.put(value, Long.toString(value)); } expectedValues.put(0L, null); mapState.put(0L, null); final byte[] serializedKey = KvStateSerializer.serializeKeyAndNamespace( key, LongSerializer.INSTANCE, VoidNamespace.INSTANCE, VoidNamespaceSerializer.INSTANCE); final byte[] serializedValues = mapState.getSerializedValue( serializedKey, mapState.getKeySerializer(), mapState.getNamespaceSerializer(), mapState.getValueSerializer()); Map<Long, String> actualValues = KvStateSerializer.deserializeMap(serializedValues, userKeySerializer, userValueSerializer); assertEquals(expectedValues.size(), actualValues.size()); for (Map.Entry<Long, String> actualEntry : actualValues.entrySet()) { assertEquals(expectedValues.get(actualEntry.getKey()), actualEntry.getValue()); } // Single value ByteArrayOutputStream baos = new ByteArrayOutputStream(); long expectedKey = ThreadLocalRandom.current().nextLong(); String expectedValue = Long.toString(expectedKey); byte[] isNull = {0}; baos.write(KvStateSerializer.serializeValue(expectedKey, userKeySerializer)); baos.write(isNull); baos.write(KvStateSerializer.serializeValue(expectedValue, userValueSerializer)); byte[] serializedValue = baos.toByteArray(); Map<Long, String> actualValue = KvStateSerializer.deserializeMap(serializedValue, userKeySerializer, userValueSerializer); assertEquals(1, actualValue.size()); assertEquals(expectedValue, actualValue.get(expectedKey)); }