Diego Sucaria
Diego Sucaria

Reputation: 324

Google replacement for CloudMqtt

We have an IoT project here

Facts:

We are using cloudmqtt (www.cloudmqtt.com) to generate a push event on our C client app, which then runs the sync process with the server

Is there a google cloud replacement for what we are doing?

We tried Google Push/Sub, but our C app needed to be polling the service.

We would love to use Google Cloud Messaging but we could not find any way to use it for push notifications for the client.

Basically, we need to send push messages to a raspberry pi, what would you recommend for that? (remember our server is on GAE)

Upvotes: 0

Views: 1120

Answers (1)

Vikram Tiwari
Vikram Tiwari

Reputation: 3895

GCM handle polling mechanisms on its own and should let you push notifications as well as messages to the client. Try debugging your application using documentation.

During I/O 2016, they also launched Firebase Cloud Messaging (FCM) which is basically a newer version of GCM, and is the recommended product to use.

But if you wanted to use your deployment rather than a service, you can use Google Compute Engine instances to deploy EMQTTD which is a highly scalable MQTT broker written in Erlang.

Upvotes: 1

Related Questions