根据上一个问题about invoking remote RPCs,文档中包含的另一个例子是:
$ cat nameko.sh
#!/bin/bash
/usr/local/bin/nameko run service1:Microservice1 &
nameko_id=$!
echo 'Microservice 1 PID: ' $nameko_id
/usr/local/bin/nameko run service2:Microservice2 &
nameko_id=$!
echo 'Microservice 2 PID: ' $nameko_id
wait 2> /dev/null
$ cat service1.py
# -*- coding: utf-8 -*-
from nameko.rpc import rpc, RpcProxy
class Microservice1(object):
name = "microservice1"
@rpc
def hello(self):
print 'Microservice1 hello method invoked'
return True
$ cat service2.py
# -*- coding: utf-8 -*-
from nameko.rpc import rpc, RpcProxy
class Microservice2(object):
name = "microservice2"
microservice1 = RpcProxy('microservice1')
@rpc
def remote_hello(self):
print 'Microservice2 invokes hello method from Microservice1'
self.microservice1.hello()
return True
我正在尝试构建一个架构,其中微服务在启动时针对中央微服务注册自己(基本上这个中央微服务负责显示REST API,其中每个微服务处理它们的REST API部分 - 这是完成的避免使用反向代理并处理端口号 - )。
在Nameko中,如何在微服务注册时启动远程过程?正如上面帖子的答案中所提到的,远程RPC调用不能在@rpc方法之外完成。
答案 0 :(得分:0)
实际上,单独代理这里回答的是实现这个目标的方法:
答案 1 :(得分:0)
使用一次入口点
from nameko.testing.service import once
class Microservice2(object):
name = "microservice2"
microservice1 = RpcProxy('microservice1')
@rpc
def remote_hello(self):
print 'Microservice2 invokes hello method from Microservice1'
self.microservice1.hello()
return True