I am trying to follow this tutorial to run a dbt docker image as a Vertex AI component. When the pipeline runs the component just seems to sit there for ever. Is there any way of debugging the component?
Why does my dbt container hang in Vertex AI?
265 Views Asked by schoon At
1
There are 1 best solutions below
Related Questions in DOCKER
- Docker, redirecting to virtualbox port
- Collect only from STDERR when using Docker syslog logging driver
- How can I create a docker image from the current system?
- Moving Docker Containers Around
- How can I test with serverspec that Jenkins is running in a jenkins docker container?
- How to deploy django 1.8 on Elastic Beanstalk using Docker
- Emulating `docker run` using the golang docker API
- Where are docker images and containers stored when we use it with Windows?
- docker compose, vagrant and insecure Repository
- Commit data in a mysql container
- oh-my-zsh installation returns non zero code
- Use custom docker binary in CoreOS
- Can I use docker image ubuntu 14.04 if my host is 12.04?
- Hide/obfuscate environmental parameters in docker
- How to add initial users when starting a RabbitMQ Docker container?
Related Questions in DBT
- Defining big query dbt sources with characters in table name?
- Could not find adapter type bigquery
- Selector not finding nodes for `dbt test`
- can we convert delete SQL statements into DBT?
- Create JSON from a subquery in snowflake
- dbt macro - using *args/**kwargs
- Is it possible to pass dynamic values into a dbt source freshness test?
- Materialized View vs Table Using dbt
- why can't I install dbt-snowflake using miniconda?
- DBT - refering a table that uses post-hook
- Airflow kubernetes pod operator env_vars when render_template_as_native_obj is True
- Cannot read optional field of type __ as required __ Field: __ (BigQuery)
- can we partition by two fields in dbt
- Configure post-hook if your subdirectory is mart and staging
- How to run DBT model and pass a variable at run time
Related Questions in GOOGLE-CLOUD-VERTEX-AI
- Fine tuning code-bison model on Google Vertex AI
- Custom Service Account with KFP pipelines in Vertex AI
- Setting up Vertex AI SDK for Python
- GCP Vertex AI Pipelines static outound IP address
- How can we disable the "Open Jupyterlab" button (proxy) on GCP Vertex AI Workbenches?
- Streaming responses from Vertex AI endpoints
- GCP Colab Enterprise shared VPC connection
- Google vertex endpoint is unavilable when deploying new model
- VertexAI serving_container_predict_route for custom container returns 404
- Vertex AI Models Throws AttributeError: After Langchain 0.0295 Version
- Gives INVALID_ARGUMENT error when pushing a new unstructured data into datastore
- Impossibility of creating a service control in Vertex AI Search
- Passing parameters to Llama 2 deployed in Vertex AI
- Custom Labels in Vertex AI Pipeline PipelineJobSchedule
- Get the health status for a Google Vertex Endpoint
Related Questions in KFP
- Kubeflow Pipeline Error: 'Error (exit code 1): no such file or directory for saved_model.pb.tgz
- Creating a Python package with kfp component - How to ensure compatibility with multiple kfp versions?
- Vertex AI pipelines TypeError: PipelineTask.add_node_selector_constraint() takes 2 positional arguments but 3 were given
- KFP V2 upgrade issue with concatenating strings
- Add decorator to component decorator in KFP v2 in Vertex AI
- How to use ExitHandler with Kubeflow Pipelines SDK v2
- How to get the status of a pipeline run within a component, running on Vertex AI?
- Submitting a pipeline to microk8s.kubeflow, using kfp.Client python api
- Get the image name inside KFP component definition
- How do I define pipeline-level volumes in kubeflow pipelines to share across components?
- kfp.v2 compile NotImplementedError
- Error when importing sklearn in pipeline component
- Cannot install apache-beam==2.35.0, apache-beam[gcp]==2.35.0 apache-beam[gcp]==2.47.0 and apache-beam[gcp]==2.48.0 versions have conflict dependencis
- Enable web access or interactive shell for PipelineJob tasks for Vertex AI
- Kubeflow sdk - error in client.list_experiments()
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You see the pipeline logs to get an idea regarding what is going on in the pipeline. From the doc
You can also select a component inside Pipeline's runtime graph and then view detailed info and logs of that particular component.
Also you can hover your cursor on the component status area(green check or grey disabled icon) to check the current status of that component.