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

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


    from caea977  [AMBARI-23191] Service config API updates (#1028)
     add 4e7f7eb  AMBARI-23508: Update execution_command module to handle data 
type conversion issue
     add b4cacd8  AMBARI-23508: Update execution_command module to handle data 
type conversion issue
     add c1fdcea  Merge branch 'AMBARI-23508-branch-feature-AMBARI-14714' of 
https://github.com/scottduan/ambari into 
AMBARI-23508-branch-feature-AMBARI-14714
     add 3737c41  Merge branch 'AMBARI-23508-branch-feature-AMBARI-14714' of 
https://github.com/scottduan/ambari into 
AMBARI-23508-branch-feature-AMBARI-14714
     add 5cd0361  Merge branch 'AMBARI-23508-branch-feature-AMBARI-14714' of 
https://github.com/scottduan/ambari into 
AMBARI-23508-branch-feature-AMBARI-14714
     add a847d26  AMBARI-23508-2: Misuse one execution_command package api
     add e6c7963  Merge remote-tracking branch 
'upstream/branch-feature-AMBARI-14714' into 
AMBARI-23508-branch-feature-AMBARI-14714
     add 788dee3  [AMBARI-23508] Misuse get_all_attributes in 
execution_command.py, it is actually in module_configs.py
     add 0bbc27a  [AMBARI-23573] HDFS install fails at before-ANY hook due to 
no created instances (dsen) (#999)
     add 9aaed52  [AMBARI-23569] Provide Mpack Package Name to Install in 
mpack.json
     add 26f1e62  [AMBARI-23569] Provide Mpack Package Name to Install in 
mpack.json
     add 4adcb38  AMBARI-23552. Switch to using Surrogate PK in Ambari DB 
tables, wherever applicable.
     add d99514d  AMBARI-23552. Switch to using Surrogate PK in Ambari DB 
tables, wherever applicable.
     add 703b2b0  Merge branch-feature-AMBARI-14714-configs to 
branch-feature-AMBARI-14714
     add f1e7472  [AMBARI-23590] Return mpack info even when attempting to 
register duplicate mpack
     add 53c2377  Return mpack info even when attempting to register duplicate 
mpack
     new 228236c  Revert "Merge branch-feature-AMBARI-14714-configs to 
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:
 .../internal/UpgradePlanResourceProvider.java      |   3 +-
 .../VersionDefinitionResourceProvider.java         | 174 ++++++++++-----------
 .../apache/ambari/server/mpack/MpackManager.java   | 104 ++++++------
 .../ambari/server/orm/dao/ClusterServiceDAO.java   |  24 +--
 .../server/orm/dao/ServiceDesiredStateDAO.java     |  10 +-
 .../ambari/server/orm/dao/ServiceGroupDAO.java     |  23 +--
 .../server/orm/entities/ClusterServiceEntity.java  |  37 ++---
 .../orm/entities/ClusterServiceEntityPK.java       |  85 ----------
 .../server/orm/entities/ConfigGroupEntity.java     |   8 +-
 .../orm/entities/HostConfigMappingEntity.java      |   8 +-
 .../ServiceComponentDesiredStateEntity.java        |  12 +-
 .../server/orm/entities/ServiceConfigEntity.java   |   8 +-
 .../orm/entities/ServiceDependencyEntity.java      |  27 ++--
 .../orm/entities/ServiceDesiredStateEntity.java    |  24 +--
 .../orm/entities/ServiceDesiredStateEntityPK.java  |  85 ----------
 .../orm/entities/ServiceGroupDependencyEntity.java |  29 ++--
 .../server/orm/entities/ServiceGroupEntity.java    |  16 +-
 .../server/orm/entities/ServiceGroupEntityPK.java  |  71 ---------
 .../org/apache/ambari/server/state/Module.java     |   1 +
 .../java/org/apache/ambari/server/state/Mpack.java |  12 ++
 .../ambari/server/state/MpackOsSpecific.java       |  52 +++---
 .../ambari/server/state/ServiceComponentImpl.java  |   7 +-
 .../ambari/server/state/ServiceGroupImpl.java      |  47 ++----
 .../apache/ambari/server/state/ServiceImpl.java    |  54 ++-----
 .../ambari/server/state/cluster/ClusterImpl.java   |   2 +-
 .../server/state/configgroup/ConfigGroupImpl.java  |   4 +-
 .../src/main/resources/Ambari-DDL-Derby-CREATE.sql |  32 ++--
 .../src/main/resources/Ambari-DDL-MySQL-CREATE.sql |  32 ++--
 .../main/resources/Ambari-DDL-Oracle-CREATE.sql    |  32 ++--
 .../main/resources/Ambari-DDL-Postgres-CREATE.sql  |  33 ++--
 .../resources/Ambari-DDL-SQLAnywhere-CREATE.sql    |  32 ++--
 .../main/resources/Ambari-DDL-SQLServer-CREATE.sql |  32 ++--
 .../stack-hooks/after-INSTALL/scripts/hook.py      |   6 +-
 .../after-INSTALL/scripts/shared_initialization.py |   2 +-
 .../stack-hooks/before-ANY/scripts/hook.py         |   4 +-
 .../stack-hooks/before-ANY/scripts/params.py       |  14 +-
 .../stack-hooks/before-START/scripts/hook.py       |  10 +-
 .../internal/ServiceResourceProviderTest.java      |  52 ++++--
 .../internal/UpgradePlanResourceProviderTest.java  |   3 +-
 ambari-web/app/controllers/wizard.js               |   2 +-
 .../app/controllers/wizard/step8_controller.js     | 102 ++++++------
 .../app/controllers/wizard/step9_controller.js     |   4 +-
 .../app/mixins/common/configs/configs_saver.js     |   3 +-
 ambari-web/app/utils/ajax/ajax.js                  |   9 +-
 ambari-web/test/controllers/wizard/step8_test.js   |  35 +++--
 .../mixins/common/configs/configs_saver_test.js    | 124 +++++++--------
 46 files changed, 599 insertions(+), 891 deletions(-)
 delete mode 100644 
ambari-server/src/main/java/org/apache/ambari/server/orm/entities/ClusterServiceEntityPK.java
 delete mode 100644 
ambari-server/src/main/java/org/apache/ambari/server/orm/entities/ServiceDesiredStateEntityPK.java
 delete mode 100644 
ambari-server/src/main/java/org/apache/ambari/server/orm/entities/ServiceGroupEntityPK.java
 copy 
contrib/views/hive20/src/main/java/org/apache/ambari/view/hive20/internal/dto/TableInfo.java
 => 
ambari-server/src/main/java/org/apache/ambari/server/state/MpackOsSpecific.java 
(53%)

-- 
To stop receiving notification emails like this one, please contact
mradhakrish...@apache.org.

Reply via email to