Github user aljoscha commented on a diff in the pull request:
https://github.com/apache/flink/pull/2648#discussion_r83666257
--- Diff:
flink-core/src/main/java/org/apache/flink/api/common/state/OperatorStateStore.java
---
@@ -18,14 +18,18 @@
package org.apache.flink.api.common.state;
+import org.apache.flink.annotation.PublicEvolving;
+
import java.io.Serializable;
import java.util.Set;
/**
- * Interface for a backend that manages operator state.
+ * This interface contains methods for registering operator state with a
managed store.
*/
+@PublicEvolving
public interface OperatorStateStore {
+ /** The default namespace for state in cases where no state name is
provided */
String DEFAULT_OPERATOR_STATE_NAME = "_default_";
--- End diff --
This is an implementation detail that should not be exposed on this
interface.
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---