我已经构建了一个软件,该软件使用GCP Pub / Sub作为消息队列,使用Apache Beam来构建管道,使用Flask来构建网络服务器。它在生产中运行平稳,但是我很难使所有组件都与docker-compose连接在一起,尤其是Apache Beam管道。
我遵循Dataflow pipeline and pubsub emulator,通过用我的localhost
中定义的服务名称替换SO答复中的docker-compose.yaml
,使管道监听GCP发布/订阅模拟器:
pubsub_emulator:
build: docker_images/message_queue
ports:
- 8085:8085
webserver:
build: docker_images/webserver
environment:
PUBSUB_EMULATOR_HOST: pubsub_emulator:8085
PUBSUB_PROJECT_ID: my-dev
restart: unless-stopped
ports:
- 8899:8080
depends_on:
- pubsub_emulator
pipeline:
build: docker_images/pipeline
environment:
PUBSUB_EMULATOR_HOST: pubsub_emulator:8085
PUBSUB_PROJECT_ID: my-dev
restart: unless-stopped
depends_on:
- pubsub_emulator
Web服务器能够访问发布/订阅模拟器并生成主题。
但是,管道在启动时失败,并显示MalformedURLException
:
Caused by: java.lang.IllegalArgumentException: java.net.MalformedURLException: no protocol: pubsub_emulator:8085/v1/projects/my-dev/subscriptions/sync_beam_1702190853678138166
管道的选项似乎很好,我用以下方法定义了它们:
final String pubSubEmulatorHost = System.getenv("PUBSUB_EMULATOR_HOST");
BasePipeline.PipeOptions options = PipelineOptionsFactory.fromArgs(args).withValidation()
.as(BasePipeline.PipeOptions.class);
options.as(DataflowPipelineOptions.class).setStreaming(true);
options.as(PubsubOptions.class).setPubsubRootUrl(pubSubEmulatorHost);
Pipeline pipeline = Pipeline.create(options);
是否有人暗示正在发生的事情以及如何解决?唯一的解决方案是否意味着将模拟器和管道设置在同一个docker中?
答案 0 :(得分:1)
您可以尝试将值更改为以下内容:
http://pubsub_emulator:8085
由于该错误抱怨缺少protocol
,而在您的情况下,该错误预计为http
根据Apache Beam SDK,该值应为标准网址:
// getPubsubRootUrl
@Default.String(value="https://pubsub.googleapis.com")
@Hidden
java.lang.String getPubsubRootUrl()
// Root URL for use with the Google Cloud Pub/Sub API.
但是,如果您来自python背景,则会注意到Python SDK使用gRPC Python,如图here所示,期望仅由地址和端口组成的服务器地址< / p>
# A snippet from google-cloud-python library.
if os.environ.get("PUBSUB_EMULATOR_HOST"):
kwargs["channel"] = grpc.insecure_channel(
target=os.environ.get("PUBSUB_EMULATOR_HOST")
)
grpc.insecure_channel(target, options=None)
Creates an insecure Channel to a server.
The returned Channel is thread-safe.
Parameters:
target – The server address