vuppalli opened a new issue #9418:
URL: https://github.com/apache/airflow/issues/9418


   <!--
   
   IMPORTANT!!!
   
   PLEASE CHECK "SIMILAR TO X EXISTING ISSUES" OPTION IF VISIBLE
   NEXT TO "SUBMIT NEW ISSUE" BUTTON!!!
   
   PLEASE CHECK IF THIS ISSUE HAS BEEN REPORTED PREVIOUSLY USING SEARCH!!!
   
   Please complete the next sections or the issue will be closed.
   This questions are the first thing we need to know to understand the context.
   
   -->
   
   **Apache Airflow version**: 1.10.10
   
   
   **Kubernetes version (if you are using kubernetes)** (use `kubectl version`):
   
   **Environment**:
   
   - **Cloud provider or hardware configuration**: GCP
   - **OS** (e.g. from /etc/os-release):
   - **Kernel** (e.g. `uname -a`):
   - **Install tools**:
   - **Others**:
   
   **What happened**:
   
   The file, /airflow/providers/google/cloud/example_dags/example_mlengine.py, 
uses deprecated operators and a soon to be deprecated AI Platform runtime 
version.
   - MLEngineManageModelOperator is used to create and get a model. 
(https://airflow.readthedocs.io/en/latest/_api/airflow/providers/google/cloud/operators/mlengine/index.html#airflow.providers.google.cloud.operators.mlengine.MLEngineManageModelOperator)
   
   ```
   create_model = MLEngineManageModelOperator(
           task_id="create-model", 
           project_id=PROJECT_ID, 
           operation='create',
           model={
               "name": MODEL_NAME,
           },
   )
   ```
   
   ```
   get_model = MLEngineManageModelOperator(
           task_id="get-model",
           project_id=PROJECT_ID,
           operation="get",
           model={
               "name": MODEL_NAME,
           }
   )
   ```
   - Many operators use a runtime version of 1.14 which will be deprecated next 
month. 
(https://cloud.google.com/ai-platform/training/docs/runtime-version-list#1.14)
   
   ```
   create_version = MLEngineCreateVersionOperator(
           task_id="create-version", 
           project_id=PROJECT_ID, 
           model_name=MODEL_NAME,
           version={
               "name": "v1",
               "description": "First-version",
               "deployment_uri": '{}/keras_export/'.format(JOB_DIR),
               "runtime_version": "1.14",
               "machineType": "mls1-c1-m2",
               "framework": "TENSORFLOW",
               "pythonVersion": "3.5"
           }
   )
   ```
   **What you expected to happen**:
   
   The file, /airflow/providers/google/cloud/example_dags/example_mlengine.py, 
should be using new operators and a more recent AI Platform runtime version.
   - To create a model: MLEngineCreateModelOperator
   - To get a model: MLEngineGetModelOperator
   - All operators should use a runtime version of 1.15 or 2.1.
   
   **How to reproduce it**:
   <!---
   
   As minimally and precisely as possible. Keep in mind we do not have access 
to your cluster or dags.
   
   If you are using kubernetes, please attempt to recreate the issue using 
minikube or kind.
   
   ## Install minikube/kind
   
   - Minikube https://minikube.sigs.k8s.io/docs/start/
   - Kind https://kind.sigs.k8s.io/docs/user/quick-start/
   
   If this is a UI bug, please provide a screenshot of the bug or a link to a 
youtube video of the bug in action
   
   You can include images using the .md sytle of
   ![alt text](http://url/to/img.png)
   
   To record a screencast, mac users can use QuickTime and then create an 
unlisted youtube video with the resulting .mov file.
   
   --->
   
   
   **Anything else we need to know**:
   I would be happy to take this issue!
   
   <!--
   
   How often does this problem occur? Once? Every time etc?
   
   Any relevant logs to include? Put them here in side a detail tag:
   <details><summary>x.log</summary> lots of stuff </details>
   
   -->
   


----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Reply via email to