当前位置: 首页>>代码示例>>Python>>正文


Python SERVER_CONN_TIMEOUT.get方法代码示例

本文整理汇总了Python中beeswax.conf.SERVER_CONN_TIMEOUT.get方法的典型用法代码示例。如果您正苦于以下问题:Python SERVER_CONN_TIMEOUT.get方法的具体用法?Python SERVER_CONN_TIMEOUT.get怎么用?Python SERVER_CONN_TIMEOUT.get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在beeswax.conf.SERVER_CONN_TIMEOUT的用法示例。


在下文中一共展示了SERVER_CONN_TIMEOUT.get方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: alter_table

# 需要导入模块: from beeswax.conf import SERVER_CONN_TIMEOUT [as 别名]
# 或者: from beeswax.conf.SERVER_CONN_TIMEOUT import get [as 别名]
  def alter_table(self, database, table_name, new_table_name=None, comment=None, tblproperties=None):
    table_obj = self.get_table(database, table_name)
    if table_obj is None:
      raise PopupException(_("Failed to find the table: %s") % table_name)

    if table_obj.is_view:
      hql = 'ALTER VIEW `%s`.`%s`' % (database, table_name)
    else:
      hql = 'ALTER TABLE `%s`.`%s`' % (database, table_name)

    if new_table_name:
      table_name = new_table_name
      hql += ' RENAME TO `%s`' % table_name
    elif comment is not None:
      hql += " SET TBLPROPERTIES ('comment' = '%s')" % comment
    elif tblproperties:
      hql += " SET TBLPROPERTIES (%s)" % ' ,'.join("'%s' = '%s'" % (k, v) for k, v in tblproperties.items())

    timeout = SERVER_CONN_TIMEOUT.get()
    query = hql_query(hql)
    handle = self.execute_and_wait(query, timeout_sec=timeout)

    if handle:
      self.close(handle)
    else:
      msg = _("Failed to execute alter table statement: %s") % hql
      raise QueryServerException(msg)

    return self.client.get_table(database, table_name)
开发者ID:cloudera,项目名称:hue,代码行数:31,代码来源:dbms.py

示例2: alter_column

# 需要导入模块: from beeswax.conf import SERVER_CONN_TIMEOUT [as 别名]
# 或者: from beeswax.conf.SERVER_CONN_TIMEOUT import get [as 别名]
  def alter_column(self, database, table_name, column_name, new_column_name, column_type, comment=None,
                   partition_spec=None, cascade=False):
    hql = 'ALTER TABLE `%s`.`%s`' % (database, table_name)

    if partition_spec:
      hql += ' PARTITION (%s)' % partition_spec

    hql += ' CHANGE COLUMN `%s` `%s` %s' % (column_name, new_column_name, column_type.upper())

    if comment:
      hql += " COMMENT '%s'" % comment

    if cascade:
      hql += ' CASCADE'

    timeout = SERVER_CONN_TIMEOUT.get()
    query = hql_query(hql)
    handle = self.execute_and_wait(query, timeout_sec=timeout)

    if handle:
      self.close(handle)
    else:
      msg = _("Failed to execute alter column statement: %s") % hql
      raise QueryServerException(msg)

    return self.get_column(database, table_name, new_column_name)
开发者ID:gorden2,项目名称:hue,代码行数:28,代码来源:dbms.py

示例3: get_tables

# 需要导入模块: from beeswax.conf import SERVER_CONN_TIMEOUT [as 别名]
# 或者: from beeswax.conf.SERVER_CONN_TIMEOUT import get [as 别名]
  def get_tables(self, database='default', table_names='*'):
    hql = "SHOW TABLES IN `%s` '%s'" % (database, table_names) # self.client.get_tables(database, table_names) is too slow
    query = hql_query(hql)
    timeout = SERVER_CONN_TIMEOUT.get()

    handle = self.execute_and_wait(query, timeout_sec=timeout)

    if handle:
      result = self.fetch(handle, rows=5000)
      self.close(handle)
      return [name for table in result.rows() for name in table]
    else:
      return []
