You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@impala.apache.org by jo...@apache.org on 2018/05/11 21:38:13 UTC

[1/2] impala git commit: Fix diagnostics path to not include the parent dir structure

Repository: impala
Updated Branches:
  refs/heads/2.x 3bfee642d -> 381f50ad0


Fix diagnostics path to not include the parent dir structure

Without the fix, the diagnostics tar file included the entire
directory structure of the diagnostics root dir.

Before:
=======
$ tar tf /tmp/impala-diagnostics-2018-05-08-11-59-39-spv8Eh.tar.gz
tmp/impala-diagnostics-2018-05-08-11-59-39-spv8Eh/
tmp/impala-diagnostics-2018-05-08-11-59-39-spv8Eh/stacks/
tmp/impala-diagnostics-2018-05-08-11-59-39-spv8Eh/stacks/jstack-0.txt
....

After:
=====
$ tar tf /tmp/impala-diagnostics-2018-05-08-12-01-51-Y0nlQI.tar.gz
impala-diagnostics-2018-05-08-12-01-51-Y0nlQI/
impala-diagnostics-2018-05-08-12-01-51-Y0nlQI/stacks/
impala-diagnostics-2018-05-08-12-01-51-Y0nlQI/stacks/jstack-0.txt
.....

Tested with python 2.6

Change-Id: I540f6c228a0315780d45cf11961f124478b5dd0c
Reviewed-on: http://gerrit.cloudera.org:8080/10347
Reviewed-by: Bharath Vissapragada <bh...@cloudera.com>
Tested-by: Impala Public Jenkins <im...@cloudera.com>


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

Branch: refs/heads/2.x
Commit: bbf96dca1a6ab9ad67f4b2e4481459689e77fe75
Parents: 3bfee64
Author: Bharath Vissapragada <bh...@cloudera.com>
Authored: Tue May 8 12:03:35 2018 -0700
Committer: Impala Public Jenkins <im...@gerrit.cloudera.org>
Committed: Thu May 10 21:49:24 2018 +0000

----------------------------------------------------------------------
 bin/diagnostics/collect_diagnostics.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/impala/blob/bbf96dca/bin/diagnostics/collect_diagnostics.py
----------------------------------------------------------------------
diff --git a/bin/diagnostics/collect_diagnostics.py b/bin/diagnostics/collect_diagnostics.py
index 8fe4561..56b5595 100644
--- a/bin/diagnostics/collect_diagnostics.py
+++ b/bin/diagnostics/collect_diagnostics.py
@@ -447,7 +447,10 @@ class ImpalaDiagnosticsHandler(object):
       # around that.
       with closing(tarfile.open(self.collection_root_dir + '.tar.gz', mode='w:gz')) as\
           archive:
-        archive.add(self.collection_root_dir)
+        # collection_root_dir is an absoulte path. There is no point in preserving its
+        # entire directory structure in the archive, so set the arcname accordingly.
+        archive.add(self.collection_root_dir,
+            arcname=os.path.basename(self.collection_root_dir))
       return True
     except Exception:
       logging.exception("Encountered an exception archiving diagnostics, cleaning up.")


[2/2] impala git commit: Ignore 3.x version update patch

Posted by jo...@apache.org.
Ignore 3.x version update patch

Change-Id: Iec50418e2a21d662bd2d8a7f8d55c24db367086c
Reviewed-on: http://gerrit.cloudera.org:8080/10383
Reviewed-by: Michael Brown <mi...@cloudera.com>
Tested-by: Sailesh Mukil <sa...@cloudera.com>


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

Branch: refs/heads/2.x
Commit: 381f50ad06af8e0ac66f900917fd93c48e003069
Parents: bbf96dc
Author: Sailesh Mukil <sa...@cloudera.com>
Authored: Fri May 11 14:24:54 2018 -0700
Committer: Sailesh Mukil <sa...@cloudera.com>
Committed: Fri May 11 21:31:33 2018 +0000

----------------------------------------------------------------------
 bin/ignored_commits.json | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/impala/blob/381f50ad/bin/ignored_commits.json
----------------------------------------------------------------------
diff --git a/bin/ignored_commits.json b/bin/ignored_commits.json
index 9e6ceef..25faf68 100644
--- a/bin/ignored_commits.json
+++ b/bin/ignored_commits.json
@@ -24,7 +24,9 @@
       { "hash": "8a609b3513c4a181cd06bb82e2aeb97908590184",
         "comment": "Not applicable to 2.x: Revert commit above" },
       { "hash": "167ed627febe5a10d8a4a7474a34efde1ac6f1c2",
-        "comment": "Not applicable to 2.x: decimal_v2" }
+        "comment": "Not applicable to 2.x: decimal_v2" },
+      { "hash": "8668d18ebb0e137993a12d5303411b6c06e91c59",
+        "comment": "Not applicable to 2.x: 3.x version update" }
     ]
   }
 ]