Using INFLUX DB 2.0 I use the write API to insert one record with line protocol using postman.
curl --location --request POST 'http://localhost:8086/api/v2/write?org=my-org&bucket=test&percision=s' \
--header 'Authorization: Token test' \
--header 'Content-Type: text/plain' \
--data-raw 'mem,host=host1 used_percent=23.43234543 1625392977'
I increased the retention period to one year.
And this results in:
{
"code": "unprocessable entity",
"message": "failure writing points to database: partial write: points beyond retention policy dropped=1"
}
I have no clue why it still complains about the retention period as I use a timestamp of today. Any ideas on what this might be?
