Docs Menu

Docs HomeDevelop ApplicationsAtlas Device SDKs

Stream Data to Atlas - Node.js SDK

On this page

  • Sync Data Unidirectionally from a Client Application
  • Define an Asymmetric Object
  • Connect and Authenticate with an App Services App
  • Open a Realm
  • Create Asymmetric Objects

You can use Data Ingest to stream data from the client application to a Flexible Sync-enabled Atlas App Services App.

You might want to sync data unidirectionally in IoT applications, such as a weather sensor sending data to the cloud. Data Ingest is also useful for writing other types of immutable data where you do not require conflict resolution, such as creating invoices from a retail app or logging application events.

Data Ingest is optimized to provide performance improvements for heavy client-side insert-only workloads.

1

Asymmetric objects sync data unidirectionally. Define an asymmetric object by setting asymmetric to true in your object model:

For more information on how to define an asymmetric object, refer to Define an Asymmetric Object.

2

To stream data from the client to your backend App, you must connect to an App Services backend and authenticate a user.

Data Ingest is a feature of Flexible Sync, so the App you connect to must use Flexible Sync.

3

After you have an authenticated user, you can open a synced realm using a Flexible Sync configuration object.

const realm = await Realm.open({
schema: [WeatherSensor],
sync: {
user: app.currentUser,
flexible: true,
},
});

Unlike bi-directional Sync, Data Ingest does not use a Flexible Sync subscription.

You cannot query an asymmetric object or write it to a local realm, so asymmetric objects are incompatible with bi-directional Flexible Sync, Partition-Based Sync, or local Realm use.

4

Once you have an open Realm, you can create an asymmetric object inside a write transaction using Realm.create(). When creating an asymmetric object, Realm.create() returns undefined rather than the object itself.

realm.write(() => {
realm.create(WeatherSensor, {
_id: new BSON.objectId(),
deviceId: "WX1278UIT",
temperatureInFahrenheit: 66.7,
barometricPressureInHg: 29.65,
windSpeedInMph: 2,
});
});

You cannot read these objects. Once created, they sync to the App Services backend and the linked Atlas database.

Atlas Device Sync completely manages the lifecycle of this data. It is maintained on the device until Data Ingest synchronization is complete, and then removed from the device.

← Set the Client Log Level - Node.js SDK