Questions tagged [aerospike-loader]

Questions about the Aerospike-loader tool.

Questions about the Aerospike-loader tool.

Please be sure to read the user guide.

18 questions
4
votes
1 answer

How to create two Aerospike Clusters on same L2 network

I am using two aerospike clusters(each with one node/machine only). Since both machine are on same LAN, they try to connect each other trying to form single cluster. Because of this I was getting error(while inserting record): Error: (11)…
user3851499
4
votes
1 answer

Aerospike: how to bulk load a list of integers into a bin?

I'm trying to use the Aerospike bulk loader to seed a cluster with data from a tab-separated file. The source data looks like this: set key segments segment 123 10,20,30,40,50 segment 234 40,50,60,70 The third column, 'segments', contains a comma…
Alex Woolford
  • 4,433
  • 11
  • 47
  • 80
3
votes
2 answers

Aerospike set expiration date for specific field

I have an Aerospike cache consists of list of data with value of json like structure. example value: {"name": "John", "count": 10} I was wandering if it is possible to set an expiration time for only the count field and reset it after some time.
tsadkan yitbarek
  • 1,360
  • 2
  • 11
  • 28
3
votes
1 answer

Aerospike user not found when running as nonroot

I am using community edition aerospike docker image. Our k8s cluster does not allow running containers as root. hence i started following this doc for running as non root. But when run the image i am getting below error link eth0 state up link eth0…
best wishes
  • 5,789
  • 1
  • 34
  • 59
3
votes
2 answers

Bulk import in Aerospike using NodeJs

I'd like to insert millions of records as a batch process from MongoDB to Aerospike. I follow the documentation and found this doc: http://www.aerospike.com/docs/client/nodejs/usage/kvs/write.html but with this only one record can we inserted at a…
Vikalp
  • 71
  • 1
  • 10
2
votes
1 answer

Best way to update single field in Aerospike

I have an Aerospike cache consists of list of data with value of json like structure. example value: {"name": "John", "count": 10} I wanted to scan for all records and reset count to zero. What would be a good option to handle this problem?
tsadkan yitbarek
  • 1,360
  • 2
  • 11
  • 28
2
votes
1 answer

How to create Namespace and Set

I'm new to Aerospike.. How to create a New Namespace and new set.. I have gone thru some docs and videos but I didn't find any useful thing. i have read somewhere which is 5 years old blog, i.e. thru config file only we can create namespace and…
2
votes
1 answer

Aerospike python client: check if records were stored on the cluster successfully

I am working on Aerospike python client. I am inserting data into the cluster using aerospike loader. Now I need to see whether the records were stored on the cluster successfully. The command being used: command = 'java -cp…
user3868051
  • 1,147
  • 2
  • 22
  • 43
2
votes
3 answers

Use multiple fields as key in aerospike loader

I am wanting to upload a psv file with records holding key statistics for a physician, location and a practice, stored per day. A unique key for this entry would consist of a: physician name, practice name, location name, and a date of service. Four…
Edmon
  • 4,752
  • 4
  • 32
  • 42
1
vote
2 answers

Is it possible to use primary key along with secondary key in Aerospike for fetching a record?

Is it possible to use primary key along with secondary key. I want to get all records on the basis of primary key and then apply secondary index over it? Is it the correct way to do it or some other approach should be used? I have a bin with primary…
martin
  • 49
  • 2
  • 10
1
vote
1 answer

Aerospike: Device Overload Error when size of map is too big

We got "device overload" error after the program ran successfully on production for a few months. And we find that some maps' sizes are very big, which may be bigger than 1,000. After I inspected the source code, I found that the reason of "devcie…
Jiayi Liao
  • 999
  • 4
  • 15
1
vote
2 answers

amc, aerospike are not recognized inside docker container

I've docker ubuntu 16.04 image and I'm running aerospike server in it. $ docker run -d -p 3000:3000 -p 3001:3001 -p 3002:3002 -p 3003:3003 -p 8081:8081 --name aerospike aerospike/aerospike-server The docker container is running successfully. $…
user51
  • 8,843
  • 21
  • 79
  • 158
1
vote
1 answer

Missing key in mapping

Trying to upload .csv file using Aerospike loader but I keep getting this error. I am trying to figure out what I am missing. ERROR Parser :243 - "bin_list" Key is missing in mapping. Mapping:…
lft93ryt
  • 948
  • 1
  • 16
  • 32
1
vote
1 answer

Multiple writes in Aerospike Java

I am reading the CSV File in Java, Now i want to Stored the data present in CSV File to Aerospike. i want to do batch processing, is there is any solution for this, as per my research Aerospike does not support batch processing for write. please…
idiotduffer
  • 389
  • 1
  • 4
  • 17
1
vote
2 answers

Aerospike-loader installation giving error on Ubuntu 14.04

when i am trying to install aerospike-loader using mvn clean install command, it gives error. Below is the result of mvn clean install command.At the end of result it shows error. [INFO] Scanning for projects... [INFO]…
Arti Berde
  • 1,182
  • 1
  • 11
  • 23
1
2