You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by jo...@apache.org on 2018/08/30 19:18:26 UTC

[ambari] branch branch-feature-AMBARI-14714 updated (aced8a2 -> 157131a)

This is an automated email from the ASF dual-hosted git repository.

jonathanhurley pushed a change to branch branch-feature-AMBARI-14714
in repository https://gitbox.apache.org/repos/asf/ambari.git.


    from aced8a2  Agent configs were not updated during UI deploy. (mpapirkovskyy)
     add 79ed221  [AMBARI-24523] Hive and Oozie JDBC url reset after set manually.
     add 0543c9c  AMBARI-24511: Add rpm support infra and logsearch (#2125)
     add 7053df7  AMBARI-24529. Add unit tests for centralized configs logic (akovalenko)
     add 7a4aa72  Upgrade docs for 2.7.1 release (#2166)
     add f025066  Upgrade docs for 2.7.1 release
     add 93375b8  [AMBARI-24435] [Log Search UI] Remove underline text decoration from dropdowns on hover (#2132)
     add 872494e  [AMBARI-24426] [Log Search UI] Show user friendly component names in Log Index Filter screen (#2153)
     add 9e746af  AMBARI-24545 Implement Notifications/Coasters from Fluid Design
     add 4487562  AMBARI-24533. Let end users disable endpoint identification during SSL handshake with the LDAP server (#2165)
     add 17caa68  AMBARI-24542. Fixing typo in LDAP configuration property name (#2174)
     add 914985e   AMBARI-24539: OneFS mpack should not include webhdfs enable setting (#2170)
     add 251aec0  AMBARI-24538: OneFS mpack quicklinks require port, https (#2169)
     add 93e177c  AMBARI-24550. Yarn Timeline Service V2 Reader goes down after Ambari Upgrade from 2.7.0.0 to 2.7.1.0 (amagyar) (#2182)
     add 6f64d63  Update Ambari website. Remove 2.6.x versions from what's new. (#2192)
     add 1edde0c  AMBARI-24516 - Default value for LDAP type (#2181)
     add e7c6923  AMBARI-24543. Client installs failing with Ambari-2.7.0.0 on Ubuntu14 (aonishuk)
     add 78f54fe  AMBARI-24543. Client installs failing with Ambari-2.7.0.0 on Ubuntu14 (aonishuk)
     add 5bd37c7  [AMBARI-24536] Ambari SPNEGO breaks SSO redirect
     add 08f0071  [AMBARI-24557] Remove legacy storm sink module from ambari-metrics. (#2193)
     add 06fd55b  AMBARI-24563. global name 'VERIFY_DEPENDENCY_CMD' is not defined' (amagyar) (#2202)
     add 6fc2418  [AMBARI-24562] Protect the ClusterConfig resource so that only authorized users may have read-only access the data
     add a4af8ed  AMBARI-24560. Better debugging for agent start failure due to stuck fuser call (aonishuk)
     add c4f79dd  [AMBARI-24458] Start operation is disabled for HDFS after stopping components for one namespace (dsen) (#2152)
     add d374ab6  Merge branch 'trunk' into branch-feature-AMBARI-14714
     new 157131a  Merge branch 'trunk' into branch-feature-AMBARI-14714

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../main/python/ambari_agent/PingPortListener.py   |   5 +-
 .../src/main/python/ambari_agent/PythonExecutor.py |   6 +-
 .../resource_management/TestRepositoryResource.py  |  45 +--
 .../ambari_commons/repo_manager/apt_manager.py     |   2 +-
 .../libraries/functions/repository_util.py         |  10 +-
 .../libraries/providers/__init__.py                |   6 +-
 .../libraries/providers/repository.py              | 139 ++++----
 .../libraries/resources/repository.py              |   9 +-
 ambari-infra/pom.xml                               |  22 ++
 .../log-index-filter.component.html                |   2 +-
 .../log-index-filter.component.spec.ts             |   4 +-
 .../log-index-filter/log-index-filter.component.ts |   4 +-
 .../dropdown-button/dropdown-button.component.less |   1 -
 .../dropdown-list/dropdown-list.component.ts       |  17 +-
 .../ambari-logsearch-web/src/styles.less           |   7 +
 ambari-logsearch/pom.xml                           |  22 ++
 ambari-metrics/ambari-metrics-assembly/pom.xml     |  25 --
 .../src/main/assembly/sink-windows.xml             |   8 -
 .../src/main/assembly/sink.xml                     |   9 -
 .../ambari-metrics-storm-sink-legacy/pom.xml       | 207 -----------
 .../src/main/assemblies/empty.xml                  |  21 --
 .../sink/storm/StormTimelineMetricsReporter.java   | 238 -------------
 .../sink/storm/StormTimelineMetricsSink.java       | 332 ------------------
 .../sink/storm/StormTimelineMetricsSinkTest.java   | 134 -------
 ambari-metrics/pom.xml                             |   1 -
 .../ambari/server/api/AmbariErrorHandler.java      |   2 +-
 .../AmbariServerConfigurationKey.java              |   3 +-
 .../internal/ClientConfigResourceProvider.java     |   6 +-
 .../state/HDFSServiceCalculatedState.java          |  43 ++-
 .../ldap/domain/AmbariLdapConfiguration.java       |   5 +
 .../authorization/LdapServerProperties.java        |   9 +
 .../security/ldap/AmbariLdapDataPopulator.java     |  16 +-
 .../ambari/server/upgrade/SchemaUpgradeHelper.java |   1 -
 .../ambari/server/upgrade/UpgradeCatalog271.java   | 384 ---------------------
 ambari-server/src/main/python/ambari-server.py     |  44 +--
 .../src/main/python/ambari_server/setupSecurity.py | 196 +++++++----
 .../custom_actions/scripts/update_repo.py          |   3 +-
 .../before-INSTALL/scripts/repo_initialization.py  |   4 +-
 .../internal/AlertTargetResourceProviderTest.java  |  18 +-
 .../internal/ClientConfigResourceProviderTest.java | 140 ++++++--
 .../state/HDFSServiceCalculatedStateTest.java      |  85 +++++
 .../server/security/TestAuthenticationFactory.java | 219 ++++++------
 .../server/upgrade/UpgradeCatalog271Test.java      | 360 -------------------
 .../ambari/server/upgrade/UpgradeCatalogTest.java  |   8 +-
 ambari-server/src/test/python/TestAmbariServer.py  | 126 ++++++-
 .../test/python/custom_actions/TestUpdateRepo.py   |   4 +-
 .../before-INSTALL/test_before_install.py          |  23 +-
 .../common/configs/config_recommendation_parser.js |  11 +-
 .../app/mixins/common/configs/enhanced_configs.js  |  15 +-
 ambari-web/app/router.js                           |   2 +-
 ambari-web/app/styles/theme/bootstrap-ambari.css   |  69 ++++
 ambari-web/app/views/common/controls_view.js       |   2 +
 ambari-web/test/controllers/wizard/step7_test.js   | 317 +++++++++++++++++
 .../configs/config_recommendation_parser_test.js   |   2 +
 ambari-web/test/router_test.js                     |  20 ++
 .../ONEFS/1.0.0/configuration/hdfs-site.xml        |  12 -
 .../ONEFS/1.0.0/quicklinks/quicklinks.json         |  17 +-
 docs/pom.xml                                       |   2 +-
 docs/src/site/apt/index.apt                        |   2 +-
 docs/src/site/apt/whats-new.apt                    |  15 +-
 docs/src/site/site.xml                             |   2 +
 61 files changed, 1314 insertions(+), 2149 deletions(-)
 delete mode 100644 ambari-metrics/ambari-metrics-storm-sink-legacy/pom.xml
 delete mode 100644 ambari-metrics/ambari-metrics-storm-sink-legacy/src/main/assemblies/empty.xml
 delete mode 100644 ambari-metrics/ambari-metrics-storm-sink-legacy/src/main/java/org/apache/hadoop/metrics2/sink/storm/StormTimelineMetricsReporter.java
 delete mode 100644 ambari-metrics/ambari-metrics-storm-sink-legacy/src/main/java/org/apache/hadoop/metrics2/sink/storm/StormTimelineMetricsSink.java
 delete mode 100644 ambari-metrics/ambari-metrics-storm-sink-legacy/src/test/java/org/apache/hadoop/metrics2/sink/storm/StormTimelineMetricsSinkTest.java
 delete mode 100644 ambari-server/src/main/java/org/apache/ambari/server/upgrade/UpgradeCatalog271.java
 delete mode 100644 ambari-server/src/test/java/org/apache/ambari/server/upgrade/UpgradeCatalog271Test.java


[ambari] 01/01: Merge branch 'trunk' into branch-feature-AMBARI-14714

Posted by jo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

jonathanhurley pushed a commit to branch branch-feature-AMBARI-14714
in repository https://gitbox.apache.org/repos/asf/ambari.git

commit 157131a7972a70e2956aadec372b573e1ba739fc
Merge: aced8a2 d374ab6
Author: Jonathan Hurley <jo...@apache.org>
AuthorDate: Thu Aug 30 15:18:22 2018 -0400

    Merge branch 'trunk' into branch-feature-AMBARI-14714

 .../main/python/ambari_agent/PingPortListener.py   |   5 +-
 .../src/main/python/ambari_agent/PythonExecutor.py |   6 +-
 .../resource_management/TestRepositoryResource.py  |  45 +--
 .../ambari_commons/repo_manager/apt_manager.py     |   2 +-
 .../libraries/functions/repository_util.py         |  10 +-
 .../libraries/providers/__init__.py                |   6 +-
 .../libraries/providers/repository.py              | 139 ++++----
 .../libraries/resources/repository.py              |   9 +-
 ambari-infra/pom.xml                               |  22 ++
 .../log-index-filter.component.html                |   2 +-
 .../log-index-filter.component.spec.ts             |   4 +-
 .../log-index-filter/log-index-filter.component.ts |   4 +-
 .../dropdown-button/dropdown-button.component.less |   1 -
 .../dropdown-list/dropdown-list.component.ts       |  17 +-
 .../ambari-logsearch-web/src/styles.less           |   7 +
 ambari-logsearch/pom.xml                           |  22 ++
 ambari-metrics/ambari-metrics-assembly/pom.xml     |  25 --
 .../src/main/assembly/sink-windows.xml             |   8 -
 .../src/main/assembly/sink.xml                     |   9 -
 .../ambari-metrics-storm-sink-legacy/pom.xml       | 207 -----------
 .../src/main/assemblies/empty.xml                  |  21 --
 .../sink/storm/StormTimelineMetricsReporter.java   | 238 -------------
 .../sink/storm/StormTimelineMetricsSink.java       | 332 ------------------
 .../sink/storm/StormTimelineMetricsSinkTest.java   | 134 -------
 ambari-metrics/pom.xml                             |   1 -
 .../ambari/server/api/AmbariErrorHandler.java      |   2 +-
 .../AmbariServerConfigurationKey.java              |   3 +-
 .../internal/ClientConfigResourceProvider.java     |   6 +-
 .../state/HDFSServiceCalculatedState.java          |  43 ++-
 .../ldap/domain/AmbariLdapConfiguration.java       |   5 +
 .../authorization/LdapServerProperties.java        |   9 +
 .../security/ldap/AmbariLdapDataPopulator.java     |  16 +-
 .../ambari/server/upgrade/SchemaUpgradeHelper.java |   1 -
 .../ambari/server/upgrade/UpgradeCatalog271.java   | 384 ---------------------
 ambari-server/src/main/python/ambari-server.py     |  44 +--
 .../src/main/python/ambari_server/setupSecurity.py | 196 +++++++----
 .../custom_actions/scripts/update_repo.py          |   3 +-
 .../before-INSTALL/scripts/repo_initialization.py  |   4 +-
 .../internal/AlertTargetResourceProviderTest.java  |  18 +-
 .../internal/ClientConfigResourceProviderTest.java | 140 ++++++--
 .../state/HDFSServiceCalculatedStateTest.java      |  85 +++++
 .../server/security/TestAuthenticationFactory.java | 219 ++++++------
 .../server/upgrade/UpgradeCatalog271Test.java      | 360 -------------------
 .../ambari/server/upgrade/UpgradeCatalogTest.java  |   8 +-
 ambari-server/src/test/python/TestAmbariServer.py  | 126 ++++++-
 .../test/python/custom_actions/TestUpdateRepo.py   |   4 +-
 .../before-INSTALL/test_before_install.py          |  23 +-
 .../common/configs/config_recommendation_parser.js |  11 +-
 .../app/mixins/common/configs/enhanced_configs.js  |  15 +-
 ambari-web/app/router.js                           |   2 +-
 ambari-web/app/styles/theme/bootstrap-ambari.css   |  69 ++++
 ambari-web/app/views/common/controls_view.js       |   2 +
 ambari-web/test/controllers/wizard/step7_test.js   | 317 +++++++++++++++++
 .../configs/config_recommendation_parser_test.js   |   2 +
 ambari-web/test/router_test.js                     |  20 ++
 .../ONEFS/1.0.0/configuration/hdfs-site.xml        |  12 -
 .../ONEFS/1.0.0/quicklinks/quicklinks.json         |  17 +-
 docs/pom.xml                                       |   2 +-
 docs/src/site/apt/index.apt                        |   2 +-
 docs/src/site/apt/whats-new.apt                    |  15 +-
 docs/src/site/site.xml                             |   2 +
 61 files changed, 1314 insertions(+), 2149 deletions(-)