Following error is being shown:
Workflow failed. Causes: Error: Message: Invalid value for field 'resource.properties.networkInterfaces[0].subnetwork': 'regions/xxxxx-xxxx/subnetworks/xxxxx-xxxx-xxx'. The project 'projects' was not found. HTTP Code: 400
Please anyone suggest what caused this error.
Solution: Do not need to change anything. This error fix on its own after few times. Seems to be a google's global issue.
We had the same error and already solved it. Not sure what caused it but try our solution to see if it serves you.
We changed the Subnetwork parameter from short form to complete URL.
source: https://cloud.google.com/dataflow/docs/guides/specifying-networks#subnetwork_parameter
Related
I'm try to call the following api call: DescribeConfigurationSettings
on ElasticBeanStalk, but getting InvalidParameter exception with the following message: Unable to resolve Ref. No data on parameter value
Any Idea what can cause this issue? I'm providing the application name and environment name as parameters only.
Thanks!
I tried to create a Google Cloud Composer environment but in the page to set it up I get the following errors:
Service Error: Failed to load GKE machine types. Please leave the field
empty to apply default values or retry later.
Service Error: Failed to load regions. Please leave the field empty to
apply default values or retry later.
Service Error: Failed to load zones. Please leave the field empty to apply
default values or retry later.
Service Error: Failed to load service accounts. Please leave the field
empty to apply default values or retry later.
The only parameters GCP lets me change are the region and the number of nodes, but still lets me create the environment. After 30 minutes the environment crashes with the following error:
CREATE operation on this environment failed 1 day ago with the following error message:
Http error status code: 400
Http error message: BAD REQUEST
Errors in: [Web server]; Error messages:
Failed to deploy the Airflow web server. This might be a temporary issue. You can retry the operation later.
If the issue persists, it might be caused by problems with permissions or network configuration. For more information, see https://cloud.google.com/composer/docs/troubleshooting-environment-creation.
An internal error occurred while processing task /app-engine-flex/flex_await_healthy/flex_await_healthy>2021-07-20T14:31:23.047Z7050.xd.0: Your deployment has failed to become healthy in the allotted time and therefore was rolled back. If you believe this was an error, try adjusting the 'app_start_timeout_sec' setting in the 'readiness_check' section.
Got error "Another operation failed." during CP_DEPLOYMENT_CREATING_STANDARD []
Is it a problem with permissions? If so, what permissions do I need? Thank you!
It looks like more of a temporary issue:
the first set of errors is stating you cannot load the metadata :
regions list, zones list ....
you dont have a clear
PERMISSION_DENIED error
the second error: is suggesting also:
This might be a temporary issue.
I am using GCP spanner as my project RDBMS . Lately I am getting a lot of error like the one mentioned above in the logs. Can someone help me figure out what is going wrong here ?
I tried going through google docs, but found very little on the above error . Is it something related to session pool configuration ? How this can be resolved ?
Note: I have only 1 spanner db, which is running on 1 instance on GCP.
Any help is deeply appreciated :)
Thanks
ps:
Error: Got unhandled rejection {"stack":"Error: Unable to release unknown resource.\n at SessionPool.release (/testProject/node_modules/#google-cloud/spanner/build/src/session-pool.js:241:19)\n at <anonymous>\n at process._tickCallback (internal/process/next_tick.js:189:7)","message":"Unable to release unknown resource.","resource":{}}
at process.on (/testProject/index.js:22:17)
I'm getting following errors while trying to stop the PWX logger:
Could not exectute action...
[DOM_10213] Internal error. Could not update the service state in the domain configuration repository because of the following errors:
[RSVCSHARED_00018] Internal error. The request processing failed for the following reason:
['Exception Class[Class javax.persistence.persistenceException] Exception message [org.hibernate.exception.GenericJDBCException: cannot open connection]']
I Tried both complete and Abort option but same issue persists .
Please help me to fix it.
I found the answer.
Actually the password for the informatica user had been expired. I alter the user with the same old password and its working fine.
I'm trying to develop a system service, so I use the echo service as a test.
I developed the service by following the directions on the CF doc.
Now the echo node can be running, but the echo gateway failed with the error "echo_gateway - pid=15040 tid=9321 fid=290e ERROR -- Exiting due to NATS error: Could not connect to server on nats://localhost:4222/"
I got into this issue and struck for almost a week finally someone helped me to resolve it. The underlying problemn is something else and since errors are not trapped properly it gives a wrong message. You need to goto github and get the latest code base. The fix for this issue is http://reviews.cloudfoundry.org/#/c/8891 . Once you fix this issue, you will most likely encounter a timeout field issue. the solution for that is to define the timeout field gateway.yml
A few additional properties became required in the echo_gateway.yml.erb file - specifically, the latest were default_plan and timeout, under the service group. The properties have been added to the appropriate file in the vcap-services-sample-release repo.
Looks like the fix for the misleading error has been merged into github. I haven't updated and verified this myself just yet but the gerrit comments indicate the solution is the same as what the node base has had for some time. I did previously run into that error handling and it was far more helpful.