387 questions
Score of 0
0 answers
222 views
efficient way to store 100GB dataset
I have 100GB dataset in this format with row format as seen below.
cookie,iplong1,iplong2..,iplongN
I am currently trying to fit this data into redis as a sorted set data structure. I would also need ...
Score of 2
0 answers
136 views
Marshmallow schema for AWS SimpleDB
I'm trying to setup some marshmallow classes to simplify putting and getting records from AWS SimpleDB service.
AWS requires a list of name, value pairs in the put_record explained in the interface ...
Score of 1
1 answer
112 views
How to use pagination in SimpleDB?
I just started using SimpleDB, but here I got stuck in applying pagination. I need rows from 5 to 15. But, based on my search I found that the below query will not work here (as it works for SQL):
...
Score of 0
1 answer
623 views
Configuring Celery + AWS SQS to revoke tasks
I am running Celery+Kombu 4.4.6 on AWS SQS and want to revoke and terminate tasks.
Reading through documentation and SO posts, the transport needs to allow broadcast messages. SQS does not do ...
Score of 2
1 answer
1108 views
Best strategy to archive specific records from RDS to a cheaper storage in AWS
I have the following requirements:
For every deleted record in RDS we need to archive it into somewhere cheaper on AWS.
Reduce storage cost
Not using Glacier
Context oriented (e.g. a file per table)
...
Score of 1
1 answer
166 views
AWS SimpleDB BatchPutAttributes returning 503 Service Unavailable
Some of my batch calls are working (5 out of 8 succeeded). I have no idea why the other 3 batch calls are not working, please can anyone help? I am doing batch calls of 25 every 10 minutes.
Below is ...
Score of 4
2 answers
1010 views
Amazon SimpleDB & DynamoDB for storing blog posts
Consider a simple blog post schema has the following columns
ID
Author
Category
Status
CreatedDateTime
UpdatedDateTime
So assume the following queries
query by ID
query by Author, paginated
query ...
Score of 2
1 answer
1744 views
C# String Parameters to protect against injection?
Take this code as an example:
IAmazonSimpleDB client = new AmazonSimpleDBClient(Amazon.RegionEndpoint.USEast1);
SelectResponse response = client.Select(new SelectRequest() {
SelectExpression ...
Score of 4
2 answers
3107 views
Where is amazon simpledb?
Usually one can find amazon service using the search feature, but simpledb yields nothing.
I know it's not an active project but has it disappeared completely?
If not, how to find it in the console?
Score of 1
1 answer
2740 views
NoSuchFieldError: INSTANCE
I have an issue with a project I have downloaded from AWS (https://aws.amazon.com/de/code/travel-log-sample-java-web-application/?tag=code%23keywords%23amazon-simpledb). That looked like an easy one. ...
Score of 0
1 answer
219 views
Select item using ItemName in AWS simpledb
I've recently started exploring SimpleDB java sdk. and I'm trying to get the item using the ItemName.
please refer below test code -
val demoItem = Item("id1", listOf(Attribute("fName", "Test7")...
Score of 2
1 answer
319 views
Create SimpleDB domain using serverless.yaml
So I am creating a server less application on Amazon AWS using the Serverless Framework.
For our stack, we create a number of Lambda functions, DynamoDB table, API Gateway and now we want to add a ...
Score of 1
0 answers
216 views
Unable to access AWS SimpleDB from VPC enabled Lambda
I am facing a problem to access SimpleDB database from my VPC enabled Lambda function.
Below are the things which I have already done for VPC enabled lambda :
1. I have already set up my VPC ...
Score of 0
1 answer
1227 views
What is the best AWS database solution for a simple yet large database
I am working on an application which will run on an EC2 webserver. The app will use two databases, one small which manages the site/app and holds all such related data, the second will be a large ...
Score of 2
1 answer
1796 views
AWS SimpleDB CLI: How to use the 'select' command?
I'm trying to use the select command of AWS SimpleDB from AWS CLI.
The required call is as follows:
select
--select-expression <value>
with select-expression being described as follows: --...