Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .release-please-individual-manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"packages/google-cloud-workloadidentity": "0.1.0",
"packages/google-cloud-biglake-hive": "0.3.2",
"packages/google-cloud-ftp": "0.1.0",
"packages/google-cloud-workloadidentity": "0.1.0",
"packages/google-crc32c": "1.8.0",
"preview-packages/google-cloud-compute": "1.51.0-preview.1"
}
}
1 change: 1 addition & 0 deletions librarian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -554,6 +554,7 @@ libraries:
- name: google-cloud-biglake-hive
version: 0.3.2
apis:
- path: google/cloud/biglake/hive/v1
- path: google/cloud/biglake/hive/v1beta
python:
default_version: v1beta
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
HiveMetastoreService
--------------------------------------

.. automodule:: google.cloud.biglake_hive_v1.services.hive_metastore_service
:members:
:inherited-members:

.. automodule:: google.cloud.biglake_hive_v1.services.hive_metastore_service.pagers
:members:
:inherited-members:
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Services for Google Cloud Biglake Hive v1 API
=============================================
.. toctree::
:maxdepth: 2

hive_metastore_service
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Types for Google Cloud Biglake Hive v1 API
==========================================

.. automodule:: google.cloud.biglake_hive_v1.types
:members:
:show-inheritance:
11 changes: 11 additions & 0 deletions packages/google-cloud-biglake-hive/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

.. include:: multiprocessing.rst

This package includes clients for multiple versions of Lakehouse.
By default, you will get version ``biglake_hive_v1beta``.


API Reference
-------------
Expand All @@ -11,6 +14,14 @@ API Reference
biglake_hive_v1beta/services_
biglake_hive_v1beta/types_

API Reference
-------------
.. toctree::
:maxdepth: 2

biglake_hive_v1/services_
biglake_hive_v1/types_


Changelog
---------
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,205 @@
# -*- coding: utf-8 -*-
# Copyright 2026 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
import sys

import google.api_core as api_core

from google.cloud.biglake_hive_v1 import gapic_version as package_version

__version__ = package_version.__version__

from importlib import metadata

# PEP 0810: Explicit Lazy Imports
# Python 3.15+ natively intercepts and defers these imports.
# Developers can disable this behavior and force eager imports.
# For more information, see:
# https://docs.python.org/3.15/library/sys.html#sys.set_lazy_imports_filter
# Older Python versions safely ignore this variable.
__lazy_modules__ = {
"google.cloud.biglake_hive_v1.services.hive_metastore_service",
"google.cloud.biglake_hive_v1.types.hive_metastore",
}


from .services.hive_metastore_service import (
HiveMetastoreServiceAsyncClient,
HiveMetastoreServiceClient,
)
from .types.hive_metastore import (
BatchCreatePartitionsRequest,
BatchCreatePartitionsResponse,
BatchDeletePartitionsRequest,
BatchUpdatePartitionsRequest,
BatchUpdatePartitionsResponse,
CreateHiveCatalogRequest,
CreateHiveDatabaseRequest,
CreateHiveTableRequest,
CreatePartitionRequest,
DeleteHiveCatalogRequest,
DeleteHiveDatabaseRequest,
DeleteHiveTableRequest,
FailoverHiveCatalogRequest,
FailoverHiveCatalogResponse,
FieldSchema,
GetHiveCatalogRequest,
GetHiveDatabaseRequest,
GetHiveTableRequest,
HiveCatalog,
HiveDatabase,
HiveTable,
ListHiveCatalogsRequest,
ListHiveCatalogsResponse,
ListHiveDatabasesRequest,
ListHiveDatabasesResponse,
ListHiveTablesRequest,
ListHiveTablesResponse,
ListPartitionsRequest,
ListPartitionsResponse,
Partition,
PartitionValues,
SerdeInfo,
StorageDescriptor,
UpdateHiveCatalogRequest,
UpdateHiveDatabaseRequest,
UpdateHiveTableRequest,
UpdatePartitionRequest,
)

if hasattr(api_core, "check_python_version") and hasattr(
api_core, "check_dependency_versions"
): # pragma: NO COVER
api_core.check_python_version("google.cloud.biglake_hive_v1") # type: ignore
api_core.check_dependency_versions("google.cloud.biglake_hive_v1") # type: ignore
else: # pragma: NO COVER
# An older version of api_core is installed which does not define the
# functions above. We do equivalent checks manually.
try:
import warnings

