Welcome to Jonic Developer Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

Recent questions tagged amazon

0 votes
545 views
1 answer
    When I trigger via Jenkins (code deploy plugin), I get the following error - No such file or directory - /opt/codedeploy-agent/deployment-root/ ... referring to the new application and deployment group). See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.2k views
1 answer
    I have deployed an AWS lambda which contains: import json import boto3 import cfnresponse import urllib.request from botocore.exceptions import ClientError def ... do it when I check the docs. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
648 views
1 answer
    I'm trying to integrate AWS to my android app and for that I followed there official link. after doing all the changes mentioned in the official link ... any help would be appreciated. Thanks in advance. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
640 views
1 answer
    Why AccessKeyId is included in s3 pre-signed URL? Is it really necessary? The pre-signed URL already includes the Signature field, why it still requires ... as well? Wouldn't be the Signature sufficient? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
828 views
1 answer
    I am trying to trigger an AWS lambda function written in Java, on dynamodb stream events. Amazon has a guide for the same, using NodeJS here ... answer was not given: Setup DynamoDB Trigger using Lambda See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
550 views
1 answer
    I have a V2 ELB that is internet facing. It routes requests to instances in VPC just fine when I connect to it from my laptop. However when I try to ... "All traffic" on 443 in the ELB security group? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
591 views
1 answer
    I'm using Terraform to launch my cloud environments. It seems that even minor configuration change affects many of the resources behind the scenes. For ... perspective of how to avoid the re-creation. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
905 views
1 answer
    For a Kinesis stream, I created a proxy API using AWS API Gateway. I added a custom authorizer using python Lambda for the proxy. After publish of ... the same API test works fine from API Gateway? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
768 views
1 answer
    How to manually forcefully discard a aws lambda function in the cluster using aws console or aws cli for development and testing purposes ? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
793 views
1 answer
    When I'm running query below I get message: [Amazon](500310) Invalid operation: WITH RECURSIVE is not supported; Can someone explain me why recursive function doesn't ... r WHERE i < 10 ) SELECT * FROM r; See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
691 views
1 answer
    I set up a CloudFront distribution to work with a Custom Origin - my client's web server (www.mydomain.com). When I load my webpage and ... server, the assets load directly from CloudFront as expected. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
829 views
1 answer
    I created REST API using AWS API Gateway & AWS Lambda and when I configured CORS I faced with such issue - I was able to configure CORS response headers for ... for me. Any ideas what's I'd doing wrong? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
625 views
1 answer
    So, I don't understand what is going on here... I have (3) Micro EC2 Instances which are launched (without elastic ip) I then go to Network ... 3) instances to adopt and keep this assigned elastic ip? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
547 views
1 answer
    I have a couple of AWS Lambda functions. All of those functions use some common helper functions. I have placed these helper functions in a separate file ... and import it in a much more efficient way. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
632 views
1 answer
    I have a AWS Lambda function which is triggered by SQS. This function is triggered approximately 100 times daily, but request count to the SQS queue ... do that while invoking Lmabda function with SQS? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
1.3k views
1 answer
    Background I was planning to use S3 to store the Flink's checkpoints using the FsStateBackend. But somehow I was getting the following error. Error org.apache.flink ... : I am using Flink 1.10.0 version. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
524 views
1 answer
    We are storing our PHP project on github. For fast deployment we are using .bat file for git pushing changes to AWS Elastic Beanstalk cloud: "C: ... commit from github repository? Thanks for any help. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
969 views
1 answer
    I'm unable to figure out what is wrong with my CTAS query, it breaks the data into smaller files while storing inside a partition even though I ... %s'),'%c') AS month FROM sampleDB.yellow_trip_data_raw; See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
805 views
1 answer
    I'm trying to access a blob store service which is on top of AWS S3. It supports AWS SDK and it's signature version 2. I'm using code here to ... how to set the signature version to 2 or 4 manually. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
662 views
1 answer
    How can I check which platform my app runs, AWS EC2 instance, Azure Role instance and non-cloud system? now I do that like this: if(isAzure()) { // ... to deal with it? please help me! thanks in advance. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
714 views
1 answer
    I am getting the following error when running terraform: * aws_iam_role_policy.rds_policy: Error putting IAM role policy my-rds-policy: MalformedPolicyDocument: The ... and I can't see anything obvious. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
837 views
1 answer
    Running Spring boot application port 8080 on EC2 instance. AWS ELB configured to redirect 80 -> 8080 443 (SSL termination happens here) -> 8080 Application uses ... on how to run this with AWS ELB ??? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
821 views
1 answer
    As I tried to run the chat app from localhost connected to MySQL database which had been coded with PHP via WebSocket it was successful. Also ... the Security Group Under Inbound tab Under Outbound tab See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
681 views
1 answer
    I have an issue with a Lambda function that tries to use ffmpeg as a third party on AWS. The function itself uses ffmpeg.js library which generates ... command not found Any advice on this? Many thanks See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
822 views
1 answer
    I'm writing integration tests using LocalStack to mock out my calls to Kinesis. I've created a Kinesis client, but when I try to put records on ... giving me trouble. Has anyone seen anything like this? See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
495 views
1 answer
    Im getting a strange error when im compiling my code on a server and downloading it and trying to run it on my computer. Im basically compiling some ... download them im getting the error? Thanks, Ben See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
978 views
1 answer
    I've been banging my head against the table with this one for a while now. I'm. I've successfully sent emails locally using an AWS access ... : x509: certificate signed by unknown authority Please help! See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
0 votes
559 views
1 answer
    We are using dynamo db as our database solution for one of our sites. we are storing data in dynamo db as per below given json. We have video which ... API in a right way? Help is always appreciated. See Question&Answers more detail:os...
asked Oct 24, 2021 in Technique[技术] by 深蓝 (71.8m points)
Ask a question:
Welcome to Jonic Developer Community for programmer and developer-Open, Learning and Share
...