You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by jr...@apache.org on 2017/02/24 00:27:04 UTC

[1/3] incubator-impala git commit: Three misc webpage changes

Repository: incubator-impala
Updated Branches:
  refs/heads/master 025b5dbbb -> 1e73d7fc3


Three misc webpage changes

1. Change the content width to 80% of the screen. Lots of our webpages
are very wide, and were squashed into the previous fixed width.

2. Fix a bug where some thread group tables weren't sortable or
searchable.

3. Make the backends list a searchable, sortable table.

Change-Id: Ica0578dabb7e27e6fd45ee4f31a1418ac3adc891
Reviewed-on: http://gerrit.cloudera.org:8080/6045
Reviewed-by: Matthew Jacobs <mj...@cloudera.com>
Tested-by: Impala Public Jenkins


Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/53e9b68e
Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/53e9b68e
Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/53e9b68e

Branch: refs/heads/master
Commit: 53e9b68ec348c8f80e510448d8855c23778104fc
Parents: 025b5db
Author: Henry Robinson <he...@cloudera.com>
Authored: Thu Feb 16 17:35:40 2017 -0800
Committer: Impala Public Jenkins <im...@gerrit.cloudera.org>
Committed: Thu Feb 23 21:30:25 2017 +0000

----------------------------------------------------------------------
 www/backends.tmpl      | 28 +++++++++++++++++++++++-----
 www/common-header.tmpl |  2 +-
 www/thread-group.tmpl  |  4 ++--
 3 files changed, 26 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/53e9b68e/www/backends.tmpl
----------------------------------------------------------------------
diff --git a/www/backends.tmpl b/www/backends.tmpl
index 9f31976..cef77b7 100644
--- a/www/backends.tmpl
+++ b/www/backends.tmpl
@@ -20,10 +20,28 @@ under the License.
 
 <h2>Known backend(s): {{%backends}}</h2>
 
