Questions tagged [aerospike-ce]

Aerospike Community Edition

Aerospike Community Edition is a FOSS edition of Aerospike licensed under the AGPL. The Community Edition has several notable limitations in comparison to the Enterprise licensed under a proprietary commercial license. The Community Edition provides no support for authentication and has some limitations on "durable deletes".

41 questions
0
votes
1 answer

Unable to create aerospike cluster of 2 nodes using docker image

I am currently experimenting with the Aerospike Docker image (aerospike/aerospike-server) and I’m facing difficulties in setting up a simple 2-node cluster on my Mac. I am using Aerospike Community Edition build 6.3.0.2. To recreate the issue,…
Rohit Singh
  • 133
  • 1
  • 7
0
votes
0 answers

Unable to setup Aerospike single node cluster due to DISALLOW MIGRATIONS

Getting below logs while setting up aerospike. It says DISALLOW MIGRATION. Although as per doc, it says that migrations are disallowed while rebalance is happening. But since it is a newly setup single node cluster, it should not need rebalance.I am…
Deepti
  • 138
  • 1
  • 8
0
votes
2 answers

How to Connect PHP with Aerospike Database?

Installed Aerospike community 6.0 version in Cent OS thru VM ware, using AQL I can insert and delete values.. Now i want to connect with php with Aerospike.. how it can be done thru aql.. can anyone please tell me the steps for installing php and…
0
votes
1 answer

AerospikeError Operation not allowed at this time while doing only reads

I am trying to load test my code with 50 parallel read requests. I am querying data based on multiple indexes that I have created. Code looks something like this: const fetchRecords = async (predicates) => { let query = aeroClient.query('test',…
YetAnotherBot
  • 1,937
  • 2
  • 25
  • 32
0
votes
0 answers

Aerospike Collectd plugin with Python3 on Ubuntu 20 LTS

I have tried to run the Aerospike Collectd plugin ([https://github.com/aerospike-community/aerospike-collectd][1]), however, I have run into several problems/issues. When trying to build with pip or pip3, it fails both times. With pip3, I have been…
0
votes
1 answer

Install aerospike community server on Ubuntu 20.04

aerospike-server-community-5.2.0.2.ubuntu20.04.x86_64.deb depends python package, but Ubuntu 20.04 support only python3 and when I’m trying to install deb package I’m getting an error: dpkg: dependency problems prevent configuration of…
A.J.
  • 446
  • 3
  • 9
0
votes
1 answer

Spring-data-aerospike | how to achieve rollback in case whole transaction is rolled back

Use Case :- We are using Spring-data-aerospike to get and save the aerospike record. Problem :- We are performing SAVE into two different aerospike sets and both of these SAVES should happen in an transactional manner i.e. if 2nd write fails, then…
0
votes
1 answer

Spring-data-aerospike | How to achieve transactional behaviour

Use Case :- We are using Spring-data-aerospike to get and set the aerospike record. At the same time we have multiple Kafka consumers who are trying to update the different fields of a single record. Problem :- We are facing the challenge of…
0
votes
1 answer

Why are Reads/sec very less in aerospike then as compared to Write/sec?

I am using aerospike v4.8 and i am making read and write requests to aerospike where in my write request i am getting a throughput of 4000 writes/sec whereas in reads the throughput is only 10-15 reads/sec which is very low. My query is: let query…
Yash Tandon
  • 345
  • 5
  • 18
0
votes
1 answer

Aerospike spring data append to list

For a given id which is my primary key I want to append data to a List type if id is already present , if not then I want to create new List. Here is my aerospike schema - Column1: columnname=id; columntype=Integer;…
Manas Saxena
  • 2,171
  • 6
  • 39
  • 58
-1
votes
1 answer

Spring-data-aerospike 'findByAttribute' operation working mysteriously

Link followed :- https://www.aerospike.com/blog/spring-data-for-aerospike/ We have an below sample Entity :- @Document(collection = "cust", expiration = 90, expirationUnit = TimeUnit.DAYS) public class Customer { @Id @Field(value = "PK") …
Aditya Goel
  • 201
  • 1
  • 15
1 2
3