You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@beam.apache.org by GitBox <gi...@apache.org> on 2020/08/06 20:27:29 UTC

[GitHub] [beam] reuvenlax commented on a change in pull request #12474: [BEAM-10650] OrderedListState API

reuvenlax commented on a change in pull request #12474:
URL: https://github.com/apache/beam/pull/12474#discussion_r466666953



##########
File path: sdks/java/core/src/main/java/org/apache/beam/sdk/state/OrderedListState.java
##########
@@ -0,0 +1,60 @@
+/*
+ * 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 org.apache.beam.sdk.state;
+
+import org.apache.beam.sdk.annotations.Experimental;
+import org.apache.beam.sdk.annotations.Experimental.Kind;
+import org.apache.beam.sdk.values.TimestampedValue;
+import org.joda.time.Instant;
+
+/**
+ * A {@link ReadableState} cell containing a list of values sorted by timestamp. Timestamped values
+ * can be added to the list, and subranges can be read out in order. Subranges of the list can be
+ * deleted as well.
+ */
+@Experimental(Kind.STATE)
+public interface OrderedListState<T>
+    extends GroupingState<TimestampedValue<T>, Iterable<TimestampedValue<T>>> {
+
+  /** Read the entire list ordered by timestamp. */
+  @Override
+  Iterable<TimestampedValue<T>> read();
+
+  /**
+   * Read a timestamp-limited subrange of the list. The result is ordered by timestamp.
+   *
+   * <p>All values with timestamps >= minTimestamp and < limitTimestamp will be in the resuling
+   * iterable.
+   */
+  Iterable<TimestampedValue<T>> readRange(Instant minTimestamp, Instant limitTimestamp);
+
+  /** Clear all values in the list. */
+  @Override
+  void clear();
+
+  /**
+   * Clear a timestamp-limited subrange of the list.
+   *
+   * <p>All values with timestamps >= minTimestamp and < limitTimestamp will be removed from the
+   * list.
+   */
+  void clearRange(Instant minTimestamp, Instant limitTimestamp);
+
+  @Override
+  OrderedListState<T> readLater();

Review comment:
       Done

##########
File path: runners/google-cloud-dataflow-java/worker/src/main/java/org/apache/beam/runners/dataflow/worker/WindmillStateInternals.java
##########
@@ -456,6 +470,64 @@ protected WorkItemCommitRequest persistDirectly(WindmillStateCache.ForKey cache)
     }
   }
 
+  private static class WindmillOrderedList<T> extends SimpleWindmillState
+      implements OrderedListState<T> {
+
+    private final StateNamespace namespace;
+    private final StateTag<OrderedListState<T>> spec;
+    private final ByteString stateKey;
+    private final String stateFamily;
+    private final Coder<T> elemCoder;
+
+    private WindmillOrderedList(
+        StateNamespace namespace,
+        StateTag<OrderedListState<T>> spec,
+        String stateFamily,
+        Coder<T> elemCoder,
+        boolean isNewKey) {
+      this.namespace = namespace;
+      this.spec = spec;
+      this.stateKey = encodeKey(namespace, spec);
+      this.stateFamily = stateFamily;
+      this.elemCoder = elemCoder;
+    }
+
+    @Override
+    public Iterable<TimestampedValue<T>> read() {
+      return null;

Review comment:
       done

##########
File path: sdks/java/core/src/main/java/org/apache/beam/sdk/state/OrderedListState.java
##########
@@ -0,0 +1,60 @@
+/*
+ * 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 org.apache.beam.sdk.state;
+
+import org.apache.beam.sdk.annotations.Experimental;
+import org.apache.beam.sdk.annotations.Experimental.Kind;
+import org.apache.beam.sdk.values.TimestampedValue;
+import org.joda.time.Instant;
+
+/**
+ * A {@link ReadableState} cell containing a list of values sorted by timestamp. Timestamped values
+ * can be added to the list, and subranges can be read out in order. Subranges of the list can be
+ * deleted as well.
+ */
+@Experimental(Kind.STATE)
+public interface OrderedListState<T>
+    extends GroupingState<TimestampedValue<T>, Iterable<TimestampedValue<T>>> {
+
+  /** Read the entire list ordered by timestamp. */
+  @Override
+  Iterable<TimestampedValue<T>> read();

Review comment:
       Removed

##########
File path: sdks/java/core/src/main/java/org/apache/beam/sdk/state/OrderedListState.java
##########
@@ -0,0 +1,60 @@
+/*
+ * 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 org.apache.beam.sdk.state;
+
+import org.apache.beam.sdk.annotations.Experimental;
+import org.apache.beam.sdk.annotations.Experimental.Kind;
+import org.apache.beam.sdk.values.TimestampedValue;
+import org.joda.time.Instant;
+
+/**
+ * A {@link ReadableState} cell containing a list of values sorted by timestamp. Timestamped values
+ * can be added to the list, and subranges can be read out in order. Subranges of the list can be
+ * deleted as well.
+ */
+@Experimental(Kind.STATE)
+public interface OrderedListState<T>
+    extends GroupingState<TimestampedValue<T>, Iterable<TimestampedValue<T>>> {
+
+  /** Read the entire list ordered by timestamp. */
+  @Override
+  Iterable<TimestampedValue<T>> read();
+
+  /**
+   * Read a timestamp-limited subrange of the list. The result is ordered by timestamp.
+   *
+   * <p>All values with timestamps >= minTimestamp and < limitTimestamp will be in the resuling

Review comment:
       Added documentation to this effect.




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