AWS Gotchas

AWS Gotchas

I will highlight AWS gotchas as I find them

Dynamodb

TTL Fields are in Seconds

TTL Fields on dynamodb are great, as they allow a grace period between marking a record for deletion and the actual deletion. M…


This content originally appeared on DEV Community and was authored by Jon Ashdown

AWS Gotchas

I will highlight AWS gotchas as I find them

Dynamodb

TTL Fields are in Seconds

TTL Fields on dynamodb are great, as they allow a grace period between marking a record for deletion and the actual deletion. Meaning that when you have finished with a record, you can set a TTL field to a time in the future and AWS internal mechanisms will remove the record at some point soon after the that time has passed.

Gotcha:

The TTL field is an integer in seconds from the Unix epoch, all other dates, including explicit date fields in dynamodb are stored as ISO dates, which are stored under the hood as microseconds from the Unix epoch. This is documented at Using DynamoDB Time to Live (TTL). However, it is easy to forget hence the reason for this gotcha.

Workaround:

Calculate the TTL using your standard date library, convert to integer and divide by 1000 to convert milliseconds to seconds.
e.g

import { DocumentClient } from 'aws-sdk/clients/dynamodb'
const dynamoDb = new DocumentClient()

const hoursInTheFuture = 24

const getFutureTimeInSeconds = () => {
  const time = new Date()
  const hours = time.getHours() + hoursInTheFuture

  time.setHours(hours)

  return Math.round(time.getTime() / 1000)
}

export const deleteInTheFuture = async (id) => {
  const result = await dynamoDb.update({
    TableName: 'myDynamoDbTable',
    Key: {
      id
    },
    UpdateExpression: 'SET ttl = :t',
    ExpressionAttributeValues: {
      ':t': getFutureTimeInSeconds() //record will be deleted 24 hours from now
    }

  }).promise()

  return result
}


This content originally appeared on DEV Community and was authored by Jon Ashdown


Print Share Comment Cite Upload Translate Updates
APA

Jon Ashdown | Sciencx (2021-11-17T14:36:25+00:00) AWS Gotchas. Retrieved from https://www.scien.cx/2021/11/17/aws-gotchas/

MLA
" » AWS Gotchas." Jon Ashdown | Sciencx - Wednesday November 17, 2021, https://www.scien.cx/2021/11/17/aws-gotchas/
HARVARD
Jon Ashdown | Sciencx Wednesday November 17, 2021 » AWS Gotchas., viewed ,<https://www.scien.cx/2021/11/17/aws-gotchas/>
VANCOUVER
Jon Ashdown | Sciencx - » AWS Gotchas. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2021/11/17/aws-gotchas/
CHICAGO
" » AWS Gotchas." Jon Ashdown | Sciencx - Accessed . https://www.scien.cx/2021/11/17/aws-gotchas/
IEEE
" » AWS Gotchas." Jon Ashdown | Sciencx [Online]. Available: https://www.scien.cx/2021/11/17/aws-gotchas/. [Accessed: ]
rf:citation
» AWS Gotchas | Jon Ashdown | Sciencx | https://www.scien.cx/2021/11/17/aws-gotchas/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.