Return-Path: X-Original-To: apmail-ambari-commits-archive@www.apache.org Delivered-To: apmail-ambari-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3E63811660 for ; Fri, 15 Aug 2014 18:20:17 +0000 (UTC) Received: (qmail 32171 invoked by uid 500); 15 Aug 2014 18:20:17 -0000 Delivered-To: apmail-ambari-commits-archive@ambari.apache.org Received: (qmail 32070 invoked by uid 500); 15 Aug 2014 18:20:17 -0000 Mailing-List: contact commits-help@ambari.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: ambari-dev@ambari.apache.org Delivered-To: mailing list commits@ambari.apache.org Received: (qmail 32008 invoked by uid 99); 15 Aug 2014 18:20:17 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Aug 2014 18:20:17 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id B71209C560D; Fri, 15 Aug 2014 18:20:16 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: jonathanhurley@apache.org To: commits@ambari.apache.org Date: Fri, 15 Aug 2014 18:20:24 -0000 Message-Id: <19aa840b188c415ab63d65d5329b582e@git.apache.org> In-Reply-To: <9e51f93e83a649cc8743b39ea9af07f2@git.apache.org> References: <9e51f93e83a649cc8743b39ea9af07f2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [09/10] git commit: AMBARI-6875 Missing configs from HDFS service configuration download. (Dmytro Shkvyra via dsen) AMBARI-6875 Missing configs from HDFS service configuration download. (Dmytro Shkvyra via dsen) Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/16073e9e Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/16073e9e Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/16073e9e Branch: refs/heads/branch-alerts-dev Commit: 16073e9ea24cbd5972a90568377a9277410f11d7 Parents: d7824f3 Author: Dmytro Sen Authored: Fri Aug 15 17:22:32 2014 +0300 Committer: Jonathan Hurley Committed: Fri Aug 15 14:20:00 2014 -0400 ---------------------------------------------------------------------- .../libraries/providers/xml_config.py | 6 +++--- .../services/GLUSTERFS/metainfo.xml | 12 ++++++++++++ .../stacks/HDP/1.3.2/services/HBASE/metainfo.xml | 5 +++++ .../stacks/HDP/1.3.2/services/HDFS/metainfo.xml | 16 +++++++++++++--- .../stacks/HDP/1.3.2/services/HIVE/metainfo.xml | 10 ++++++++++ .../HDP/1.3.2/services/MAPREDUCE/metainfo.xml | 7 ++++++- .../stacks/HDP/1.3.2/services/OOZIE/metainfo.xml | 5 +++++ .../stacks/HDP/1.3.2/services/PIG/metainfo.xml | 5 +++++ .../HDP/1.3.2/services/ZOOKEEPER/metainfo.xml | 5 +++++ .../services/GLUSTERFS/metainfo.xml | 12 ++++++++++++ .../HDP/2.0.6.GlusterFS/services/HDFS/metainfo.xml | 17 +++++++++++++++++ .../stacks/HDP/2.0.6/services/HBASE/metainfo.xml | 5 +++++ .../stacks/HDP/2.0.6/services/HDFS/metainfo.xml | 10 ++++++++++ .../stacks/HDP/2.0.6/services/HIVE/metainfo.xml | 11 +++++++++++ .../stacks/HDP/2.0.6/services/OOZIE/metainfo.xml | 5 +++++ .../services/PIG/configuration/pig-properties.xml | 2 +- .../stacks/HDP/2.0.6/services/PIG/metainfo.xml | 17 +++++++++++++++++ .../stacks/HDP/2.0.6/services/YARN/metainfo.xml | 15 +++++++++++++++ .../HDP/2.0.6/services/ZOOKEEPER/metainfo.xml | 5 +++++ .../services/PIG/configuration/pig-properties.xml | 2 +- .../services/PIG/configuration/pig-properties.xml | 2 +- ambari-web/app/data/HDP2/site_properties.js | 2 +- 22 files changed, 165 insertions(+), 11 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-common/src/main/python/resource_management/libraries/providers/xml_config.py ---------------------------------------------------------------------- diff --git a/ambari-common/src/main/python/resource_management/libraries/providers/xml_config.py b/ambari-common/src/main/python/resource_management/libraries/providers/xml_config.py index d6ef1cc..87fc657 100644 --- a/ambari-common/src/main/python/resource_management/libraries/providers/xml_config.py +++ b/ambari-common/src/main/python/resource_management/libraries/providers/xml_config.py @@ -26,7 +26,7 @@ from resource_management import * class XmlConfigProvider(Provider): def action_create(self): filename = self.resource.filename - conf_dir = self.resource.conf_dir + xml_config_provider_config_dir = self.resource.conf_dir # |e - for html-like escaping of <,>,'," config_content = InlineTemplate(''' @@ -50,10 +50,10 @@ class XmlConfigProvider(Provider): configuration_attrs=self.resource.configuration_attributes) - Logger.info(format("Generating config: {conf_dir}/{filename}")) + Logger.info(format("Generating config: {xml_config_provider_config_dir}/{filename}")) with Environment.get_instance_copy() as env: - File (format("{conf_dir}/{filename}"), + File (format("{xml_config_provider_config_dir}/{filename}"), content = config_content, owner = self.resource.owner, group = self.resource.group, http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/1.3.2.GlusterFS/services/GLUSTERFS/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/1.3.2.GlusterFS/services/GLUSTERFS/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/1.3.2.GlusterFS/services/GLUSTERFS/metainfo.xml index 1aa4d96..84daf77 100644 --- a/ambari-server/src/main/resources/stacks/HDP/1.3.2.GlusterFS/services/GLUSTERFS/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/1.3.2.GlusterFS/services/GLUSTERFS/metainfo.xml @@ -31,6 +31,18 @@ PYTHON 600 + + + xml + core-site.xml + core-site + + + xml + hdfs-site.xml + hdfs-site + + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HBASE/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HBASE/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HBASE/metainfo.xml index 0f9abfa..d1e8795 100644 --- a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HBASE/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HBASE/metainfo.xml @@ -102,6 +102,11 @@ hbase-env.sh hbase-env + + env + hbase-log4j.properties + hbase-log4j + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HDFS/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HDFS/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HDFS/metainfo.xml index 6b54182..c453905 100644 --- a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HDFS/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HDFS/metainfo.xml @@ -83,10 +83,20 @@ hdfs-site + xml + core-site.xml + core-site + + env - hdfs-env.sh - hdfs-env - + hadoop-env.sh + hadoop-env + + + env + hdfs-log4j.properties + hdfs-log4j + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HIVE/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HIVE/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HIVE/metainfo.xml index afd2f74..c1263d5 100644 --- a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HIVE/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/HIVE/metainfo.xml @@ -95,6 +95,16 @@ hive-env.sh hive-env + + env + hive-log4j.properties + hive-log4j + + + env + hive-exec-log4j.properties + hive-exec-log4j + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/MAPREDUCE/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/MAPREDUCE/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/MAPREDUCE/metainfo.xml index e97ac4f..a900f2e 100644 --- a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/MAPREDUCE/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/MAPREDUCE/metainfo.xml @@ -75,12 +75,17 @@ xml mapred-site.xml mapred-site - + env mapred-env.sh mapred-env + + env + mapreduce-log4j.properties + mapreduce-log4j + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/OOZIE/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/OOZIE/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/OOZIE/metainfo.xml index 23c697e..4e83703 100644 --- a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/OOZIE/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/OOZIE/metainfo.xml @@ -86,6 +86,11 @@ oozie-env.sh oozie-env + + env + oozie-log4j.properties + oozie-log4j + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/PIG/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/PIG/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/PIG/metainfo.xml index 651f192..e7f0cad 100644 --- a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/PIG/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/PIG/metainfo.xml @@ -38,6 +38,11 @@ pig-env.sh pig-env + + env + pig-log4j.properties + pig-log4j + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/ZOOKEEPER/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/ZOOKEEPER/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/ZOOKEEPER/metainfo.xml index 3f722a1..3db40c1 100644 --- a/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/ZOOKEEPER/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/1.3.2/services/ZOOKEEPER/metainfo.xml @@ -49,6 +49,11 @@ zookeeper-env.sh zookeeper-env + + env + zookeeper-log4j.properties + zookeeper-log4j + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/2.0.6.GlusterFS/services/GLUSTERFS/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6.GlusterFS/services/GLUSTERFS/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/2.0.6.GlusterFS/services/GLUSTERFS/metainfo.xml index 1aa4d96..37069e5 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.0.6.GlusterFS/services/GLUSTERFS/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6.GlusterFS/services/GLUSTERFS/metainfo.xml @@ -31,6 +31,18 @@ PYTHON 600 + + + xml + global.xml + global + + + xml + core-site.xml + core-site + + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/2.0.6.GlusterFS/services/HDFS/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6.GlusterFS/services/HDFS/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/2.0.6.GlusterFS/services/HDFS/metainfo.xml index edada64..9768a1f 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.0.6.GlusterFS/services/HDFS/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6.GlusterFS/services/HDFS/metainfo.xml @@ -31,6 +31,23 @@ PYTHON 600 + + + xml + global.xml + global + + + xml + core-site.xml + core-site + + + xml + hdfs-site.xml + hdfs-site + + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HBASE/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HBASE/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HBASE/metainfo.xml index b28857c..c63b2b8 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HBASE/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HBASE/metainfo.xml @@ -92,6 +92,11 @@ hbase-env.sh hbase-env + + env + hbase-log4j.properties + hbase-log4j + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HDFS/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HDFS/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HDFS/metainfo.xml index 3d30e07..62b7cd8 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HDFS/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HDFS/metainfo.xml @@ -92,6 +92,16 @@ hdfs-site + xml + core-site.xml + core-site + + + env + hdfs-log4j.properties + hdfs-log4j + + env hadoop-env.sh hadoop-env http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HIVE/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HIVE/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HIVE/metainfo.xml index 5433c8a..eecc292 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HIVE/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/HIVE/metainfo.xml @@ -102,6 +102,16 @@ hive-env.sh hive-env + + env + hive-log4j.properties + hive-log4j + + + env + hive-exec-log4j.properties + hive-exec-log4j + @@ -154,6 +164,7 @@ hive-site hive-log4j hive-exec-log4j + hive-env http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/OOZIE/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/OOZIE/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/OOZIE/metainfo.xml index d2fd90f..bdc83ea 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/OOZIE/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/OOZIE/metainfo.xml @@ -93,6 +93,11 @@ oozie-env.sh oozie-env + + env + oozie-log4j.properties + oozie-log4j + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/PIG/configuration/pig-properties.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/PIG/configuration/pig-properties.xml b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/PIG/configuration/pig-properties.xml index d9b582e..59cc0c4 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/PIG/configuration/pig-properties.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/PIG/configuration/pig-properties.xml @@ -23,7 +23,7 @@ - pig-content + content Describe all the Pig agent configurations # Licensed to the Apache Software Foundation (ASF) under one http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/PIG/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/PIG/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/PIG/metainfo.xml index 0288290..48b42f1 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/PIG/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/PIG/metainfo.xml @@ -32,6 +32,23 @@ PYTHON 600 + + + env + pig-env.sh + pig-env + + + env + pig-log4j.properties + pig-log4j + + + env + pig-properties.properties + pig-properties + + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/YARN/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/YARN/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/YARN/metainfo.xml index 6bc5d9a..a2ef433 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/YARN/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/YARN/metainfo.xml @@ -93,6 +93,16 @@ yarn-env.sh yarn-env + + env + yarn-log4j.properties + yarn-log4j + + + xml + capacity-scheduler.xml + capacity-scheduler + @@ -181,6 +191,11 @@ yarn-env.sh yarn-env + + env + yarn-log4j.properties + yarn-log4j + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/ZOOKEEPER/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/ZOOKEEPER/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/ZOOKEEPER/metainfo.xml index d11e081..a259351 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/ZOOKEEPER/metainfo.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.0.6/services/ZOOKEEPER/metainfo.xml @@ -49,6 +49,11 @@ zookeeper-env.sh zookeeper-env + + env + zookeeper-log4j.properties + zookeeper-log4j + http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/2.1.GlusterFS/services/PIG/configuration/pig-properties.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.1.GlusterFS/services/PIG/configuration/pig-properties.xml b/ambari-server/src/main/resources/stacks/HDP/2.1.GlusterFS/services/PIG/configuration/pig-properties.xml index 63b99e2..480be75 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.1.GlusterFS/services/PIG/configuration/pig-properties.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.1.GlusterFS/services/PIG/configuration/pig-properties.xml @@ -23,7 +23,7 @@ - pig-content + content # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-server/src/main/resources/stacks/HDP/2.1/services/PIG/configuration/pig-properties.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/2.1/services/PIG/configuration/pig-properties.xml b/ambari-server/src/main/resources/stacks/HDP/2.1/services/PIG/configuration/pig-properties.xml index 63b99e2..480be75 100644 --- a/ambari-server/src/main/resources/stacks/HDP/2.1/services/PIG/configuration/pig-properties.xml +++ b/ambari-server/src/main/resources/stacks/HDP/2.1/services/PIG/configuration/pig-properties.xml @@ -23,7 +23,7 @@ - pig-content + content # Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file http://git-wip-us.apache.org/repos/asf/ambari/blob/16073e9e/ambari-web/app/data/HDP2/site_properties.js ---------------------------------------------------------------------- diff --git a/ambari-web/app/data/HDP2/site_properties.js b/ambari-web/app/data/HDP2/site_properties.js index a539f81..43cd076 100644 --- a/ambari-web/app/data/HDP2/site_properties.js +++ b/ambari-web/app/data/HDP2/site_properties.js @@ -1586,7 +1586,7 @@ module.exports = /**********************************************pig.properties*****************************************/ { "id": "site property", - "name": "pig-content", + "name": "content", "displayName": "content", "value": "", "defaultValue": "",