Regenerate website

Project: http://git-wip-us.apache.org/repos/asf/beam-site/repo
Commit: http://git-wip-us.apache.org/repos/asf/beam-site/commit/daa87382
Tree: http://git-wip-us.apache.org/repos/asf/beam-site/tree/daa87382
Diff: http://git-wip-us.apache.org/repos/asf/beam-site/diff/daa87382

Branch: refs/heads/asf-site
Commit: daa873826c26aeaa839dd67c46d9ba6d792886c2
Parents: 676f675
Author: Davor Bonaci <da...@google.com>
Authored: Tue Apr 25 18:29:14 2017 -0700
Committer: Davor Bonaci <da...@google.com>
Committed: Tue Apr 25 18:29:14 2017 -0700

----------------------------------------------------------------------
 content/contribute/work-in-progress/index.html         | 6 ------
 content/documentation/sdks/python-custom-io/index.html | 2 ++
 2 files changed, 2 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/beam-site/blob/daa87382/content/contribute/work-in-progress/index.html
----------------------------------------------------------------------
diff --git a/content/contribute/work-in-progress/index.html 
b/content/contribute/work-in-progress/index.html
index f2eeab1..90eff24 100644
--- a/content/contribute/work-in-progress/index.html
+++ b/content/contribute/work-in-progress/index.html
@@ -192,12 +192,6 @@
       <td>-</td>
       <td><a 
href="https://lists.apache.org/thread.html/e38ac4e4914a6cb1b865b1f32a6ca06c2be28ea4aa0f6b18393de66f@%3Cdev.beam.apache.org%3E";>thread</a></td>
     </tr>
-    <tr>
-      <td>Beam SQL DSL</td>
-      <td><a 
href="https://github.com/apache/beam/tree/DSL_SQL";>DSL_SQL</a></td>
-      <td><a 
href="https://issues.apache.org/jira/browse/BEAM/component/12332480";>dsl-sql</a></td>
-      <td><a 
href="https://issues.apache.org/jira/browse/BEAM-301";>BEAM-301</a></td>
-    </tr>
   </tbody>
 </table>
 

http://git-wip-us.apache.org/repos/asf/beam-site/blob/daa87382/content/documentation/sdks/python-custom-io/index.html
----------------------------------------------------------------------
diff --git a/content/documentation/sdks/python-custom-io/index.html 
b/content/documentation/sdks/python-custom-io/index.html
index d078e33..629ef0f 100644
--- a/content/documentation/sdks/python-custom-io/index.html
+++ b/content/documentation/sdks/python-custom-io/index.html
@@ -342,6 +342,7 @@
 <div class="highlighter-rouge"><pre class="highlight"><code>class 
CountingSource(iobase.BoundedSource):
 
   def __init__(self, count):
+    self.records_read = Metrics.counter(self.__class__, 'recordsRead')
     self._count = count
 
   def estimate_size(self):
@@ -359,6 +360,7 @@
     for i in range(self._count):
       if not range_tracker.try_claim(i):
         return
+      self.records_read.inc()
       yield i
 
   def split(self, desired_bundle_size, start_position=None,

Reply via email to