-<ul class="list-group">
-{{#backends}}
-<li class="list-group-item">{{.}}</li>
-{{/backends}}
-</ul>
+<table id="backends" class='table table-hover table-bordered'>
+  <thead>
+    <tr>
+      <th>Backend</th>
+    </tr>
+  </thead>
+  <tbody>
+    {{#backends}}
+    <tr>
+      <td>{{.}}</td>
+    </tr>
+    {{/backends}}
+  </tbody>
+</table>
+
+<script>
+    $(document).ready(function() {
+        $('#backends').DataTable({
+            "order": [[ 0, "desc" ]],
+            "pageLength": 100
+        });
+    });
+</script>
 
 {{> www/common-footer.tmpl}}

http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/53e9b68e/www/common-header.tmpl
----------------------------------------------------------------------
diff --git a/www/common-header.tmpl b/www/common-header.tmpl
index 9dd1788..d981f09 100644
--- a/www/common-header.tmpl
+++ b/www/common-header.tmpl
@@ -44,7 +44,7 @@ common-footer.tmpl) }}
         </nav>
       </div>
     </header>
-<div class='container'>
+<div class='container' style='width:80%'>
 {{#error}}
 <div class="alert alert-danger">
   <strong>Error:</strong>

http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/53e9b68e/www/thread-group.tmpl
----------------------------------------------------------------------
diff --git a/www/thread-group.tmpl b/www/thread-group.tmpl
index 19730c6..143a029 100644
--- a/www/thread-group.tmpl
+++ b/www/thread-group.tmpl
@@ -20,7 +20,7 @@ under the License.
 
 <h2>Thread Group: {{thread-group.category}}</h2>
 
-<table id="{{thread-group.category}}-tbl" class='table table-hover table-bordered'
+<table id="threads-tbl" class='table table-hover table-bordered'
        style='table-layout:fixed; word-wrap: break-word'>
   <thead>
     <tr>
@@ -44,7 +44,7 @@ under the License.
 
 <script>
     $(document).ready(function() {
-        $('#{{thread-group.category}}-tbl').DataTable({
+        $('#threads-tbl').DataTable({
             "order": [[ 1, "desc" ]],
             "pageLength": 100
         });


[2/3] incubator-impala git commit: [DOCS] Fix build warning due to removal of FAQ entries.

Posted by jr...@apache.org.
[DOCS] Fix build warning due to removal of FAQ entries.

Change-Id: I9d4d64e73ecbad0a3491c87bea0dfebc5eefa3ef
Reviewed-on: http://gerrit.cloudera.org:8080/6126
Reviewed-by: Ambreen Kazi <am...@cloudera.com>
Reviewed-by: Laurel Hale <la...@cloudera.com>
Reviewed-by: John Russell <jr...@cloudera.com>
Tested-by: Impala Public Jenkins


Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/20ee7a66
Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/20ee7a66
Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/20ee7a66

Branch: refs/heads/master
Commit: 20ee7a661f933e1d30880bfea343dbdb2b52e464
Parents: 53e9b68
Author: John Russell <jr...@cloudera.com>
Authored: Thu Feb 23 10:30:20 2017 -0800
Committer: Impala Public Jenkins <im...@gerrit.cloudera.org>
Committed: Fri Feb 24 00:10:05 2017 +0000

----------------------------------------------------------------------
 docs/topics/impala_disk_space.xml | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/20ee7a66/docs/topics/impala_disk_space.xml
----------------------------------------------------------------------
diff --git a/docs/topics/impala_disk_space.xml b/docs/topics/impala_disk_space.xml
index 9db6420..a035920 100644
--- a/docs/topics/impala_disk_space.xml
+++ b/docs/topics/impala_disk_space.xml
@@ -103,8 +103,7 @@ under the License.
         <p>
           Make sure that the HDFS trashcan is configured correctly. When you remove files from HDFS, the space
           might not be reclaimed for use by other files until sometime later, when the trashcan is emptied. See
-          <xref href="impala_drop_table.xml#drop_table"/> and the FAQ entry
-          <xref href="impala_faq.xml#faq_sql/faq_drop_table_space"/> for details. See
+          <xref href="impala_drop_table.xml#drop_table"/> for details. See
           <xref href="impala_prereqs.xml#prereqs_account"/> for permissions needed for the HDFS trashcan to operate
           correctly.
         </p>


[3/3] incubator-impala git commit: [DOCS] Construct "fixed issues" topic for 2.8 release notes

Posted by jr...@apache.org.
[DOCS] Construct "fixed issues" topic for 2.8 release notes

Primarily a link to the relevant JIRA report,
sorted in descending order of priority.

Change-Id: I7033c61dafb2dbaf4f05a687bed3bd53883a6ff4
Reviewed-on: http://gerrit.cloudera.org:8080/6125
Reviewed-by: John Russell <jr...@cloudera.com>
Tested-by: Impala Public Jenkins


Project: http://git-wip-us.apache.org/repos/asf/incubator-impala/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-impala/commit/1e73d7fc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-impala/tree/1e73d7fc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-impala/diff/1e73d7fc

Branch: refs/heads/master
Commit: 1e73d7fc31e872335f6fe6a83032761fd843a361
Parents: 20ee7a6
Author: John Russell <jr...@cloudera.com>
Authored: Thu Feb 23 10:16:26 2017 -0800
Committer: Impala Public Jenkins <im...@gerrit.cloudera.org>
Committed: Fri Feb 24 00:11:09 2017 +0000

----------------------------------------------------------------------
 docs/topics/impala_fixed_issues.xml | 30 +++++++++++++++++++++++-------
 1 file changed, 23 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-impala/blob/1e73d7fc/docs/topics/impala_fixed_issues.xml
----------------------------------------------------------------------
diff --git a/docs/topics/impala_fixed_issues.xml b/docs/topics/impala_fixed_issues.xml
index db4c419..a1f4de0 100644
--- a/docs/topics/impala_fixed_issues.xml
+++ b/docs/topics/impala_fixed_issues.xml
@@ -46,7 +46,23 @@ under the License.
     <p outputclass="toc inpage"/>
   </conbody>
 
-<!-- All 2.7.x / 5.9.x subsections go under here -->
+<!-- All 2.8.x subsections go under here -->
+
+  <concept rev="2.8.0" id="fixed_issues_280">
+
+    <title>Issues Fixed in <keyword keyref="impala28_full"/></title>
+
+    <conbody>
+
+      <p>
+        For the full list of Impala fixed issues in <keyword keyref="impala28_full"/>, see
+        <xref href="https://issues.cloudera.org/issues/?jql=type%20%3D%20bug%20and%20project%20%3D%20IMPALA%20AND%20resolution%20%3D%20fixed%20AND%20affectedVersion%20!%3D%20%22Impala%202.8.0%22%20AND%20fixVersion%20%3D%20%22Impala%202.8.0%22%20and%20not%20labels%20%3D%20broken-build%20order%20by%20priority%20desc" scope="external" format="html">this report in the Impala JIRA tracker</xref>.
+      </p>
+
+    </conbody>
+  </concept>
+
+<!-- All 2.7.x subsections go under here -->
 
   <concept rev="2.7.0" id="fixed_issues_270">
 
@@ -77,7 +93,7 @@ under the License.
     </conbody>
   </concept>
 
-<!-- All 2.6.x / 5.8.x subsections go under here -->
+<!-- All 2.6.x subsections go under here -->
 
   <concept rev="2.6.3" id="fixed_issues_263">
     <title>Issues Fixed in Impala for CDH 5.8.3</title>
@@ -258,7 +274,7 @@ under the License.
     </concept>
 
   </concept>
-<!-- All 2.5.x / 5.7.x subsections go under here -->
+<!-- All 2.5.x subsections go under here -->
 
   <concept rev="2.5.4" id="fixed_issues_254">
     <title>Issues Fixed in Impala for CDH 5.7.4</title>
@@ -615,7 +631,7 @@ select 2061013007, conv(cast(cast(2061013007 as decimal(20,0)) as bigint), 16, 1
 
   </concept>
 
-<!-- All 2.4.x / 5.6.x subsections go under here -->
+<!-- All 2.4.x subsections go under here -->
 
   <concept rev="2.4.1" id="fixed_issues_241">
 
@@ -664,7 +680,7 @@ select 2061013007, conv(cast(cast(2061013007 as decimal(20,0)) as bigint), 16, 1
 
   </concept>
 
-<!-- All 2.3.x / 5.5.x subsections go under here -->
+<!-- All 2.3.x subsections go under here -->
 
   <concept rev="2.3.4" id="fixed_issues_234">
 
@@ -1262,7 +1278,7 @@ IMPALA-1917
 
   </concept>
 
-<!-- All 2.2.x / 5.4.x subsections go under here -->
+<!-- All 2.2.x subsections go under here -->
 
   <concept rev="2.2.10" id="fixed_issues_2210">
 
@@ -2378,7 +2394,7 @@ IMPALA-1607
 
   </concept>
 
-<!-- All 2.1.x / 5.3.x subsections go under here -->
+<!-- All 2.1.x subsections go under here -->
 
   <concept rev="2.3.10" id="fixed_issues_2310">