io.ray.streaming.state.backend.KeyStateBackend Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.ray.streaming.state.backend;
import io.ray.streaming.state.keystate.KeyGroup;
import io.ray.streaming.state.keystate.KeyGroupAssignment;
import io.ray.streaming.state.keystate.desc.ListStateDescriptor;
import io.ray.streaming.state.keystate.desc.MapStateDescriptor;
import io.ray.streaming.state.keystate.desc.ValueStateDescriptor;
import io.ray.streaming.state.keystate.state.ListState;
import io.ray.streaming.state.keystate.state.MapState;
import io.ray.streaming.state.keystate.state.ValueState;
import io.ray.streaming.state.keystate.state.proxy.ListStateStoreManagerProxy;
import io.ray.streaming.state.keystate.state.proxy.MapStateStoreManagerProxy;
import io.ray.streaming.state.keystate.state.proxy.ValueStateStoreManagerProxy;
/**
* key state backend manager, managing different kinds of states in different thread. This class is
* not thread safe.
*/
public class KeyStateBackend extends AbstractKeyStateBackend {
protected final int numberOfKeyGroups;
protected final KeyGroup keyGroup;
public KeyStateBackend(
int numberOfKeyGroups, KeyGroup keyGroup, AbstractStateBackend abstractStateBackend) {
super(abstractStateBackend);
this.numberOfKeyGroups = numberOfKeyGroups;
this.keyGroup = keyGroup;
}
/** get new value state proxy */
protected ValueStateStoreManagerProxy newValueStateProxy(
ValueStateDescriptor stateDescriptor) {
return new ValueStateStoreManagerProxy<>(this, stateDescriptor);
}
public ValueState getValueState(ValueStateDescriptor stateDescriptor) {
String desc = stateDescriptor.getIdentify();
if (valueManagerProxyHashMap.containsKey(desc)) {
return valueManagerProxyHashMap.get(desc).getValueState();
} else {
ValueStateStoreManagerProxy valueStateProxy = newValueStateProxy(stateDescriptor);
valueManagerProxyHashMap.put(desc, valueStateProxy);
return valueStateProxy.getValueState();
}
}
/** get new list state proxy */
protected ListStateStoreManagerProxy newListStateProxy(
ListStateDescriptor stateDescriptor) {
return new ListStateStoreManagerProxy<>(this, stateDescriptor);
}
public ListState getListState(ListStateDescriptor stateDescriptor) {
String desc = stateDescriptor.getIdentify();
if (listManagerProxyHashMap.containsKey(desc)) {
ListStateStoreManagerProxy listStateProxy = listManagerProxyHashMap.get(desc);
return listStateProxy.getListState();
} else {
ListStateStoreManagerProxy listStateProxy = newListStateProxy(stateDescriptor);
listManagerProxyHashMap.put(desc, listStateProxy);
return listStateProxy.getListState();
}
}
/** get map state proxy */
protected MapStateStoreManagerProxy newMapStateProxy(
MapStateDescriptor stateDescriptor) {
return new MapStateStoreManagerProxy<>(this, stateDescriptor);
}
public MapState getMapState(MapStateDescriptor stateDescriptor) {
String desc = stateDescriptor.getIdentify();
if (mapManagerProxyHashMap.containsKey(desc)) {
MapStateStoreManagerProxy mapStateProxy = mapManagerProxyHashMap.get(desc);
return mapStateProxy.getMapState();
} else {
MapStateStoreManagerProxy mapStateProxy = newMapStateProxy(stateDescriptor);
mapManagerProxyHashMap.put(desc, mapStateProxy);
return mapStateProxy.getMapState();
}
}
@Override
public void setCurrentKey(Object currentKey) {
super.keyGroupIndex =
KeyGroupAssignment.assignKeyGroupIndexForKey(currentKey, numberOfKeyGroups);
super.currentKey = currentKey;
}
public int getNumberOfKeyGroups() {
return numberOfKeyGroups;
}
public KeyGroup getKeyGroup() {
return keyGroup;
}
public void close() {
for (ValueStateStoreManagerProxy proxy : valueManagerProxyHashMap.values()) {
proxy.close();
}
for (ListStateStoreManagerProxy proxy : listManagerProxyHashMap.values()) {
proxy.close();
}
for (MapStateStoreManagerProxy proxy : mapManagerProxyHashMap.values()) {
proxy.close();
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy