Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 9712E200B6D for ; Fri, 15 Jul 2016 00:05:22 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 95B14160A63; Thu, 14 Jul 2016 22:05:22 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 96C00160A86 for ; Fri, 15 Jul 2016 00:05:21 +0200 (CEST) Received: (qmail 33626 invoked by uid 500); 14 Jul 2016 22:05:20 -0000 Mailing-List: contact issues-help@ambari.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@ambari.apache.org Delivered-To: mailing list issues@ambari.apache.org Received: (qmail 33588 invoked by uid 99); 14 Jul 2016 22:05:20 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Jul 2016 22:05:20 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 962FF2C02A9 for ; Thu, 14 Jul 2016 22:05:20 +0000 (UTC) Date: Thu, 14 Jul 2016 22:05:20 +0000 (UTC) From: "Jayush Luniya (JIRA)" To: issues@ambari.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (AMBARI-17718) KERBEROS_CLIENT version sometimes gets set for a host MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 14 Jul 2016 22:05:22 -0000 [ https://issues.apache.org/jira/browse/AMBARI-17718?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Jayush Luniya updated AMBARI-17718: ----------------------------------- Description: KERBEROS_CLIENT has advertiseVersion=False. However version in hostcomponentstate and desired_version in servicecomponentdesiredstate sometimes get updated instead of remaining as 'UNKNOWN' {code} select * from servicecomponentdesiredstate where component_name = 'KERBEROS_CLIENT'; +-----------------+------------+---------------+--------------+------------------+------------------+-----------------+----+ | component_name | cluster_id | desired_state | service_name | desired_stack_id | recovery_enabled | desired_version | id | +-----------------+------------+---------------+--------------+------------------+------------------+-----------------+----+ | KERBEROS_CLIENT | 2 | INSTALLED | KERBEROS | 3 | 0 | 2.2.6.0-2800 | 17 | +-----------------+------------+---------------+--------------+------------------+------------------+-----------------+----+ 1 row in set (0.00 sec) select * from hostcomponentstate where component_name = 'KERBEROS_CLIENT'; +------------+-----------------+--------------+---------------+--------------+---------------+------------------+---------+------------------+-----+ | cluster_id | component_name | version | current_state | service_name | upgrade_state | security_state | host_id | current_stack_id | id | +------------+-----------------+--------------+---------------+--------------+---------------+------------------+---------+------------------+-----+ | 2 | KERBEROS_CLIENT | UNKNOWN | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 1 | 3 | 11 | | 2 | KERBEROS_CLIENT | 2.2.6.0-2800 | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 2 | 3 | 38 | | 2 | KERBEROS_CLIENT | UNKNOWN | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 3 | 3 | 62 | | 2 | KERBEROS_CLIENT | UNKNOWN | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 4 | 3 | 84 | | 2 | KERBEROS_CLIENT | UNKNOWN | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 5 | 3 | 107 | +------------+-----------------+--------------+---------------+--------------+---------------+------------------+---------+------------------+-----+ 5 rows in set (0.00 sec) {code} was: {code} select * from servicecomponentdesiredstate where component_name = 'KERBEROS_CLIENT'; +-----------------+------------+---------------+--------------+------------------+------------------+-----------------+----+ | component_name | cluster_id | desired_state | service_name | desired_stack_id | recovery_enabled | desired_version | id | +-----------------+------------+---------------+--------------+------------------+------------------+-----------------+----+ | KERBEROS_CLIENT | 2 | INSTALLED | KERBEROS | 3 | 0 | 2.2.6.0-2800 | 17 | +-----------------+------------+---------------+--------------+------------------+------------------+-----------------+----+ 1 row in set (0.00 sec) select * from hostcomponentstate where component_name = 'KERBEROS_CLIENT'; +------------+-----------------+--------------+---------------+--------------+---------------+------------------+---------+------------------+-----+ | cluster_id | component_name | version | current_state | service_name | upgrade_state | security_state | host_id | current_stack_id | id | +------------+-----------------+--------------+---------------+--------------+---------------+------------------+---------+------------------+-----+ | 2 | KERBEROS_CLIENT | UNKNOWN | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 1 | 3 | 11 | | 2 | KERBEROS_CLIENT | 2.2.6.0-2800 | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 2 | 3 | 38 | | 2 | KERBEROS_CLIENT | UNKNOWN | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 3 | 3 | 62 | | 2 | KERBEROS_CLIENT | UNKNOWN | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 4 | 3 | 84 | | 2 | KERBEROS_CLIENT | UNKNOWN | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 5 | 3 | 107 | +------------+-----------------+--------------+---------------+--------------+---------------+------------------+---------+------------------+-----+ 5 rows in set (0.00 sec) {code} > KERBEROS_CLIENT version sometimes gets set for a host > ----------------------------------------------------- > > Key: AMBARI-17718 > URL: https://issues.apache.org/jira/browse/AMBARI-17718 > Project: Ambari > Issue Type: Bug > Components: ambari-agent, ambari-server > Affects Versions: 2.4.0 > Reporter: Jayush Luniya > Priority: Critical > Fix For: 2.4.0 > > > KERBEROS_CLIENT has advertiseVersion=False. However version in hostcomponentstate and desired_version in servicecomponentdesiredstate sometimes get updated instead of remaining as 'UNKNOWN' > {code} > select * from servicecomponentdesiredstate where component_name = 'KERBEROS_CLIENT'; > +-----------------+------------+---------------+--------------+------------------+------------------+-----------------+----+ > | component_name | cluster_id | desired_state | service_name | desired_stack_id | recovery_enabled | desired_version | id | > +-----------------+------------+---------------+--------------+------------------+------------------+-----------------+----+ > | KERBEROS_CLIENT | 2 | INSTALLED | KERBEROS | 3 | 0 | 2.2.6.0-2800 | 17 | > +-----------------+------------+---------------+--------------+------------------+------------------+-----------------+----+ > 1 row in set (0.00 sec) > select * from hostcomponentstate where component_name = 'KERBEROS_CLIENT'; > +------------+-----------------+--------------+---------------+--------------+---------------+------------------+---------+------------------+-----+ > | cluster_id | component_name | version | current_state | service_name | upgrade_state | security_state | host_id | current_stack_id | id | > +------------+-----------------+--------------+---------------+--------------+---------------+------------------+---------+------------------+-----+ > | 2 | KERBEROS_CLIENT | UNKNOWN | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 1 | 3 | 11 | > | 2 | KERBEROS_CLIENT | 2.2.6.0-2800 | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 2 | 3 | 38 | > | 2 | KERBEROS_CLIENT | UNKNOWN | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 3 | 3 | 62 | > | 2 | KERBEROS_CLIENT | UNKNOWN | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 4 | 3 | 84 | > | 2 | KERBEROS_CLIENT | UNKNOWN | INSTALLED | KERBEROS | NONE | SECURED_KERBEROS | 5 | 3 | 107 | > +------------+-----------------+--------------+---------------+--------------+---------------+------------------+---------+------------------+-----+ > 5 rows in set (0.00 sec) > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)