You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flink.apache.org by uc...@apache.org on 2017/01/23 17:01:30 UTC

[1/4] flink git commit: [FLINK-5610] [docs] Rename 'Installation and Setup' to 'Project Setup'

Repository: flink
Updated Branches:
  refs/heads/master cfb95b907 -> 24fe08148


[FLINK-5610] [docs] Rename 'Installation and Setup' to 'Project Setup'


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

Branch: refs/heads/master
Commit: b0d2905691105391884ee85f19fd1f8dbab46d98
Parents: 3e3387b
Author: Ufuk Celebi <uc...@apache.org>
Authored: Mon Jan 23 16:48:31 2017 +0100
Committer: Ufuk Celebi <uc...@apache.org>
Committed: Mon Jan 23 17:57:12 2017 +0100

----------------------------------------------------------------------
 docs/start/index.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/b0d29056/docs/start/index.md
----------------------------------------------------------------------
diff --git a/docs/start/index.md b/docs/start/index.md
index c6cefe2..a0b42de 100644
--- a/docs/start/index.md
+++ b/docs/start/index.md
@@ -1,7 +1,7 @@
 ---
 section-break: true
-nav-title: '<i class="fa fa-cogs title maindish" aria-hidden="true"></i> Installation & Setup'
-title: "Installation & Setup"
+nav-title: '<i class="fa fa-cogs title maindish" aria-hidden="true"></i> Project Setup'
+title: "Project Setup"
 nav-id: "start"
 nav-parent_id: root
 nav-pos: 4


[4/4] flink git commit: [FLINK-5609] [docs] Add last built time

Posted by uc...@apache.org.
[FLINK-5609] [docs] Add last built time


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/24fe0814
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/24fe0814
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/24fe0814

Branch: refs/heads/master
Commit: 24fe08148fafde2350159d7e692b2a738acb9d91
Parents: 8ef11e9
Author: Ufuk Celebi <uc...@apache.org>
Authored: Mon Jan 23 17:55:35 2017 +0100
Committer: Ufuk Celebi <uc...@apache.org>
Committed: Mon Jan 23 17:57:30 2017 +0100

----------------------------------------------------------------------
 docs/_plugins/build_time.rb | 31 +++++++++++++++++++++++++++++++
 docs/index.md               |  5 +++--
 2 files changed, 34 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/24fe0814/docs/_plugins/build_time.rb
----------------------------------------------------------------------
diff --git a/docs/_plugins/build_time.rb b/docs/_plugins/build_time.rb
new file mode 100644
index 0000000..61aa5e8
--- /dev/null
+++ b/docs/_plugins/build_time.rb
@@ -0,0 +1,31 @@
+# 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.
+
+module Jekyll
+  class BuildTimeTag < Liquid::Tag
+
+ 	def initialize(tag_name, input, tokens)
+      super
+    end
+
+    def render(context)
+    	Time.now.strftime("%D, %r %Z")
+    end
+  end
+end
+
+Liquid::Template.register_tag('build_time', Jekyll::BuildTimeTag)
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/flink/blob/24fe0814/docs/index.md
----------------------------------------------------------------------
diff --git a/docs/index.md b/docs/index.md
index 595a094..4af5305 100644
--- a/docs/index.md
+++ b/docs/index.md
@@ -23,7 +23,9 @@ specific language governing permissions and limitations
 under the License.
 -->
 
-This documentation is for Apache Flink version {{ site.version }}.
+
+
+This documentation is for Apache Flink version {{ site.version }}. These pages have been built at: {% build_time %}.
 
 Apache Flink is an open source platform for distributed stream and batch data processing. Flink\u2019s core is a streaming dataflow engine that provides data distribution, communication, and fault tolerance for distributed computations over data streams. Flink also builds batch processing on top of the streaming engine, overlaying native iteration support, managed memory, and program optimization.
 
@@ -42,4 +44,3 @@ While all parts of the API that were marked as public and stable are still suppo
 newer interfaces where applicable.
 
 For users that look to upgrade an operation Flink system to the latest version, we recommend to check out the guide on [upgrading Apache Flink](ops/upgrading.html)
-


[3/4] flink git commit: [docs] Group monitoring/debugging docs

Posted by uc...@apache.org.
[docs] Group monitoring/debugging docs


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/8ef11e9e
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/8ef11e9e
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/8ef11e9e

Branch: refs/heads/master
Commit: 8ef11e9eb7ed9bcb863b187636dcce435316515d
Parents: b0d2905
Author: Ufuk Celebi <uc...@apache.org>
Authored: Mon Jan 23 17:56:12 2017 +0100
Committer: Ufuk Celebi <uc...@apache.org>
Committed: Mon Jan 23 17:57:30 2017 +0100

----------------------------------------------------------------------
 docs/monitoring/back_pressure.md          | 2 +-
 docs/monitoring/checkpoint_monitoring.md  | 4 ++--
 docs/monitoring/debugging_classloading.md | 2 +-
 docs/monitoring/debugging_event_time.md   | 2 +-
 docs/monitoring/large_state_tuning.md     | 2 +-
 docs/monitoring/rest_api.md               | 2 +-
 6 files changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/8ef11e9e/docs/monitoring/back_pressure.md
----------------------------------------------------------------------
diff --git a/docs/monitoring/back_pressure.md b/docs/monitoring/back_pressure.md
index 9c3265b..4a4bd22 100644
--- a/docs/monitoring/back_pressure.md
+++ b/docs/monitoring/back_pressure.md
@@ -1,5 +1,5 @@
 ---
