Source code for tests.system.providers.google.cloud.cloud_memorystore.example_cloud_memorystore_memcached

#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements.  See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership.  The ASF licenses this file
# to you 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.
"""
Example Airflow DAG for Google Cloud Memorystore Memcached service.

This DAG relies on the following OS environment variables

* AIRFLOW__API__GOOGLE_KEY_PATH - Path to service account key file. Note, you can skip this variable if you
  run this DAG in a Composer environment.
"""

from __future__ import annotations

import os
from datetime import datetime

from google.protobuf.field_mask_pb2 import FieldMask

from airflow.models.dag import DAG
from airflow.operators.bash import BashOperator
from airflow.providers.google.cloud.operators.cloud_memorystore import (
    CloudMemorystoreMemcachedApplyParametersOperator,
    CloudMemorystoreMemcachedCreateInstanceOperator,
    CloudMemorystoreMemcachedDeleteInstanceOperator,
    CloudMemorystoreMemcachedGetInstanceOperator,
    CloudMemorystoreMemcachedListInstancesOperator,
    CloudMemorystoreMemcachedUpdateInstanceOperator,
    CloudMemorystoreMemcachedUpdateParametersOperator,
)
from airflow.utils.trigger_rule import TriggerRule

[docs]ENV_ID = os.environ.get("SYSTEM_TESTS_ENV_ID")
[docs]PROJECT_ID = os.environ.get("SYSTEM_TESTS_GCP_PROJECT", "google_project_id")
[docs]DAG_ID = "cloud_memorystore_memcached"
[docs]MEMORYSTORE_MEMCACHED_INSTANCE_NAME = f"memcached-{ENV_ID}-1"
[docs]LOCATION = "europe-north1"
# [START howto_operator_memcached_instance]
[docs]MEMCACHED_INSTANCE = { "name": "", "node_count": 1, "node_config": {"cpu_count": 1, "memory_size_mb": 1024}, "zones": [LOCATION + "-a"], }
# [END howto_operator_memcached_instance]
[docs]IP_RANGE_NAME = f"ip-range-{DAG_ID}-{ENV_ID}".replace("_", "-")
[docs]NETWORK = "default"
[docs]CREATE_PRIVATE_CONNECTION_CMD = f""" if [ $AIRFLOW__API__GOOGLE_KEY_PATH ]; then \ gcloud auth activate-service-account --key-file=$AIRFLOW__API__GOOGLE_KEY_PATH; \ fi; if [[ $(gcloud compute addresses list --project={PROJECT_ID} --filter="name=('{IP_RANGE_NAME}')") ]]; then \ echo "The IP range '{IP_RANGE_NAME}' already exists in the project '{PROJECT_ID}'."; \ else \ echo " Creating IP range..."; \ gcloud compute addresses create "{IP_RANGE_NAME}" \ --global \ --purpose=VPC_PEERING \ --prefix-length=16 \ --description="IP range for Memorystore system tests" \ --network={NETWORK} \ --project={PROJECT_ID}; \ echo "Done."; \ fi; if [[ $(gcloud services vpc-peerings list --network={NETWORK} --project={PROJECT_ID}) ]]; then \ echo "The private connection already exists in the project '{PROJECT_ID}'."; \ else \ echo " Creating private connection..."; \ gcloud services vpc-peerings connect \ --service=servicenetworking.googleapis.com \ --ranges={IP_RANGE_NAME} \ --network={NETWORK} \ --project={PROJECT_ID}; \ echo "Done."; \ fi; if [[ $(gcloud services vpc-peerings list \ --network={NETWORK} \ --project={PROJECT_ID} \ --format="value(reservedPeeringRanges)" | grep {IP_RANGE_NAME}) ]]; then \ echo "Private service connection configured."; \ else \ echo " Updating service private connection..."; \ gcloud services vpc-peerings update \ --service=servicenetworking.googleapis.com \ --ranges={IP_RANGE_NAME} \ --network={NETWORK} \ --project={PROJECT_ID} \ --force; \ fi; """
with DAG( DAG_ID, schedule="@once", # Override to match your needs start_date=datetime(2021, 1, 1), catchup=False, tags=["example"], ) as dag:
[docs] create_private_service_connection = BashOperator( task_id="create_private_service_connection", bash_command=CREATE_PRIVATE_CONNECTION_CMD, )
# [START howto_operator_create_instance_memcached] create_memcached_instance = CloudMemorystoreMemcachedCreateInstanceOperator( task_id="create-instance", location=LOCATION, instance_id=MEMORYSTORE_MEMCACHED_INSTANCE_NAME, instance=MEMCACHED_INSTANCE, project_id=PROJECT_ID, ) # [END howto_operator_create_instance_memcached] # [START howto_operator_delete_instance_memcached] delete_memcached_instance = CloudMemorystoreMemcachedDeleteInstanceOperator( task_id="delete-instance", location=LOCATION, instance=MEMORYSTORE_MEMCACHED_INSTANCE_NAME, project_id=PROJECT_ID, ) # [END howto_operator_delete_instance_memcached] delete_memcached_instance.trigger_rule = TriggerRule.ALL_DONE # [START howto_operator_get_instance_memcached] get_memcached_instance = CloudMemorystoreMemcachedGetInstanceOperator( task_id="get-instance", location=LOCATION, instance=MEMORYSTORE_MEMCACHED_INSTANCE_NAME, project_id=PROJECT_ID, ) # [END howto_operator_get_instance_memcached] # [START howto_operator_list_instances_memcached] list_memcached_instances = CloudMemorystoreMemcachedListInstancesOperator( task_id="list-instances", location="-", project_id=PROJECT_ID ) # [END howto_operator_list_instances_memcached] # [START howto_operator_update_instance_memcached] update_memcached_instance = CloudMemorystoreMemcachedUpdateInstanceOperator( task_id="update-instance", location=LOCATION, instance_id=MEMORYSTORE_MEMCACHED_INSTANCE_NAME, project_id=PROJECT_ID, update_mask=FieldMask(paths=["node_count"]), instance={"node_count": 2}, # 2 ) # [END howto_operator_update_instance_memcached] # [START howto_operator_update_and_apply_parameters_memcached] update_memcached_parameters = CloudMemorystoreMemcachedUpdateParametersOperator( task_id="update-parameters", location=LOCATION, instance_id=MEMORYSTORE_MEMCACHED_INSTANCE_NAME, project_id=PROJECT_ID, update_mask={"paths": ["params"]}, parameters={"params": {"protocol": "ascii", "hash_algorithm": "jenkins"}}, ) apply_memcached_parameters = CloudMemorystoreMemcachedApplyParametersOperator( task_id="apply-parameters", location=LOCATION, instance_id=MEMORYSTORE_MEMCACHED_INSTANCE_NAME, project_id=PROJECT_ID, node_ids=["node-a-1"], apply_all=False, ) # [END howto_operator_update_and_apply_parameters_memcached] ( create_private_service_connection >> create_memcached_instance >> get_memcached_instance >> list_memcached_instances >> update_memcached_instance >> update_memcached_parameters >> apply_memcached_parameters >> delete_memcached_instance ) # ### Everything below this line is not part of example ### # ### Just for system tests purpose ### from tests.system.utils.watcher import watcher # This test needs watcher in order to properly mark success/failure # when "tearDown" task with trigger rule is part of the DAG list(dag.tasks) >> watcher() from tests.system.utils import get_test_run # noqa: E402 # Needed to run the example DAG with pytest (see: tests/system/README.md#run_via_pytest)
[docs]test_run = get_test_run(dag)

Was this entry helpful?