0
votes
0answers
4 views

Unable to fetch metric values for EC2 instances from cloudwatch

I am trying to get the CPU Utilazation from the cloudwatch, but i am getting error and unable to figure out what went wrong. This is what I get in Logcat: E/dalvikvm(22587): Could not find class ...
0
votes
0answers
14 views

Copy a file from S3 bucket to another bucket in S3

I can copy a file from S3 bucket to another bucket in S3 in Cloudberry explorer. But in my java program s3 client encountered a serious internal problem while trying to communicate with S3. It lost ...
0
votes
0answers
21 views

How can Java determine if running on AWS

What's the fastest way, in terms of execution time, for a Java JVM to determine if it's running on an AWS EC2 instance? My current method is to do an http fetch to ...
-1
votes
0answers
37 views

Is There a way to connect to my account which is created in amazon site? [closed]

I have created an account in amazon site and i have done some activities there, like adding products to cart etc.now i need to access that information through web application with my credentials.i ...
-3
votes
0answers
18 views

How to access amazon's user information through web application created using java with their credentials [closed]

I want develop web application in eclipse IDE which should retrieve user information from the amazon site through their credentials. How to achieve this. Please help me.
4
votes
2answers
53 views

DynamoDB migration from AWS Java SDK 1.4.1 to 1.4.2

Has anyone made the change to the new namespaces and interface in the AWS Java SDK 1.4.2+ for DynamoDB? The release of Local Secondary Indices apparently necessitated breaking changes as per the 1.4.2 ...
1
vote
1answer
32 views

How to fetch the CloudWatch metrics data for EC2 instances

I want to fetch the Cloudmetrics data for my EC2 instance so that I can draw graphs using those data and display it on my android device. How do I do that? Is there any sample program or tutorial for ...
0
votes
0answers
19 views

Proxy Error After Loopback Connection To Localhost On AWS Elastic Beanstalk Server

I have an GWT/AJAX application that needs to provide snapshots to the Google crawler. To do this, I use the HtmlUnit headless browser to fetch a snapshot from the servlet when an _escaped_fragment_ ...
1
vote
2answers
29 views

EC2- Run jar on running EC2 instance

I have an EC2 instance and i have a .jar that i already took (wget script command) from S3. I want to run this .jar file, but not on start-up, just when i decide. I'm using Java with "Eclipse Juno" ...
1
vote
0answers
26 views

Java Socket with Amazon AWS Elastic Load Balancer

I'm trying to use the Elastic Load Balancer in front of a Web Server. There will be a applet running in the background of an EC2 machine. Let's say if the EC2 machine public IP is 50.1.1.1 also the ...
0
votes
1answer
60 views

Need Simple Server Solution: Unity 3D Asset Bundles

We have a game that is 100 MB. We will break it up into 2 files, 1 25 MB (for the app store) and the other 75 MB to be dynamically downloaded on first time game load. We don't have any web gurus on ...
-1
votes
0answers
54 views

Android FTP Upload Not going through

I have been trying to upload a file to an amazon instance from android phone.I have enabled the passive mode and all write permissions in the instance. public class videoupload extends ...
0
votes
1answer
36 views

List<Message> contains only one Message though I pass many

When I send multiple messages to my SQS and read it like //Sending message to queue SendMessageRequest smr = new SendMessageRequest(queueUrl, "one"); sqs.sendMessage(smr); smr = new ...
0
votes
2answers
34 views

The security group 'gettingstartedgroup' does not exist

I am trying to learn Amazon AWS. I ran their tutorial package-"GettingStartedApp.java" after setting my access id and access key in the property file. But I see this exception. Caught Exception: The ...
0
votes
1answer
36 views

hadoop/emr how to store key-value pairs

