You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@falcon.apache.org by "Venkatesh Seetharam (JIRA)" <ji...@apache.org> on 2014/11/09 07:35:33 UTC

[jira] [Commented] (FALCON-507) HiveCatalogService has hardcode the database name "default" to check whether the service is up.

    [ https://issues.apache.org/jira/browse/FALCON-507?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14203800#comment-14203800 ] 

Venkatesh Seetharam commented on FALCON-507:
--------------------------------------------

Hcatalog API does not have the ability to show databases.

> HiveCatalogService has hardcode the database name "default" to check whether the service is up. 
> ------------------------------------------------------------------------------------------------
>
>                 Key: FALCON-507
>                 URL: https://issues.apache.org/jira/browse/FALCON-507
>             Project: Falcon
>          Issue Type: Bug
>    Affects Versions: 0.5
>            Reporter: Venkatesh Seetharam
>              Labels: hive
>
> Don Bosco Durai reported in an email to me:
> While debugging the issue, it seems HiveCatalogService has hardcode the database name "default" to check whether the service is up. I think this check will fail if the customer has dropped the database "default" in production.
> {code}
> @Override
>     public boolean isAlive(final String catalogUrl,
>                            final String metaStorePrincipal) throws FalconException {
>         LOG.info("Checking if the service is alive for: " + catalogUrl);
>         try {
>             HCatClient client = getProxiedClient(catalogUrl, metaStorePrincipal);
>             HCatDatabase database = client.getDatabase("default");
>             return database != null;
>         } catch (HCatException e) {
>             throw new FalconException("Exception checking if the service is alive:" + e.getMessage(), e);
>         }
>     }
> {code}
> Thanks Bosco.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)