Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

HiveMetastoreConfig

import type { HiveMetastoreConfig } from "https://googleapis.deno.dev/v1/metastore:v1.ts";

Specifies configuration information specific to running Hive metastore software as the metastore service.

interface HiveMetastoreConfig {
auxiliaryVersions?: {
[key: string]: AuxiliaryVersionConfig;
}
;
configOverrides?: {
[key: string]: string;
}
;
endpointProtocol?: "ENDPOINT_PROTOCOL_UNSPECIFIED" | "THRIFT" | "GRPC";
kerberosConfig?: KerberosConfig;
version?: string;
}

§Properties

§
auxiliaryVersions?: {
[key: string]: AuxiliaryVersionConfig;
}
[src]

A mapping of Hive metastore version to the auxiliary version configuration. When specified, a secondary Hive metastore service is created along with the primary service. All auxiliary versions must be less than the service's primary version. The key is the auxiliary service name and it must match the regular expression a-z?. This means that the first character must be a lowercase letter, and all the following characters must be hyphens, lowercase letters, or digits, except the last character, which cannot be a hyphen.

§
configOverrides?: {
[key: string]: string;
}
[src]

A mapping of Hive metastore configuration key-value pairs to apply to the Hive metastore (configured in hive-site.xml). The mappings override system defaults (some keys cannot be overridden). These overrides are also applied to auxiliary versions and can be further customized in the auxiliary version's AuxiliaryVersionConfig.

§
endpointProtocol?: "ENDPOINT_PROTOCOL_UNSPECIFIED" | "THRIFT" | "GRPC"
[src]

The protocol to use for the metastore service endpoint. If unspecified, defaults to THRIFT.

§
kerberosConfig?: KerberosConfig
[src]

Information used to configure the Hive metastore service as a service principal in a Kerberos realm. To disable Kerberos, use the UpdateService method and specify this field's path (hive_metastore_config.kerberos_config) in the request's update_mask while omitting this field from the request's service.

§
version?: string
[src]

Immutable. The Hive metastore schema version.