_py_version_str = sys.version.split()[0]
_package_label = "google.cloud.biglake_hive_v1"
if sys.version_info < (3, 10):
warnings.warn(
"You are using a non-supported Python version "
+ f"({_py_version_str}). Google will not post any further "
+ f"updates to {_package_label} supporting this Python version. "
+ "Please upgrade to the latest Python version, or at "
+ f"least to Python 3.10, and then update {_package_label}.",
FutureWarning,
)

def parse_version_to_tuple(version_string: str):
"""Safely converts a semantic version string to a comparable tuple of integers.
Example: "6.33.5" -> (6, 33, 5)
Ignores non-numeric parts and handles common version formats.
Args:
version_string: Version string in the format "x.y.z" or "x.y.z<suffix>"
Returns:
Tuple of integers for the parsed version string.
"""
parts = []
for part in version_string.split("."):
try:
parts.append(int(part))
except ValueError:
# If it's a non-numeric part (e.g., '1.0.0b1' -> 'b1'), stop here.
# This is a simplification compared to 'packaging.parse_version', but sufficient
# for comparing strictly numeric semantic versions.
break
return tuple(parts)

def _get_version(dependency_name):
try:
version_string: str = metadata.version(dependency_name)
parsed_version = parse_version_to_tuple(version_string)
return (parsed_version, version_string)
except Exception:
# Catch exceptions from metadata.version() (e.g., PackageNotFoundError)
# or errors during parse_version_to_tuple
return (None, "--")

_dependency_package = "google.protobuf"
_next_supported_version = "6.33.5"
_next_supported_version_tuple = (6, 33, 5)
_recommendation = " (we recommend 7.x)"
(_version_used, _version_used_string) = _get_version(_dependency_package)
if _version_used and _version_used < _next_supported_version_tuple:
warnings.warn(
f"Package {_package_label} depends on "
+ f"{_dependency_package}, currently installed at version "
+ f"{_version_used_string}. Future updates to "
+ f"{_package_label} will require {_dependency_package} at "
+ f"version {_next_supported_version} or higher{_recommendation}."
+ " Please ensure "
+ "that either (a) your Python environment doesn't pin the "
+ f"version of {_dependency_package}, so that updates to "
+ f"{_package_label} can require the higher version, or "
+ "(b) you manually update your Python environment to use at "
+ f"least version {_next_supported_version} of "
+ f"{_dependency_package}.",
FutureWarning,
)
except Exception:
warnings.warn(
"Could not determine the version of Python "
+ "currently being used. To continue receiving "
+ "updates for {_package_label}, ensure you are "
+ "using a supported version of Python; see "
+ "https://devguide.python.org/versions/"
)

__all__ = (
"HiveMetastoreServiceAsyncClient",
"BatchCreatePartitionsRequest",
"BatchCreatePartitionsResponse",
"BatchDeletePartitionsRequest",
"BatchUpdatePartitionsRequest",
"BatchUpdatePartitionsResponse",
"CreateHiveCatalogRequest",
"CreateHiveDatabaseRequest",
"CreateHiveTableRequest",
"CreatePartitionRequest",
"DeleteHiveCatalogRequest",
"DeleteHiveDatabaseRequest",
"DeleteHiveTableRequest",
"FailoverHiveCatalogRequest",
"FailoverHiveCatalogResponse",
"FieldSchema",
"GetHiveCatalogRequest",
"GetHiveDatabaseRequest",
"GetHiveTableRequest",
"HiveCatalog",
"HiveDatabase",
"HiveMetastoreServiceClient",
"HiveTable",
"ListHiveCatalogsRequest",
"ListHiveCatalogsResponse",
"ListHiveDatabasesRequest",
"ListHiveDatabasesResponse",
"ListHiveTablesRequest",
"ListHiveTablesResponse",
"ListPartitionsRequest",
"ListPartitionsResponse",
"Partition",
"PartitionValues",
"SerdeInfo",
"StorageDescriptor",
"UpdateHiveCatalogRequest",
"UpdateHiveDatabaseRequest",
"UpdateHiveTableRequest",
"UpdatePartitionRequest",
)
Loading
Loading