如何创建汇总多个出版物的流星出版物?

时间:2022-05-02 16:32:41

I have a geographically distributed system, with several isolated meteor application servers providing access on their respective LAN's. I face now the challenge of exposing them all to the internet and bringing data from all of them together through a centralized cloud application that will be able to operate them remotely. I considered some approaches and my question now is specific for one of them.

我有一个地理上分布的系统,有几个独立的流星应用服务器,可以在各自的局域网上提供访问。我现在面临的挑战是将它们全部暴露在互联网上,并通过集中的云应用程序将所有这些数据集中在一起,这些应用程序将能够远程操作它们。我考虑了一些方法,现在我的问题是针对其中一个方法的。

I want to subscribe (server side subscription call) to publications from several hosts to create a single aggregated meteor publication. Is it possible ? How can I achieve that ?

我想订阅(服务器端订阅调用)来自几个主机的出版物,以创建单个聚合流星出版物。可能吗 ?我怎样才能做到这一点?

1 个解决方案

#1


There is no straight forward way to combine multiple meteor applications. The desire would be even more complicated if you want to push any data back to an application. A barebone approach might be to create JSON endpoints at each application and aggregate them at another application.

没有直接的方法来组合多个流星应用程序。如果您想将任何数据推送回应用程序,那么愿望将更加复杂。准系统方法可能是在每个应用程序上创建JSON端点并在另一个应用程序上聚合它们。

#1


There is no straight forward way to combine multiple meteor applications. The desire would be even more complicated if you want to push any data back to an application. A barebone approach might be to create JSON endpoints at each application and aggregate them at another application.

没有直接的方法来组合多个流星应用程序。如果您想将任何数据推送回应用程序,那么愿望将更加复杂。准系统方法可能是在每个应用程序上创建JSON端点并在另一个应用程序上聚合它们。