Question
We can see pipeline traffic coming across today. The traffic is there, but the updatedDate/insertedDate was not updated in the GBQ tables
Answer
- Recreate the tables for the modified entity types:
Note: the “tableName“ in the below api is optional; if not mentioned, all the tables and views will get recreated.
POST https://<dph-host>/api/tenants/<tenantId>/adapters/<adapterId>/actions/recreate_objects'
--data '{
"types": [
"tables",
"views"
],
"force": true,
"tableName": "entity<entityType>"
}'
Execute the resynchronization job for the respective entity type:
POST http://<env>.reltio.com/reltio/api/<tenantId>/syncToDataPipeline?reindexDeleted=true&entityType=<entityType>
Comments
Please sign in to leave a comment.