在使用GCP数据存储区时,如何区分代码是在模拟器中运行还是在GKE中运行

时间:2018-05-29 17:33:25

标签: c# google-cloud-platform google-cloud-datastore google-kubernetes-engine

按照给出的指示,我不确定我是否遗失了任何东西 https://cloud.google.com/datastore/docs/tools/datastore-emulator

除非我使用DataStoreClient显式创建数据存储区,否则我无法连接到本地模拟器。

DatastoreDb db = DatastoreDb.Create(projectId, string.Empty, new DatastoreClientImpl(
                new Datastore.DatastoreClient(
                    new Channel("localhost", 8081, ChannelCredentials.Insecure)), new DatastoreSettings()));

而不只是DatastoreDb.Create(projectId);

如果我们在GKE中进行生产,我们需要连接到实际的数据存储而不是模拟器,我们如何区分具有相同代码库的两个版本。

有没有办法检查代码是否正在运行GKE,或者这是应该通过环境变量来完成的,以获得最佳结果。

1 个答案:

答案 0 :(得分:5)

您可以在Google.Api.Gax命名空间(Google.Api.Gax包中)使用Platform类:

Platform platform = Platform.Instance();
switch (platform.Type)
{
    case PlatformType.Gae:
        // Code for AppEngine
        break;
    case PlatformType.Gce:
        // Code for Compute Engine
        break;        
    case PlatformType.Gke:
        // Code for Google Kubernetes Engine
        break;
    default:
        // Code for other contexts
        break;
}