本文档介绍了在开发应用程序时如何使用Flink的状态抽象。
被Keys化状态和算子状态
Flink有两种基本的状态:Keyed State和Operator State。
被Keys化状态
被Keys化状态始终与键相关,只能在a上的函数和 算子中使用KeyedStream。
您可以将Keyed State视为已分区或分片的算子状态,每个Keys只有一个状态分区。每个被Keys化状态在逻辑上绑定到
被Keys化状态进一步组织成所谓的Keys组。Keys组是Flink可以重新分配Keys状态的原子单元; Keys组与定义的最大并行度完全一样多。在执行期间,被Keys化 算子的每个并行实例都使用一个或多个Keys组的Keys。
算子状态
使用算子状态(或非被Keys化状态),每个算子状态都绑定到一个并行 算子实例。在Kafka连接器是在Flink使用运营状况的一个很好的激励例子。Kafka使用者的每个并行实例都将主题分区和偏移的映射维护为其算子状态。
算子状态接口支持在并行性更改时在并行 算子实例之间重新分配状态。可以有不同的方案来进行此重新分配。
原始和管理状态
被Keys化状态和算子状态有两种形式:托管状态和原始状态。
托管状态由Flink运行时控制的数据结构表示,例如内部哈希表或RocksDB。例如“ValueState”,“ListState”等.Flink的运行时对状态进行编码并将它们写入检查点。
原始状态是算子保存在自己的数据结构中的状态。检查点时,它们只会将一个字节序列写入检查点。Flink对状态的数据结构一无所知,只看到原始字节。
所有数据流函数都可以使用托管状态,但原始状态接口只能在实现 算子时使用。建议使用托管状态(而不是原始状态),因为在托管状态下,Flink能够在并行性更改时自动重新分配状态,并且还可以进行更好的内存管理。
注意如果您的托管状态需要自定义序列化逻辑,请参阅相应的指南以确保将来的兼容性。Flink的默认序列化器不需要特殊处理。
使用托管被Keys化状态
托管被Keys化状态接口提供对不同类型状态的访问,这些状态都限定为当前输入数据元的键。这意味着这种类型的状态只能用于a KeyedStream,可以通过创建stream.keyBy(…)。
现在,我们将首先查看可用的不同类型的状态,然后我们将看到它们如何在程序中使用。可用的状态原语是:
ValueState<T>:这保存了一个可以更新和检索的值(如上所述,作用于输入数据元的键的范围,因此 算子操作看到的每个键可能有一个值)。可以使用update(T)和 设置值来设置该值T value()。ListState<T>:这保存了数据元列表。您可以追加数据元并检索Iterable所有当前存储的数据元。使用add(T)或添加数据元addAll(List<T>),可以使用Iterable检索Iterable<T> get()。您也可以使用覆盖现有列表update(List<T>)ReducingState<T>:这保存一个值,表示添加到状态的所有值的聚合。接口类似于,ListState但add(T)使用指定的数据元将使用的数据元 缩减为聚合ReduceFunction。AggregatingState<IN, OUT>:这保存一个值,表示添加到状态的所有值的聚合。与此相反ReducingState,聚合类型可能与添加到状态的数据元类型不同。接口与for相同,ListState但add(IN)使用指定的聚合使用添加的数据元AggregateFunction。FoldingState<T, ACC>:这保存一个值,表示添加到状态的所有值的聚合。与此相反ReducingState,聚合类型可能与添加到状态的数据元类型不同。界面类似于ListState添加的数据元add(T)使用指定的折叠成聚合FoldFunction。MapState<UK, UV>:这将保存映射列表。您可以将键值对放入状态,并检索Iterable所有当前存储的映射。使用put(UK, UV)或 添加映射putAll(Map<UK, UV>)。可以使用检索与用户Keys关联的值get(UK)。对于映射,键和值可迭代视图可以使用被检索entries(),keys()并values()分别。
所有类型的状态还具有clear()清除当前活动键的状态的方法,即输入数据元的键。
注意 FoldingState并FoldingStateDescriptor已在Flink 1.4中弃用,将来将被完全删除。请使用AggregatingState而AggregatingStateDescriptor不是。
重要的是要记住,这些状态对象仅用于与状态接口。状态不一定存储在内部,但可能驻留在磁盘或其他位置。要记住的第二件事是,从状态获得的值取决于input数据元的键。因此,如果所涉及的Keys不同,则在一次调用用户函数时获得的值可能与另一次调用中的值不同。
要获得状态句柄,您必须创建一个StateDescriptor。这保存了状态的名称(正如我们稍后将看到的,您可以创建多个状态,并且它们必须具有唯一的名称以便您可以引用它们),状态所持有的值的类型,并且可能是用户 - 指定的函数,例如a ReduceFunction。根据要检索的状态类型,可以创建a ValueStateDescriptor,a ListStateDescriptor,a ReducingStateDescriptor,a FoldingStateDescriptor或a MapStateDescriptor。
使用the访问状态RuntimeContext,因此只能在丰富的函数中使用。请参阅此处了解相关信息,但我们很快也会看到一个示例。该RuntimeContext是在提供RichFunction具有这些方法来访问状态:
ValueState<T> getState(ValueStateDescriptor<T>)ReducingState<T> getReducingState(ReducingStateDescriptor<T>)ListState<T> getListState(ListStateDescriptor<T>)AggregatingState<IN, OUT> getAggregatingState(AggregatingState<IN, OUT>)FoldingState<T, ACC> getFoldingState(FoldingStateDescriptor<T, ACC>)MapState<UK, UV> getMapState(MapStateDescriptor<UK, UV>)
这是一个FlatMapFunction显示所有部件如何组合在一起的示例:
public class CountWindowAverage extends RichFlatMapFunction<Tuple2<Long, Long>, Tuple2<Long, Long>> {/*** The ValueState handle. The first field is the count, the second field a running sum.*/private transient ValueState<Tuple2<Long, Long>> sum;@Overridepublic void flatMap(Tuple2<Long, Long> input, Collector<Tuple2<Long, Long>> out) throws Exception {// access the state valueTuple2<Long, Long> currentSum = sum.value();// update the countcurrentSum.f0 += 1;// add the second field of the input valuecurrentSum.f1 += input.f1;// update the statesum.update(currentSum);// if the count reaches 2, emit the average and clear the stateif (currentSum.f0 >= 2) {out.collect(new Tuple2<>(input.f0, currentSum.f1 / currentSum.f0));sum.clear();}}@Overridepublic void open(Configuration config) {ValueStateDescriptor<Tuple2<Long, Long>> descriptor =new ValueStateDescriptor<>("average", // the state nameTypeInformation.of(new TypeHint<Tuple2<Long, Long>>() {}), // type informationTuple2.of(0L, 0L)); // default value of the state, if nothing was setsum = getRuntimeContext().getState(descriptor);}}// this can be used in a streaming program like this (assuming we have a StreamExecutionEnvironment env)env.fromElements(Tuple2.of(1L, 3L), Tuple2.of(1L, 5L), Tuple2.of(1L, 7L), Tuple2.of(1L, 4L), Tuple2.of(1L, 2L)).keyBy(0).flatMap(new CountWindowAverage()).print();// the printed output will be (1,4) and (1,5)
class CountWindowAverage extends RichFlatMapFunction[(Long, Long), (Long, Long)] {private var sum: ValueState[(Long, Long)] = _override def flatMap(input: (Long, Long), out: Collector[(Long, Long)]): Unit = {// access the state valueval tmpCurrentSum = sum.value// If it hasn't been used before, it will be nullval currentSum = if (tmpCurrentSum != null) {tmpCurrentSum} else {(0L, 0L)}// update the countval newSum = (currentSum._1 + 1, currentSum._2 + input._2)// update the statesum.update(newSum)// if the count reaches 2, emit the average and clear the stateif (newSum._1 >= 2) {out.collect((input._1, newSum._2 / newSum._1))sum.clear()}}override def open(parameters: Configuration): Unit = {sum = getRuntimeContext.getState(new ValueStateDescriptor[(Long, Long)](d7600dc2af183d329a13932ce2183086)]))}}object ExampleCountWindowAverage extends App {val env = StreamExecutionEnvironment.getExecutionEnvironmentenv.fromCollection(List((1L, 3L),(1L, 5L),(1L, 7L),(1L, 4L),(1L, 2L))).keyBy(_._1).flatMap(new CountWindowAverage()).print()// the printed output will be (1,4) and (1,5)env.execute("ExampleManagedState")}
这个例子实现了一个穷人的计数窗口。我们通过第一个字段键入元组(在示例中都具有相同的键1)。该函数将计数和运行总和存储在a中ValueState。一旦计数达到2,它将发出平均值并清除状态,以便我们重新开始0。请注意,如果我们在第一个字段中具有不同值的元组,则会为每个不同的输入键保存不同的状态值。
状态生存时间(TTL)
一个时间的生存期(TTL)可以被分配给任何类型的被Keys化状态。如果配置了TTL并且状态值已过期,则将尽力清除存储的值,这将在下面更详细地讨论。
所有状态集合类型都支持每个条目的TTL。这意味着列表数据元和映射条目将独立过期。
为了使用状态TTL,必须首先构建StateTtlConfig配置对象。然后,可以通过传递配置在任何状态描述符中启用TTL函数:
import org.apache.flink.api.common.state.StateTtlConfig;import org.apache.flink.api.common.state.ValueStateDescriptor;import org.apache.flink.api.common.time.Time;StateTtlConfig ttlConfig = StateTtlConfig.newBuilder(Time.seconds(1)).setUpdateType(StateTtlConfig.UpdateType.OnCreateAndWrite).setStateVisibility(StateTtlConfig.StateVisibility.NeverReturnExpired).build();ValueStateDescriptor<String> stateDescriptor = new ValueStateDescriptor<>("text state", String.class);stateDescriptor.enableTimeToLive(ttlConfig);
import org.apache.flink.api.common.state.StateTtlConfigimport org.apache.flink.api.common.state.ValueStateDescriptorimport org.apache.flink.api.common.time.Timeval ttlConfig = StateTtlConfig.newBuilder(Time.seconds(1)).setUpdateType(StateTtlConfig.UpdateType.OnCreateAndWrite).setStateVisibility(StateTtlConfig.StateVisibility.NeverReturnExpired).buildval stateDescriptor = new ValueStateDescriptor[String](e1298a9b6602b6a61d2d70e189969b91)stateDescriptor.enableTimeToLive(ttlConfig)
配置有几个选项需要考虑:
该newBuilder方法的第一个参数是必需的,它是生存时间值。
更新类型配置状态TTL刷新时(默认情况下OnCreateAndWrite):
StateTtlConfig.UpdateType.OnCreateAndWrite- 仅限创建和写入权限StateTtlConfig.UpdateType.OnReadAndWrite- 也读取访问权限
状态可见性配置是否在读取访问时返回过期值(如果尚未清除NeverReturnExpired)(默认情况下):
StateTtlConfig.StateVisibility.NeverReturnExpired- 永远不会返回过期的值StateTtlConfig.StateVisibility.ReturnExpiredIfNotCleanedUp- 如果仍然可用则返回
在这种情况下NeverReturnExpired,过期状态表现得好像它不再存在,即使它仍然必须被删除。该选项对于在TTL之后必须严格读取访问数据的用例非常有用,例如应用程序使用隐私敏感数据。
另一个选项ReturnExpiredIfNotCleanedUp允许在清理之前返回过期状态。
笔记:
状态后台存储上次修改的时间戳以及用户值,这意味着启用此函数会增加状态存储的消耗。堆状态后台存储一个额外的Java对象,其中包含对用户状态对象的引用和内存中的原始长值。RocksDB状态后台为每个存储值,列表条目或映射条目添加8个字节。
目前仅支持参考处理时间的 TTL 。
尝试恢复先前未配置TTL的状态,使用TTL启用描述符或反之亦然将导致兼容性失败和
StateMigrationException。TTL配置不是检查点或保存点的一部分,而是Flink如何在当前运行的作业中处理它的方式。
清除过期状态
目前,只有在显式读出过期值时才会删除过期值,例如通过调用ValueState.value()。
注意这意味着默认情况下,如果未读取过期状态,则不会将其删除,这可能会导致状态不断增长。这可能在将来的版本中发生变化
此外,您可以在获取完整状态SNAPSHOT时激活清理,这将减小其大小。在当前实现下不会清除本地状态,但在从上一个SNAPSHOT恢复的情况下,它不会包括已删除的过期状态。它可以配置为StateTtlConfig:
import org.apache.flink.api.common.state.StateTtlConfig;import org.apache.flink.api.common.time.Time;StateTtlConfig ttlConfig = StateTtlConfig.newBuilder(Time.seconds(1)).cleanupFullSnapshot().build();
import org.apache.flink.api.common.state.StateTtlConfigimport org.apache.flink.api.common.time.Timeval ttlConfig = StateTtlConfig.newBuilder(Time.seconds(1)).cleanupFullSnapshot.build
此选项不适用于RocksDB状态后台中的增量检查点。
未来将添加更多策略,以便在后台自动清理过期状态。
在Scala DataStream API中声明
除了上面描述的接口之外,Scala API还具有单个on的有状态map()或flatMap()函数的快捷方式 。用户函数获取in中的当前值,并且必须返回将用于更新状态的更新值。ValueState``KeyedStream``ValueState``Option
val stream: DataStream[(String, Int)] = ...val counts: DataStream[(String, Int)] = stream.keyBy(_._1).mapWithState((in: (String, Int), count: Option[Int]) =>count match {case Some(c) => ( (in._1, c), Some(c + in._2) )case None => ( (in._1, 0), Some(in._2) )})
使用托管算子状态
要使用托管算子状态,有状态函数可以实现更通用的CheckpointedFunction 接口或ListCheckpointed<T extends Serializable>接口。
CheckpointedFunction
该CheckpointedFunction接口提供对具有不同重新分发方案的非被Keys化状态的访问。它需要实现两种方法:
void snapshotState(FunctionSnapshotContext context) throws Exception;void initializeState(FunctionInitializationContext context) throws Exception;
每当必须执行检查点时,都会snapshotState()被调用。initializeState()每次初始化用户定义的函数时,都会调用对应函数,即首次初始化函数时,或者当函数实际从早期检查点恢复时。鉴于此,initializeState()不仅是初始化不同类型状态的地方,而且还包括状态恢复逻辑。
目前,支持列表样式的托管算子状态。预期该状态是一个List可序列化的对象,彼此独立,因此有资格在重新缩放时重新分配。换句话说,这些对象是可以重新分配非被Keys化状态的最精细的粒度。根据状态访问方法,定义了以下重新分发方案:
偶分裂再分配:每个 算子返回一个状态数据元列表。整个状态在逻辑上是所有列表的串联。在恢复/重新分配时,列表被平均分成与并行 算子一样多的子列表。每个 算子都会获得一个子列表,该子列表可以为空,也可以包含一个或多个数据元。例如,如果使用并行性1,则 算子的检查点状态包含数据元,
element1并且element2当将并行性增加到2时,element1可能最终在 算子实例0中,而element2将转到 算子实例1。联合重新分配:每个 算子返回一个状态数据元列表。整个状态在逻辑上是所有列表的串联。在恢复/重新分配时,每个 算子都会获得完整的状态数据元列表。
下面是一个有状态的示例SinkFunction,用于CheckpointedFunction 在将数据元发送到外部世界之前对其进行缓冲。它演示了基本的偶分裂再分配列表状态:
public class BufferingSinkimplements SinkFunction<Tuple2<String, Integer>>,CheckpointedFunction {private final int threshold;private transient ListState<Tuple2<String, Integer>> checkpointedState;private List<Tuple2<String, Integer>> bufferedElements;public BufferingSink(int threshold) {this.threshold = threshold;this.bufferedElements = new ArrayList<>();}@Overridepublic void invoke(Tuple2<String, Integer> value) throws Exception {bufferedElements.add(value);if (bufferedElements.size() == threshold) {for (Tuple2<String, Integer> element: bufferedElements) {// send it to the sink}bufferedElements.clear();}}@Overridepublic void snapshotState(FunctionSnapshotContext context) throws Exception {checkpointedState.clear();for (Tuple2<String, Integer> element : bufferedElements) {checkpointedState.add(element);}}@Overridepublic void initializeState(FunctionInitializationContext context) throws Exception {ListStateDescriptor<Tuple2<String, Integer>> descriptor =new ListStateDescriptor<>("buffered-elements",TypeInformation.of(new TypeHint<Tuple2<String, Integer>>() {}));checkpointedState = context.getOperatorStateStore().getListState(descriptor);if (context.isRestored()) {for (Tuple2<String, Integer> element : checkpointedState.get()) {bufferedElements.add(element);}}}}
class BufferingSink(threshold: Int = 0)extends SinkFunction[(String, Int)]with CheckpointedFunction {@transientprivate var checkpointedState: ListState[(String, Int)] = _private val bufferedElements = ListBuffer[(String, Int)]()override def invoke(value: (String, Int)): Unit = {bufferedElements += valueif (bufferedElements.size == threshold) {for (element <- bufferedElements) {// send it to the sink}bufferedElements.clear()}}override def snapshotState(context: FunctionSnapshotContext): Unit = {checkpointedState.clear()for (element <- bufferedElements) {checkpointedState.add(element)}}override def initializeState(context: FunctionInitializationContext): Unit = {val descriptor = new ListStateDescriptor[(String, Int)](f7f0685c61a0b09f4f30d6e897419404)]() {}))checkpointedState = context.getOperatorStateStore.getListState(descriptor)if(context.isRestored) {for(element <- checkpointedState.get()) {bufferedElements += element}}}}
该initializeState方法作为参数a FunctionInitializationContext。这用于初始化非被Keys化状态“容器”。这些是一种类型的容器,ListState其中非被Keys化状态对象将在检查点存储。
注意状态是如何初始化的,类似于被Keys化状态,其中StateDescriptor包含状态名称和有关状态所包含值的类型的信息:
ListStateDescriptor<Tuple2<String, Integer>> descriptor =new ListStateDescriptor<>("buffered-elements",TypeInformation.of(new TypeHint<Tuple2<Long, Long>>() {}));checkpointedState = context.getOperatorStateStore().getListState(descriptor);
val descriptor = new ListStateDescriptor[(String, Long)](7fd91510c23d82220f7caab3540e4a0c)]() {}))checkpointedState = context.getOperatorStateStore.getListState(descriptor)
状态访问方法的命名约定包含其重新分发模式,后跟其状态结构。例如,要在还原时使用联合重新分发方案的列表状态,请使用以下方式访问状态getUnionListState(descriptor)。如果方法名称不包含重新分发模式,例如 getListState(descriptor),它只是意味着将使用基本的偶分裂再分配方案。
在初始化容器之后,我们使用isRestored()上下文的方法来检查我们是否在失败后恢复。如果是这样true,即我们正在恢复,则应用恢复逻辑。
如修改的代码所示,在状态初始化期间恢复的BufferingSink这个ListState被保存在类变量中以供将来使用snapshotState()。在那里,ListState被清除由先前的检查点包含的所有对象,然后填充我们要设置检查点新的。
作为旁注,被Keys化状态也可以在initializeState()方法中初始化。这可以使用提供的方式完成FunctionInitializationContext。
ListCheckpointed
该ListCheckpointed接口是比较有限的变体CheckpointedFunction,它仅支持与恢复甚至分裂的再分配方案列表式的状态。它还需要实现两种方法:
List<T> snapshotState(long checkpointId, long timestamp) throws Exception;void restoreState(List<T> state) throws Exception;
在snapshotState() 算子上应该返回检查点的对象列表,并且 restoreState必须在恢复时处理这样的列表。如果状态不是重新分区,可以随时返回Collections.singletonList(MY_STATE)的snapshotState()。
有状态源函数
与其他算子相比,有状态的来源需要更多的关注。为了使状态和输出集合的更新成为原子(在故障/恢复时精确一次的语义所需),用户需要从源的上下文中获取锁定。
public static class CounterSourceextends RichParallelSourceFunction<Long>implements ListCheckpointed<Long> {/** current offset for exactly once semantics */private Long offset;/** flag for job cancellation */private volatile boolean isRunning = true;@Overridepublic void run(SourceContext<Long> ctx) {final Object lock = ctx.getCheckpointLock();while (isRunning) {// output and state update are atomicsynchronized (lock) {ctx.collect(offset);offset += 1;}}}@Overridepublic void cancel() {isRunning = false;}@Overridepublic List<Long> snapshotState(long checkpointId, long checkpointTimestamp) {return Collections.singletonList(offset);}@Overridepublic void restoreState(List<Long> state) {for (Long s : state)offset = s;}}
class CounterSourceextends RichParallelSourceFunction[Long]with ListCheckpointed[Long] {@volatileprivate var isRunning = trueprivate var offset = 0Loverride def run(ctx: SourceFunction.SourceContext[Long]): Unit = {val lock = ctx.getCheckpointLockwhile (isRunning) {// output and state update are atomiclock.synchronized({ctx.collect(offset)offset += 1})}}override def cancel(): Unit = isRunning = falseoverride def restoreState(state: util.List[Long]): Unit =for (s <- state) {offset = s}override def snapshotState(checkpointId: Long, timestamp: Long): util.List[Long] =Collections.singletonList(offset)}
当Flink完全确认检查点与外界通信时,某些算子可能需要这些信息。在这种情况下,请参阅org.apache.flink.runtime.state.CheckpointListener界面。