开发者ID:neiodavince,项目名称:hue,代码行数:15,代码来源:dbms.py

示例4: get_databases

# 需要导入模块: from beeswax.conf import SERVER_CONN_TIMEOUT [as 别名]
# 或者: from beeswax.conf.SERVER_CONN_TIMEOUT import get [as 别名]
  def get_databases(self, database_names='*'):
    identifier = self.to_matching_wildcard(database_names)

    hql = "SHOW DATABASES LIKE '%s'" % (identifier) # self.client.get_databases() is too slow
    query = hql_query(hql)
    timeout = SERVER_CONN_TIMEOUT.get()

    handle = self.execute_and_wait(query, timeout_sec=timeout)

    if handle:
      result = self.fetch(handle, rows=5000)
      self.close(handle)
      return [name for database in result.rows() for name in database]
    else:
      return []
开发者ID:jounex,项目名称:hue,代码行数:17,代码来源:dbms.py

示例5: get_tables

# 需要导入模块: from beeswax.conf import SERVER_CONN_TIMEOUT [as 别名]
# 或者: from beeswax.conf.SERVER_CONN_TIMEOUT import get [as 别名]
  def get_tables(self, database='default', table_names='*'):
    identifier = self.to_matching_wildcard(table_names)

    hql = "SHOW TABLES IN `%s` '%s'" % (database, identifier) # self.client.get_tables(database, table_names) is too slow
    query = hql_query(hql)
    timeout = SERVER_CONN_TIMEOUT.get()

    handle = self.execute_and_wait(query, timeout_sec=timeout)

    if handle:
      result = self.fetch(handle, rows=5000)
      self.close(handle)
      tables = [name for table in result.rows() for name in table]
      if len(tables) <= APPLY_NATURAL_SORT_MAX.get():
        tables = apply_natural_sort(tables)
      return tables
    else:
      return []
开发者ID:GitHublong,项目名称:hue,代码行数:20,代码来源:dbms.py

示例6: get_databases

# 需要导入模块: from beeswax.conf import SERVER_CONN_TIMEOUT [as 别名]
# 或者: from beeswax.conf.SERVER_CONN_TIMEOUT import get [as 别名]
    def get_databases(self, database_names="*"):
        identifier = self.to_matching_wildcard(database_names)

        hql = "SHOW DATABASES LIKE '%s'" % (identifier)  # self.client.get_databases() is too slow
        query = hql_query(hql)
        timeout = SERVER_CONN_TIMEOUT.get()

        handle = self.execute_and_wait(query, timeout_sec=timeout)

        if handle:
            result = self.fetch(handle, rows=5000)
            self.close(handle)
            databases = [name for database in result.rows() for name in database]
            if len(databases) <= APPLY_NATURAL_SORT_MAX.get():
                databases = apply_natural_sort(databases)
            return databases
        else:
            return []
开发者ID:GorillaTester,项目名称:hue,代码行数:20,代码来源:dbms.py

示例7: get_tables

# 需要导入模块: from beeswax.conf import SERVER_CONN_TIMEOUT [as 别名]
# 或者: from beeswax.conf.SERVER_CONN_TIMEOUT import get [as 别名]
  def get_tables(self, database='default', table_names='*'):
    identifier = self.to_matching_wildcard(table_names)
    identifier = "'%s'" % identifier if identifier != '*' else '' # Filter not supported in SparkSql

    hql = "SHOW TABLES IN `%s` %s" % (database, identifier) # self.client.get_tables(database, table_names) is too slow
    query = hql_query(hql)
    timeout = SERVER_CONN_TIMEOUT.get()

    handle = self.execute_and_wait(query, timeout_sec=timeout)

    if handle:
      result = self.fetch(handle, rows=5000)
      self.close(handle)
      tables = [table[0] for table in result.rows()] # We only keep the first column as the name, SparkSql returns multiple columns
      if len(tables) <= APPLY_NATURAL_SORT_MAX.get():
        tables = apply_natural_sort(tables)
      return tables
    else:
      return []
