-
Notifications
You must be signed in to change notification settings - Fork 56
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8f92b10
commit d01730c
Showing
12 changed files
with
546 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
spec: | ||
containers: | ||
- name: hello-world | ||
image: /sichen_db/test_schema/sichen_repo/test_counter | ||
args: | ||
- 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
122 changes: 122 additions & 0 deletions
122
src/snowflake/cli/_plugins/spcs/image_registry/registry.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
import json | ||
import os | ||
import subprocess | ||
import uuid | ||
import datetime | ||
|
||
import docker | ||
|
||
TARGET_ARCH = "amd64" | ||
DOCKER_BUILDER = "snowcli-builder" | ||
|
||
|
||
class Registry: | ||
def __init__(self, registry_url, logger) -> None: | ||
self._registry_url = registry_url | ||
self._logger = logger | ||
self._docker_client = docker.from_env(timeout=300) | ||
self._is_arm = self._is_arch_arm() | ||
if self._is_arm: | ||
if os.system(f"docker buildx use {DOCKER_BUILDER}") != 0: | ||
os.system(f"docker buildx create --name {DOCKER_BUILDER} --use") | ||
|
||
def _is_arch_arm(self): | ||
result = subprocess.run(["uname", "-m"], stdout=subprocess.PIPE) | ||
arch = result.stdout.strip().decode("UTF-8") | ||
self._logger.info(f"Detected machine architecture: {arch}") | ||
return arch == "arm64" or arch == "aarch64" | ||
|
||
def _raise_error_from_output(self, output: str): | ||
for line in output.splitlines(): | ||
try: | ||
jsline = json.loads(line) | ||
if "error" in jsline: | ||
raise docker.errors.APIError(jsline["error"]) | ||
except json.JSONDecodeError: | ||
pass # not a json, don't parse, assume no error | ||
|
||
def _gen_image_tag(self) -> str: | ||
ts = datetime.datetime.now().strftime("%Y%m%d%H%M%S") | ||
uid = str(uuid.uuid4()).split("-")[0] | ||
return f"{ts}-{uid}" | ||
|
||
def push(self, image_name): | ||
self._logger.info(f"Uploading image {image_name}") | ||
output = self._docker_client.images.push(image_name) | ||
self._raise_error_from_output(output) | ||
return output | ||
|
||
def pull(self, image_name): | ||
self._logger.info(f"Pulling image {image_name}") | ||
|
||
n = image_name.rindex(":") | ||
if n >= 0 and "/" not in image_name[n + 1 :]: | ||
# if ':' is present in the last part in image name (separated by '/') | ||
image = image_name[0:n] | ||
tag = image_name[n + 1 :] | ||
else: | ||
image = image_name | ||
tag = None | ||
return self._docker_client.images.pull(image, tag, platform=TARGET_ARCH) | ||
|
||
def build_and_push_image( | ||
self, | ||
image_source_local_path: str, | ||
image_path: str, | ||
tag: str = None, | ||
generate_tag: bool = False, | ||
): | ||
""" | ||
builds an image and push it to sf image registry | ||
""" | ||
|
||
docker_file_path = os.path.join(image_source_local_path, "Dockerfile") | ||
|
||
if tag is None and generate_tag: | ||
tag = self._gen_image_tag() | ||
|
||
# build and upload image to registry if running remotely | ||
self._logger.info("registry: " + self._registry_url) | ||
tagged = self._registry_url + image_path | ||
if tag is not None: | ||
tagged = f"{tagged}:{tag}" | ||
|
||
if self._is_arm: | ||
self._logger.info(f"Using docker buildx for building image {tagged}") | ||
|
||
docker_build_cmd = f""" | ||
docker buildx build --tag {tagged} | ||
--load | ||
--platform linux/amd64 | ||
{image_source_local_path} | ||
-f {docker_file_path} | ||
--builder {DOCKER_BUILDER} | ||
--rm | ||
""" | ||
|
||
parts = list( | ||
filter( | ||
lambda part: part != "", | ||
[part.strip() for part in docker_build_cmd.split("\n")], | ||
) | ||
) | ||
docker_cmd = " ".join(parts) | ||
self._logger.info(f"Executing: {docker_cmd}") | ||
if 0 != os.system(docker_cmd): | ||
assert False, f"failed : unable to build image {tagged} with buildx" | ||
|
||
push_output = self.push(tagged) | ||
self._logger.info(push_output) | ||
else: | ||
# build and upload image to registry if running remotely | ||
self._logger.info(f"Building image {tagged} with docker python sdk") | ||
_, output = self._docker_client.images.build( | ||
path=image_source_local_path, | ||
dockerfile=docker_file_path, | ||
rm=True, | ||
tag=tagged, | ||
) | ||
for o in output: | ||
self._logger.info(o) | ||
push_output = self.push(tagged) | ||
self._logger.info(push_output) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
122 changes: 122 additions & 0 deletions
122
src/snowflake/cli/_plugins/spcs/services/project_model.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# Copyright (c) 2024 Snowflake Inc. | ||
# | ||
# 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. | ||
|
||
from __future__ import annotations | ||
|
||
from functools import cached_property | ||
from pathlib import Path | ||
from typing import List | ||
|
||
from snowflake.cli._plugins.nativeapp.artifacts import resolve_without_follow | ||
from snowflake.cli.api.project.schemas.v1.native_app.path_mapping import PathMapping | ||
from snowflake.cli.api.project.schemas.v1.spcs.service import Service | ||
from snowflake.cli.api.project.util import ( | ||
to_identifier, | ||
) | ||
|
||
|
||
class ServiceProjectModel: | ||
def __init__( | ||
self, | ||
project_definition: Service, | ||
project_root: Path, | ||
): | ||
self._project_definition = project_definition | ||
self._project_root = resolve_without_follow(project_root) | ||
|
||
@property | ||
def project_root(self) -> Path: | ||
return self._project_root | ||
|
||
@property | ||
def definition(self) -> Service: | ||
return self._project_definition | ||
|
||
@cached_property | ||
def service_name(self) -> str: | ||
return self._project_definition.name | ||
|
||
@cached_property | ||
def spec(self) -> PathMapping: | ||
return self.definition.spec | ||
|
||
@cached_property | ||
def images(self) -> List[PathMapping]: | ||
return self.definition.images | ||
|
||
@cached_property | ||
def image_sources(self) -> List[PathMapping]: | ||
source_image_paths = [] | ||
for image in self.images: | ||
source_image_paths.append(PathMapping(src=image.src)) | ||
return source_image_paths | ||
|
||
@cached_property | ||
def source_repo_path(self) -> str: | ||
return self.definition.source_repo | ||
|
||
@cached_property | ||
def source_repo_fqn(self) -> str: | ||
repo_path = self.definition.source_repo | ||
return repo_path.strip("/").replace("/", ".") | ||
|
||
@cached_property | ||
def source_stage_fqn(self) -> str: | ||
return self.definition.source_stage | ||
|
||
@cached_property | ||
def bundle_root(self) -> Path: | ||
return self.project_root / self.definition.bundle_root | ||
|
||
@cached_property | ||
def deploy_root(self) -> Path: | ||
return self.project_root / self.definition.deploy_root | ||
|
||
@cached_property | ||
def generated_root(self) -> Path: | ||
return self.deploy_root / self.definition.generated_root | ||
|
||
@cached_property | ||
def project_identifier(self) -> str: | ||
return to_identifier(self.definition.name) | ||
|
||
@cached_property | ||
def query_warehouse(self) -> str: | ||
return to_identifier(self.definition.query_warehouse) | ||
|
||
@cached_property | ||
def compute_pool(self) -> str: | ||
return to_identifier(self.definition.compute_pool) | ||
|
||
@cached_property | ||
def min_instances(self) -> int: | ||
return self.definition.min_instances | ||
|
||
@cached_property | ||
def max_instances(self) -> int: | ||
return self.definition.max_instances | ||
|
||
@cached_property | ||
def comment(self) -> str: | ||
return self.definition.comment | ||
|
||
# def get_bundle_context(self) -> BundleContext: | ||
# return BundleContext( | ||
# package_name=self.package_name, | ||
# artifacts=self.artifacts, | ||
# project_root=self.project_root, | ||
# bundle_root=self.bundle_root, | ||
# deploy_root=self.deploy_root, | ||
# generated_root=self.generated_root, | ||
# ) |
Oops, something went wrong.