-title: "Back Pressure Monitoring"
+title: "Monitoring Back Pressure"
 nav-parent_id: monitoring
 nav-pos: 4
 ---

http://git-wip-us.apache.org/repos/asf/flink/blob/8ef11e9e/docs/monitoring/checkpoint_monitoring.md
----------------------------------------------------------------------
diff --git a/docs/monitoring/checkpoint_monitoring.md b/docs/monitoring/checkpoint_monitoring.md
index faa38f1..5a4dba7 100644
--- a/docs/monitoring/checkpoint_monitoring.md
+++ b/docs/monitoring/checkpoint_monitoring.md
@@ -1,7 +1,7 @@
 ---
-title: "Checkpoint Monitoring"
+title: "Monitoring Checkpointing"
 nav-parent_id: monitoring
-nav-pos: 2
+nav-pos: 3
 ---
 <!--
 Licensed to the Apache Software Foundation (ASF) under one

http://git-wip-us.apache.org/repos/asf/flink/blob/8ef11e9e/docs/monitoring/debugging_classloading.md
----------------------------------------------------------------------
diff --git a/docs/monitoring/debugging_classloading.md b/docs/monitoring/debugging_classloading.md
index 40822c0..d50d60d 100644
--- a/docs/monitoring/debugging_classloading.md
+++ b/docs/monitoring/debugging_classloading.md
@@ -1,7 +1,7 @@
 ---
 title: "Debugging Classloading"
 nav-parent_id: monitoring
-nav-pos: 8
+nav-pos: 13
 ---
 <!--
 Licensed to the Apache Software Foundation (ASF) under one

http://git-wip-us.apache.org/repos/asf/flink/blob/8ef11e9e/docs/monitoring/debugging_event_time.md
----------------------------------------------------------------------
diff --git a/docs/monitoring/debugging_event_time.md b/docs/monitoring/debugging_event_time.md
index 11e1046..6260779 100644
--- a/docs/monitoring/debugging_event_time.md
+++ b/docs/monitoring/debugging_event_time.md
@@ -1,7 +1,7 @@
 ---
 title: "Debugging Windows & Event Time"
 nav-parent_id: monitoring
-nav-pos: 9
+nav-pos: 12
 ---
 <!--
 Licensed to the Apache Software Foundation (ASF) under one

http://git-wip-us.apache.org/repos/asf/flink/blob/8ef11e9e/docs/monitoring/large_state_tuning.md
----------------------------------------------------------------------
diff --git a/docs/monitoring/large_state_tuning.md b/docs/monitoring/large_state_tuning.md
index 053efd6..78a5cb4 100644
--- a/docs/monitoring/large_state_tuning.md
+++ b/docs/monitoring/large_state_tuning.md
@@ -1,7 +1,7 @@
 ---
 title: "Debugging and Tuning Checkpoints and Large State"
 nav-parent_id: monitoring
-nav-pos: 5
+nav-pos: 11
 ---
 <!--
 Licensed to the Apache Software Foundation (ASF) under one

http://git-wip-us.apache.org/repos/asf/flink/blob/8ef11e9e/docs/monitoring/rest_api.md
----------------------------------------------------------------------
diff --git a/docs/monitoring/rest_api.md b/docs/monitoring/rest_api.md
index d49dece..a35b7c7 100644
--- a/docs/monitoring/rest_api.md
+++ b/docs/monitoring/rest_api.md
@@ -1,5 +1,5 @@
 ---
-title:  "Monitoring REST API"
+title: "Monitoring REST API"
 nav-parent_id: monitoring
 nav-pos: 10
 ---


[2/4] flink git commit: [FLINK-5618] [docs] Add intial queryable state page

Posted by uc...@apache.org.
[FLINK-5618] [docs] Add intial queryable state page


Project: http://git-wip-us.apache.org/repos/asf/flink/repo
Commit: http://git-wip-us.apache.org/repos/asf/flink/commit/3e3387bf
Tree: http://git-wip-us.apache.org/repos/asf/flink/tree/3e3387bf
Diff: http://git-wip-us.apache.org/repos/asf/flink/diff/3e3387bf

Branch: refs/heads/master
Commit: 3e3387bf812eaef7c89ebe6b0f7f69acd4c313a4
Parents: cfb95b9
Author: Ufuk Celebi <uc...@apache.org>
Authored: Mon Jan 23 16:40:56 2017 +0100
Committer: Ufuk Celebi <uc...@apache.org>
Committed: Mon Jan 23 17:57:12 2017 +0100

----------------------------------------------------------------------
 docs/dev/stream/queryable_state.md | 32 ++++++++++++++++++++++++++++++++
 1 file changed, 32 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flink/blob/3e3387bf/docs/dev/stream/queryable_state.md
----------------------------------------------------------------------
diff --git a/docs/dev/stream/queryable_state.md b/docs/dev/stream/queryable_state.md
new file mode 100644
index 0000000..5f47df8
--- /dev/null
+++ b/docs/dev/stream/queryable_state.md
@@ -0,0 +1,32 @@
+---
+title: "Queryable State"
+nav-parent_id: streaming
+nav-pos: 61
+---
+<!--
+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.
+-->
+
+* ToC
+{:toc}
+
+<div class="alert alert-warning">
+  <strong>Note:</strong> The client APIs for queryable state are currently in an evolving state and there are <strong>no guarantees</strong> made about stability of the provided interfaces. It is likely that there will be breaking API changes on the client side in the upcoming Flink versions.
+</div>
+
+Coming up...
\ No newline at end of file