开发者ID:cloudnautique,项目名称:hue,代码行数:21,代码来源:dbms.py

示例8: meta_client

# 需要导入模块: from beeswax.conf import SERVER_CONN_TIMEOUT [as 别名]
# 或者: from beeswax.conf.SERVER_CONN_TIMEOUT import get [as 别名]
  def meta_client(self):
    """Get the Thrift client to talk to the metastore"""

    class UnicodeMetastoreClient(object):
      """Wrap the thrift client to take and return Unicode."""
      def __init__(self, client):
        self._client = client

      def __getattr__(self, attr):
        if attr in self.__dict__:
          return self.__dict__[attr]
        return getattr(self._client, attr)

      def _encode_storage_descriptor(self, sd):
        _encode_struct_attr(sd, 'location')
        for col in sd.cols:
          _encode_struct_attr(col, 'comment')
        self._encode_map(sd.parameters)

      def _decode_storage_descriptor(self, sd):
        _decode_struct_attr(sd, 'location')
        for col in sd.cols:
          _decode_struct_attr(col, 'comment')
        self._decode_map(sd.parameters)

      def _encode_map(self, mapp):
        for key, value in mapp.iteritems():
          mapp[key] = smart_str(value, strings_only=True)

      def _decode_map(self, mapp):
        for key, value in mapp.iteritems():
          mapp[key] = force_unicode(value, strings_only=True, errors='replace')

      def create_database(self, name, description):
        description = smart_str(description)
        return self._client.create_database(name, description)

      def get_database(self, *args, **kwargs):
        db = self._client.get_database(*args, **kwargs)
        return _decode_struct_attr(db, 'description')

      def get_fields(self, *args, **kwargs):
        res = self._client.get_fields(*args, **kwargs)
        for fschema in res:
          _decode_struct_attr(fschema, 'comment')
        return res

      def get_table(self, *args, **kwargs):
        res = self._client.get_table(*args, **kwargs)
        self._decode_storage_descriptor(res.sd)
        self._decode_map(res.parameters)
        return res

      def alter_table(self, dbname, tbl_name, new_tbl):
        self._encode_storage_descriptor(new_tbl.sd)
        self._encode_map(new_tbl.parameters)
        return self._client.alter_table(dbname, tbl_name, new_tbl)

      def _encode_partition(self, part):
        self._encode_storage_descriptor(part.sd)
        self._encode_map(part.parameters)
        return part

      def _decode_partition(self, part):
        self._decode_storage_descriptor(part.sd)
        self._decode_map(part.parameters)
        return part

      def add_partition(self, new_part):
        self._encode_partition(new_part)
        part = self._client.add_partition(new_part)
        return self._decode_partition(part)

      def get_partition(self, *args, **kwargs):
        part = self._client.get_partition(*args, **kwargs)
        return self._decode_partition(part)

      def get_partitions(self, *args, **kwargs):
        part_list = self._client.get_partitions(*args, **kwargs)
        for part in part_list:
          self._decode_partition(part)
        return part_list

      def alter_partition(self, db_name, tbl_name, new_part):
        self._encode_partition(new_part)
        return self._client.alter_partition(db_name, tbl_name, new_part)

    use_sasl, kerberos_principal_short_name = HiveMetastoreClient.get_security() # TODO Reuse from HiveServer2 lib

    client = thrift_util.get_client(
        ThriftHiveMetastore.Client,
        host=self.query_server['server_host'],
        port=self.query_server['server_port'],
        service_name="Hive Metastore Server",
        kerberos_principal=kerberos_principal_short_name,
        use_sasl=use_sasl,
        timeout_seconds=SERVER_CONN_TIMEOUT.get()
    )
    return UnicodeMetastoreClient(client)
开发者ID:cloudera,项目名称:hue,代码行数:101,代码来源:hive_metastore_server.py


注:本文中的beeswax.conf.SERVER_CONN_TIMEOUT.get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。