Ask HN: Dependency Graphs for Cloud Services?
1–10 of 14 posts
Re: Ask HN: Dependency Graphs for Cloud Services?
#2In Nov 2020, AWS Kinesis Firehose went down for a few hours and took down a slew of other services that depended on each other (Cloudwatch depends on kinesis, ec2 autoscaling and lambda depend on cloudwatch, everyone depends on ec2 and lambda...)
This was all sort of a large surprise internally that a "small" component like kinesis streams could take down so much.
Re: Ask HN: Dependency Graphs for Cloud Services?
#3https://binx.io/blog/2020/10/03/how-to-find-google-cloud-pla...
However, that does not take account of GCP services being implemented behind the scenes using other GCP technologies in Google-managed projects - e.g. Cloud SQL uses Compute Engine and GCR (search "speckle umbrella"). Cloud Functions relies on Cloud Build to compile the function into a container. AI Platform Training uses a GKE cluster internally.
You can often get hints about these things from the VPC-SC documentation, which explains on a per-service basis which APIs need to be enabled to protect the perimeter:
https://cloud.google.com/vpc-service-controls/docs/supported...
Re: Ask HN: Dependency Graphs for Cloud Services?
#4Re: Ask HN: Dependency Graphs for Cloud Services?
#5https://forsetisecurity.org/docs/latest/concepts/
To understand the underlying design of how each GCP service relates to each other is complex and definitely not available to the public. There is also a huge amount of nuance between GCP services relying on underlying Google services vs. other GCP services. Container Registry and Artifact Registry may both depend on the same underlying storage service, which isn't necessarily GCS, but could be an internal Google storage service. How this is specifically managed, partitioned and run is very hard to extract. Failure modes and scenarios are well designed and understood internally, but not shared publicly.
If you had a very specific use case you could approach your Google Cloud TAM/sales/customer engineer with the questions and they will be able to help you understand.
Source: Former Customer Engineer in Google Cloud for 4 years
Re: Ask HN: Dependency Graphs for Cloud Services?
#6Forseti is an open-source project to build dependency graphs of your usage of GCP services. It's primarily designed for security but can be applied into other areas. You could extend the model to understand relationships between services and SLAs, but this would be limited to how you design and run services on top of GCP. https://forsetisecurity.org/docs/latest/concepts/ To understand the underlying design of how eac…
Re: Ask HN: Dependency Graphs for Cloud Services?
#7Re: Ask HN: Dependency Graphs for Cloud Services?
#8I'm not sure even the cloud providers themselves could give you this information. In Nov 2020, AWS Kinesis Firehose went down for a few hours and took down a slew of other services that depended on each other (Cloudwatch depends on kinesis, ec2 autoscaling and lambda depend on cloudwatch, everyone depends on ec2 and lambda...) This was all sort of a large surprise internally that a "small" component like kinesis stre…
Re: Ask HN: Dependency Graphs for Cloud Services?
#9I'm not sure even the cloud providers themselves could give you this information. In Nov 2020, AWS Kinesis Firehose went down for a few hours and took down a slew of other services that depended on each other (Cloudwatch depends on kinesis, ec2 autoscaling and lambda depend on cloudwatch, everyone depends on ec2 and lambda...) This was all sort of a large surprise internally that a "small" component like kinesis stre…