Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
2 votes
1 answer
531 views

Aerospike TTL updates

I am trying to update .put() into existing records in Aerospike using the python client. I was excited to discover that you can actually put into existing records and not update the TTL as shown ...
Sokratis's user avatar
2 votes
1 answer
428 views

Set TTL when using Aerospike with Spark in Java

I’m new to Aerospike. We are using Aerospike with Spark (Java) for our system. I want to set TTL for a dataframe everytime the data is written to Aerospike. However, I could not find a way to do that ...
tuancoltech's user avatar
3 votes
1 answer
1k views

How to modify the TTL of all records set with a ttl of -1 in aerospike?

I want to modify the TTL of all the records that were accidentally set with a 'never expire' TTL (-1 in the client). How would I do that?
Ronen Botzer's user avatar
  • 7,097
2 votes
1 answer
980 views

How to fetch records set with a ttl of -1 in aerospike?

I have so many records in aerospike, i want to fetch the records whose ttl is -1 please provide solution
Ashu's user avatar
  • 357
5 votes
2 answers
2k views

Update ttl for all records in aerospike

I was stuck in a situation that I have initialised a namesapce with default-ttl to 30 days. There was about 5 million data with that (30-day calculated) ttl-value. Actually, my requirement is that ...
chikku's user avatar
  • 913
4 votes
2 answers
822 views

Find records with TTL 0 in Aerospike

my aerospike cluster hitting 50% disk usage and records are started evicting. I have doubt I do not write that many records daily to the cluster.Per records we have 90days TTL set and default TTL for ...
user3369417's user avatar
3 votes
1 answer
746 views

How to set ttl for aerospike record ttl through NodeJS Client

I am using the NodeJS client for aerospike, and trying to set the ttl for a record, below is the code for the same. insert(key, value) { return new Promise(function (resolve, reject) { ...
Ajay Pal Singh's user avatar
3 votes
3 answers
2k views

Aerospike TTL listener

I am doing a POC with Aerospike. It seems to fit all my needs except for one. When I set a TTL on a record, it expires after the TTL expires as expected, but I have a requirement where I want ...
Vivek Kothari's user avatar
3 votes
1 answer
472 views

Individual TTLs for list elements in Aerospike

I want to store a Mapping of user's session ids in aerospike, it would be of the type:id->[session1, session2]. I want each session ID to have a specific TTL. How can I get this done? Can I make a ...
Sandeep Kaul's user avatar
  • 3,257
3 votes
2 answers
583 views

Aerospike: get upsert time without explicitly storing it for records with a TTL

Aerospike is blazingly fast and reliable, but expensive. The cost, for us, is based on the amount of data stored. We'd like the ability to query records based on their upsert time. Currently, when we ...
Alex Woolford's user avatar
1 vote
1 answer
170 views

Set a TTL for an Aerospike large list from node.js client

Is there a way to set a time-to-live for a large list from aerospike node.js client? Same question for a sub record in a list?
moubert's user avatar
  • 272