graph TD
subgraph GCP ["Google Cloud Platform"]
direction LR
subgraph GlobalInfrastructure ["全球基础设施"]
direction TB
Region1["区域 1 (例如: us-central1)"]
Region2["区域 N (例如: asia-northeast1)"]
Zone1A["可用区 1-A"]
Zone1B["可用区 1-B"]
ZoneNA["可用区 N-A"]
PoP["边缘节点 PoP"]
Region1 --- Zone1A & Zone1B
Region2 --- ZoneNA
GlobalNetwork["全球高速网络"] --- Region1 & Region2 & PoP
end
subgraph CoreServices ["核心服务"]
direction TB
subgraph Compute ["计算服务"]
GCE["Compute Engine (VMs)"]
GKE["Kubernetes Engine (容器)"]
AppEngine["App Engine (PaaS)"]
CloudFunctions["Cloud Functions (FaaS)"]
end
subgraph Storage ["存储服务"]
CloudStorage["Cloud Storage (对象)"]
PersistentDisk["Persistent Disk (块)"]
Filestore["Filestore (文件)"]
CloudSQL["Cloud SQL (关系型DB)"]
Spanner["Spanner (全球DB)"]
Bigtable["Bigtable (NoSQL)"]
end
subgraph Networking ["网络服务"]
VPC["VPC 网络"]
LoadBalancing["Cloud Load Balancing"]
CloudDNS["Cloud DNS"]
CloudCDN["Cloud CDN"]
end
subgraph DataAnalytics ["数据与分析"]
BigQuery["BigQuery (数据仓库)"]
Dataflow["Dataflow (数据处理)"]
PubSub["Pub/Sub (消息传递)"]
end
%% 连接关系 (高层次示意)
Compute -- 使用 --> Storage
Compute -- 连接 --> Networking
Networking -- 连接 --> GlobalInfrastructure
PoP -- 集成 --> CloudCDN
DataAnalytics -- 处理 --> Storage
DataAnalytics -- 交互 --> PubSub
AppEngine & CloudFunctions -- 触发 --> PubSub
end
subgraph ManagementSecurity ["管理与安全 (贯穿各层)"]
direction TB
IAM["Identity & Access Management (IAM)"]
SecurityCommand["Security Command Center"]
CloudArmor["Cloud Armor"]
Monitoring["Cloud Monitoring"]
Logging["Cloud Logging"]
Console["Cloud Console / CLI"]
end
%% 整体关系
CoreServices -- 运行于 --> GlobalInfrastructure
ManagementSecurity -- 管理与保护 --> CoreServices & GlobalInfrastructure
end
User["用户 / 应用"] --> LoadBalancing
User --> CloudCDN
User --> Console
%% 样式 (可选)
classDef default fill:#f9f,stroke:#333,stroke-width:2px;
classDef infra fill:#e6f2ff,stroke:#36c,stroke-width:2px;
classDef compute fill:#fff0e6,stroke:#f60,stroke-width:2px;
classDef storage fill:#e6ffe6,stroke:#090,stroke-width:2px;
classDef network fill:#ffe6e6,stroke:#c00,stroke-width:2px;
classDef data fill:#ffffcc,stroke:#cc0,stroke-width:2px;
classDef mgmt fill:#f0f0f0,stroke:#666,stroke-width:2px;
class GlobalInfrastructure,Region1,Region2,Zone1A,Zone1B,ZoneNA,PoP,GlobalNetwork infra;
class Compute,GCE,GKE,AppEngine,CloudFunctions compute;
class Storage,CloudStorage,PersistentDisk,Filestore,CloudSQL,Spanner,Bigtable storage;
class Networking,VPC,LoadBalancing,CloudDNS,CloudCDN network;
class DataAnalytics,BigQuery,Dataflow,PubSub data;
class ManagementSecurity,IAM,SecurityCommand,CloudArmor,Monitoring,Logging,Console mgmt;
全球基础设施与核心服务概览