How to synchronize AWS DynamoDB with dataset ios swift? -
i using aws cognito , dynamodb.i have authenticated user using aws cognito , used crud operation in dynamodb successfully.i creating dataset when internet not available have no idea how synchronize dataset dynamodb.is aws support dataset synchronization dynamodb.
you have several options depending on use-case.
the straightforward , simple option use dynamodb streams. can store updates dynamodb table 24 hours , allows read these changes , reapply them in db.
if 24 hour window strict you, have create sort of dynamodb snapshots. can create dynamodb snapshot every 24 hours , store s3. can use dynamodb streams read real time updates , snapshots read baseline data.
to create dynamodb snapshots can use data pipeline service.
Comments
Post a Comment