Documentation for a newer release is available.
View Latest
Esta página no está disponible actualmente en Español. Si lo necesita, póngase en contacto con el servicio de asistencia de Icon (correo electrónico)
Mongo Offset Data Model
Collection Overview
MongoOffset
Fields
Below are the fields for the mongoOffset collection:
| Field | Description | Example |
|---|---|---|
_id |
PK - We set this value at the application level to be a complex type referencing the tag and eventProcessorId |
{"tag" : "tag-0", "eventProcessorId" : "IpfProcessingDataEventProcessor"} |
offset |
Stores the latest offset value as a MongoDB ObjectID |
{"objectId" : "644a63481ddeb960823f6cac"} |
Example Record
{
"_id" : {
"tag" : "tag-0",
"eventProcessorId" : "IpfProcessingDataEventProcessor"
},
"offset" : {
"objectId" : "644a63481ddeb960823f6cac",
"_class" : "com.iconsolutions.akka.persistence.mongodb.MongoDBReadJournal$ObjectIdOffset"
},
"_class" : "com.iconsolutions.ipf.core.platform.journal.mongo.MongoOffset"
}