Questions tagged [amazon-timestream]

Use this tag for questions about Amazon Timestream, a fully managed time series database service.

153 questions
0
votes
1 answer

S3 IAM Permissions For AWS TimeStream CreateBatchLoadTask

I couldn't find this anywhere when I searched but I figured it out and decided to post it here in case anyone else was searching. The permissions needed to the S3 bucket for TimeStream CreateBatchLoadTask API calls are as follows (also includes…
0
votes
1 answer

AWS Timestream Scheduled Query runs into an "Record Already Exists" error

So, I have a table in AWS Timestream called test-table that has some metrics of every minute. Each record has a unique timestamp. I do not set the version explicitly for these records since they are uniquely identified by timestamp. Now, I created a…
0
votes
0 answers

AWS timestream query adding two measure value

Is there a way to create an AWS timestream query ordered by the sum of two measure value for two different kind of measure name. for a table…
Pierre
  • 558
  • 1
  • 7
  • 36
0
votes
1 answer

How to fill gaps in timestream query

I am very new to aws timestream, but from the docs, it looks like the perfect place to add trade data. I was using this data to create a candlestick graph. But when there are long periods of time when no trade happened, the time series is not…
Emmanuel Thomas
  • 159
  • 1
  • 12
0
votes
1 answer

Column does not exist AWS Timestream Query error

I am trying to apply WHERE clause on DIMENSION of the AWS Timestream records. However, I got the error: Column does not exist Here is my table schema: The table schema The table measure First, I will show all the sample data I put in the…
0
votes
0 answers

Write 2 months historical data from S3 to aws timestream

I want to write 2 months old data from S3 bucket and each day has 4 to 5 parquet files. Now I have converted the parquet files to data frame but the amount of rows forming from 1-day data is around 3.5M. Now I have created 100 batches to send the…
0
votes
0 answers

Restore 2 months data in aws timestream in 1 go using Lambda

By mistake, I deleted a few tables in timestream which were in use. I know we can't restore the tables but is there any way I can restore 2 months of data in timestream in 1 go without incurring high cost by using aws Lambda? Please help
0
votes
1 answer

Is it possible to retrieve the Timestream schema via the API?

The AWS console for Timestream can show you the schema for tables, but I cannot find any way to retrieve this information programatically. While the schema is dynamically created from the write requests, it would be useful to check the schema to…
Arne Claassen
  • 14,088
  • 5
  • 67
  • 106
0
votes
0 answers

(ValidationException) when calling the WriteRecords operation:You have reached the maximum number of Multi measureValue names for a record

I'm getting the error beneath while writing in AWS Timestream. ValidationException: An error occurred (ValidationException) when calling the WriteRecords operation: You have reached the maximum number of Multi measureValue names for a record. See…
0
votes
1 answer

How to implement GDPR Right to erasure with AWS Timestream

In an application that collects data from IoT devices from multiple customer in a single AWS Timestream table, what if a customer leaves and requests all of its data to be deleted, according to GDPR's right to erasure? Timestream doesn't support…
Florian Fankhauser
  • 3,615
  • 2
  • 26
  • 30
0
votes
2 answers

Transfer Data from AWS Time Stream to DynamoDB

i am working in the IoT Space with 2 Databases. AWS Time Stream & AWS DynamoDB. My sensor data is coming into Time Stream via AWS IoT Core and MQTT. I set up a rule, that gives permission to transfer the incoming data directly into Time Stream. What…
0
votes
0 answers

boto3 returning more rows than actual rows in timestream

I'm trying to run a query from aws timestream using boto3 in sam from the query I have received 51362 rows whereas when I checked in timestream there were only 1500 rows. 51362 rows using boto3.
0
votes
1 answer

How to add AWS Timestream datasets to AWS QuickSight

I wanna use QuickSight for visualization with AWS Timestream as data source. But I cannot see any icon of AWS Timestream. The region of both services are the same(ap-northeast-1). And when I set up Quicksight, I checked the box to add permission to…
Ryo Matsuzaka
  • 135
  • 1
  • 1
  • 9
0
votes
0 answers

AWS TimeStream Java SDK - configure max number of columns

I am using the AWS timestream Java SDK to query timestream table. My code String query = """ SELECT Response, ResponseSize, RequestSize, Url, StatusCode, …
Borislav Stoilov
  • 3,247
  • 2
  • 21
  • 46
0
votes
1 answer

data visualization from timestream using python

I have a AWS Timestream database and i want to visualize the data in the timestream database on a graph (temperature & humidity) using python. I am planninig to use PySimpleGUI for data visualization. I really need to know the process to extract my…