I am running a series of MapReduce jobs on EMR. However, the 3rd MapReduce job needs the data output from the 2nd MapReduce job, and the output is essentially over a million key-value pairs (both the ...
-1
votes
0answers
27 views

Amazon EC2, S3 and a few Scenarios [closed]

I want to design a system which have the following situation: The client keep giving input to the server The server has an web page that can see the input data at a specific web page The server also ...
0
votes
1answer
30 views

Amazon EMR : java.io.IOException: File already exists: s3n://<bucketname>/output/part-r-00002

I am running a MapReduce Job. My code consists of only one class that does a simple calculation. It runs successfully on the single node setup of hadoop1.0.3 When I run it on EMR, I get the following ...
0
votes
0answers
23 views

Where is my spring web service storing my cached data when using ehcache?

I am working on a spring source java web service project. I am using ehcache to cache data and avoid having to make expensive io bound method calls repeatedly. I have set this up and it is working on ...
0
votes
0answers
32 views

Parsing Amazon URL to find book information

I am looking to parse amazon urls to find information about the author and the book. What is the best way to achieve this? Should I be using an html parser or is something better? Thanks
0
votes
0answers
20 views

Hadoop taking forever on EMR and profiling EMR

I am running a sample hadoop job over ~500 documents on S3, and when ran locally it takes <15min to complete. However, when I tried running the same job on EMR, it takes over 2 hours and still ...
3
votes
1answer
163 views

Redis/Jedis no single point of failure and automated failover

In a simple situation with 3 servers with 1 master and 2 slaves with no sharding. Is there a proven solution with java and Jedis that has no single point of failure and will automatically deal with a ...
0
votes
3answers
26 views

What is the AWS Elastic Beanstalk CPU cap on the Free Tier?

I have a web app that will definitely be a low-traffic app (less than a few dozen hits per day), but when it does get a "hit" (the user actually has to kick off an action), it wakes up and does some ...
1
vote
1answer
60 views

getting started with the latest version of hadoop and ec2

I am following Hadoop in Action to get started with hadoop with ec2. I'm running on ubuntu and have downloaded and installed the latest version of Hadoop. I am hitting a road block at this command: ...
1
vote
3answers
57 views

Writing from EC2 to S3

I have a Java program that runs on Amazon EC2. I wanted the program to write it to S3. I wasnt able to find instructions on how to write to S3 from Amazon EC2. What is the approach I shoulduse ?
0
votes
0answers
64 views

Performance issue on MySQL RDS with Play Framework EBean

I have faced a performance issue on RDS. I'm using Play Framework 2.1.1 with MySQL. The query that I'm testing takes about 2 seconds on my local unmodified MySQL database which I installed from brew ...
-1
votes
1answer
33 views

Moving into AWS cloud - tight integration - (dis)advantages? [closed]

In AWS whitepapapers are very extensively used AWS services : SES (emails) SNS (notifications) SQS (queues) memcache for externalized sessions S3 for all-purpose storage (files / backups / ...
0
votes
1answer
34 views

Use S3 AmazonS3Client listObjects prefix with wildcard?

Does the AWS S3 AmazonS3Client.listObjects (http://docs.aws.amazon.com/AWSJavaSDK/latest/javadoc/index.html) support wildcard? for example, can one do the following: ListObjectsRequest ...
0
votes
0answers
23 views

S3 static resource update on regular basis using JAVA or shell script

I am working on a code which is accessing resources from S3. The resources here are property files(thousands) which are updated on daily basis. These are getting checked into SVN. Earlier, I was ...
0
votes
2answers
33 views

Amazon AWS creating EBS(Elastic block storage) through Java API

I am trying to find a way to create a new EBS and attach it to a running instance pro grammatically through the AWSJavaSDK. I see ways to do this with command line tools and with rest based calls but ...
0
votes
0answers
26 views

Access distributed cache on AWS

I have a local MapReduce job where I am accessing the Distributed Cache from main. I add the following line to my Configuration object. conf.addResource(new ...
-1
votes
0answers
33 views

Downloading a document file(.docx)file from amazon s3 using java

I had uploaded a document file(.docx) word file in amazon s3 bucket.How to download this document file to specified location in local computer
0
votes
1answer
100 views

How to read large file from Amazon S3?

I have a program which will read a textfile from Amazon s3, but the file is around 400M. I have increased my Heap size but i'm still getting the Java Heap Size error. So, I'm not sure if my code is ...
0
votes
1answer
78 views

AmazonS3Client.putObject doesn't work if I call AmazonS3Client.listObjects first

I've been trying for a long time to solve this, but without success. I'm using AWS Android SDK to upload files to AWS S3, and sometimes my files upload to the server, others it doesn't. The putObject ...
1
vote
0answers
122 views

JWPlayer with RMTP and HTML5 with Amazon CloudFront

I'm trying to use Amazon CloudFront to stream/download videos using jwplayer. Firstly, my s3 bucket is: miemiebucket.s3.amazonaws.com, and I put in 2 videos, which are MOV and MP4 respectively. Then ...
1
vote
1answer
27 views

Does jOOQ support linked SQL Servers?

This seems like a fairly straight-forward question, but I can't track down an answer without testing it: Does jOOQ support linked SQL Servers? (SQL Server 2008 R2). We have an application running in ...
0
votes
0answers
45 views

SignatureDoesNotMatch Amazon S3, Using Amazon's Signature Tester is the same

I'm trying to use Amazon's HTML Post form to upload a video. I'm getting a SignatureDoesNotMatch error, but when I compared the key with this: aws.amazon/com/code/199, the string to be signed and ...
1
vote
1answer
39 views

Excluding prefix in ObjectListing results Java client for S3

I have a S3 bucket with following hierarchy: bucketName folder1 file1 I wanted to get all the files from folder1. I tried to do following: ObjectListing ol = ...
0
votes
0answers
25 views

Information on how to setup mongodb on AWS [closed]

I have a map reduce job which utilizes a Mongo database. I have it working locally but need help to set it up on AWS. Do you know any tutorials which I could use to setup a MongoDB on AWS as I cant ...
0
votes
0answers
92 views

Communication with AWS Token Vending Machine using DynamoDB or any other service

Hi I am new to Amazon AWS and I am trying to setup DynamoDB for my android application. I have deployed Anonymous TVM on Elastic Beanstalk using: http://aws.amazon.com/code/8872061742402990 When I ...
1
vote
1answer
82 views

How can attach new EBS volume to existing EC2 instance using java sdk?

I have tried using AttachVolumeRequest but in response i get following error Caught Exception: The request must contain the parameter volume Reponse Status Code: 400 Error Code: MissingParameter ...
0
votes
1answer
59 views

Calculate S3 object(folder) size in java

Im storing all types of files on amazon S3. In amazon S3 bucket, All files store in different folders, I know there is no concept of folder in amazon s3. Objects are only identified by their keys. if ...
1
vote
1answer
91 views

streaming data service (web services)

I want to write webservices which will fetch data from a client (Android/Iphone) and push to a client (say website) real time. Android continuously sends data to the server, the same information ...
1
vote
1answer
43 views

Retrieving just the item value from a dynamodb table?

I'm playing around with dynamodb and set up a very simple table of 5 items, each with 2 attributes (userId, name). I'm then accessing this through java and outputting the items to the terminal. The ...
2
votes
1answer
90 views

Hadoop DistributedCache object changed during job

I'm trying to run KMeans on AWS, and I ran into the following exception when trying to read updated cluster centroids from the DistributedCache: java.io.IOException: The distributed cache object ...
2
votes
1answer
43 views

How and When To Use 'Async' in AWS SES Java SDK

I was just playing around with the SES package in AWS Java SDK for sending email. And I realized that there is this class [AmazonSimpleEmailServiceAsyncClient][1] with a lot of methods with Async ...
0
votes
0answers
43 views

How to upload file directly from web using AWS Java API?

I have a problem uploading file directly from web to the AWS S3 cloud service. By idea it should read an InputStream and upload it with certain metadata which defines length of stream. Here is my ...
0
votes
2answers
76 views

MTurk Command Line Tools Error: Bad version number in .class file

I am using the Mechanical Turk command line tools on Windows. When I try to run a command (e.g., getBalance, createQualificationType), I always get the following error: Exception in thread "main" ...
1
vote
1answer
52 views

Migrate java web application to AWS - log4j logging implications

I have an existing web application which uses log4j for logging purposes and it will create a log file in my local system. Now, I have to migrate that web application to AWS platform. In order to move ...
0
votes
3answers
102 views

how to deploy java web application to AWS elastic beanstalk?

I wrote a AWS java web project, and it could run on my local server. But when I refer to http://docs.aws.amazon.com/elasticbeanstalk/latest/dg/create_deploy_Java.sdlc.html to deploy the application ...
1
vote
1answer
110 views

Upload file to S3

I'm trying to develop a file upload function on AWS. I wrote a servlet to process post request, and the framework is shown below: protected void doPost(HttpServletRequest request, ...

1 2 3 4 5 7