Questions tagged [aerospike]

Aerospike is an open source, distributed NoSQL database and key-value store built to achieve speed at scale out on commodity hardware. Aerospike is commonly used as a key-value store, cache replacement, user profile store, recommendation engine, and fraud detection use cases.

Overview

Aerospike is an open source, distributed NoSQL database and key-value store built to achieve speed at scale out on commodity hardware. Aerospike is commonly used as a key-value store, cache replacement, user profile store, recommendation engine, and fraud detection use cases.

Features

  • An operational NoSQL database with simple real-time analytics capabilities built in.
  • A fast key value store with support for complex objects, user defined functions and distributed queries.
  • The first in-memory NoSQL database optimized for flash (indexes in DRAM and data in DRAM or natively stored on flash devices) with dramatic price/performance benefits.
  • A distributed database with a shared-nothing, clustered architecture and single row ACID properties. Aerospike ensures high availability, replicating data synchronously within clusters and asynchronously across data centers.
  • The system of engagement for personalized and revenue critical user interactions, Aerospike was architected to scale with zero touch and zero downtime operations.

Links

Related tags

816 questions
58
votes
5 answers

How is aerospike different from other key-value nosql databases?

Aerospike is a key-value, in-memory, operational NoSQL database with ACID properties which support complex objects and easy to scale. But I have already used something which does absolutely the same. Redis is also a key-value, in-memory (but…
Salvador Dali
  • 214,103
  • 147
  • 703
  • 753
55
votes
4 answers

Has anyone worked with Aerospike? How does it compare to MongoDB?

Can anyone say if Aerospike is as good as they claim it to be? I'm a bit skeptical since it's a commercial enterprise. As far as I understand they just released a open source version, but the claims on their website could still be exaggerated. I'm…
Ole Spaarmann
  • 15,845
  • 27
  • 98
  • 160
42
votes
4 answers

Comparison : Aerospike vs Cassandra

Both Aerospike and Cassandra says they are better than the other in their own respective benchmarks. Reference : http://java.dzone.com/articles/benchmarking-cassandra-right and a few others. Has anyone used both of them? Is Aerospike as good as…
holmes840
  • 1,063
  • 2
  • 11
  • 24
16
votes
7 answers

Mac : There was an error while executing `VBoxManage`, a CLI used by Vagrant

I am working with aerospike and installing it using vagrant virtual box. After installation, when i am trying to start the virtual machine, it is giving the following error: . There was an error while executing VBoxManage, a CLI used by Vagrant …
KayV
  • 12,987
  • 11
  • 98
  • 148
14
votes
3 answers

High Performance DB for Fast Read and Fast Write. No Update or Delete

I am looking for the database/mechanism to store the data where I can write the data and read the data with high performance. This storage is used to for storing the Logging like important information across multiple systems. Since it's critical…
RaceBase
  • 18,428
  • 47
  • 141
  • 202
12
votes
6 answers

What is namespace in aerospike

I'm new to Aerospike. What is a namespace and how to create a namespace in aerospike?
Nani
  • 446
  • 7
  • 24
12
votes
2 answers

Aerospike: how do I get record key?

Aerospike client has scanAll method for reading all rows from it's store. I use it in the folowing code: ScanPolicy policy = new ScanPolicy(); policy.concurrentNodes = true; policy.priority = Priority.DEFAULT; policy.includeBinData =…
DmitryKanunnikoff
  • 2,226
  • 2
  • 22
  • 35
12
votes
2 answers

Limit number of records in aerospike select query

I am trying to query using aql (Aerospike Query Language) in aerospike set. Suppose there are 1000 records and I want to read any 10 records. Usually I would query something like : select * from test.demo limit 10; How do I query the same using aql…
holmes840
  • 1,063
  • 2
  • 11
  • 24
9
votes
1 answer

Couldn't connect to Docker Aerospike from host

I'm running aerospike server in docker. $ docker run -d --name aerospike aerospike/aerospike-server 0ad3b2df67bd17f896e87ed119758d9af7fcdd9b82a8632828e01072e2c5673f It is started successfully. $docker ps CONTAINER ID IMAGE …
user51
  • 8,843
  • 21
  • 79
  • 158
9
votes
1 answer

Segmentation Fault in Aerospike Python Client

I am using Aerospike Python CLient to put and get some key-value pair: aerospike_dca_client.put(key,bin) ... ... bls_key_a = (AEROSPIKE_NAMESPACE,SET_NAME,bls_key) hp_bid_str_a = aerospike_dca_client.get(bls_key_a)[3]; #Terminates at the line…
Mangat Rai Modi
  • 5,397
  • 8
  • 45
  • 75
9
votes
1 answer

Aerospike ACID clarification

Aerospike database says, that it is [...] architected with three key objectives: To create a flexible, scalable platform that would meet the needs of today’s web-scale applications To provide the robustness and reliability (ie, ACID) expected…
Robert Zaremba
  • 8,081
  • 7
  • 47
  • 78
8
votes
1 answer

how to import and use an external library into a go project

I'm newbie to go lang and i created an hello project with intellij. now I want to use external lib. for example: connect into aerospike using: http://www.aerospike.com/docs/client/go/examples.html what I don't understand is how to import it into…
user8215502
  • 201
  • 2
  • 8
7
votes
1 answer

how do i install Aerospike REST Gateway?

i want to use REST from aerospike because its said language agnostic, im using Ubuntu 20. im trying to understand intallation part here…
Lezir Opav
  • 674
  • 3
  • 6
  • 21
7
votes
1 answer

Is it possible to search for all keys that start with a certain prefix in Aerospike?

So I am looking to model our existing redis data into aerospike. One requirement that we have is to be able to get all the keys for a given user. For eg., say we have keys such as :. Now, at some point in time, I need to get all keys…
gravetii
  • 9,273
  • 9
  • 56
  • 75
7
votes
2 answers

Restarting of aerospike server reading older value

I am using aerospike cluster with storage mechanism SSD. I have updated some key but when i restarted aerospike cluster it restoring previous value in place of new value. WritePolicy writePolicy = new WritePolicy(); writePolicy.recordExistsAction =…
visingh
  • 233
  • 3
  • 17
1
2 3
54 55