how to detect multiple languages in one sentence can u make a video ?
@manukapoor7811Ай бұрын
Nice demo! Clear and concise 👍🏻
@tube1129204 ай бұрын
need to specify tls option. Try redis-cli -h < your end point url > --tls -p 6379 redis-cli -h < your end point url > --tls -p 6379 ping
@rajumurugesan69274 ай бұрын
Really thankful to you prabha
@renukasrivastava116710 ай бұрын
Thank you for such a simple and good explanation
@adolforangel104510 ай бұрын
If someone has trouble, what it worked for me was creating a file named python (it can be anywhere), then install the dependencies and save the python file as a zip. This file is the one I uploaded to AWS.
@noorullahsheikdawooth259611 ай бұрын
Thank you Prabhakar .. you did it 😊
@bharathreddy29411 ай бұрын
You have hardcoded the column names, as there are only 3 values. What if there are 100's off columns, how will you dynamically upload in Item object. Can you please explain me that.
@mep1tz11 ай бұрын
Thanks a lot!! For searching for this and found this
@bhargaviroyal5792 Жыл бұрын
Excellent your video Sir. The overall deployment failed because too many individual instances failed deployment, too few healthy instances are available for deployment, or some instances in your deployment group are experiencing problems. Sir i got issue. How to resolve .please tell the solution
@ragiakshay7097 Жыл бұрын
Do I need to give any permissions?
@life_with_ayurveda Жыл бұрын
very good lecture thank you
@TonySpark-er2hj Жыл бұрын
import boto3 import urllib.parse import json print("*" * 80) print("Initializing..") print("*" * 80) s3 = boto3.client('s3') def lambda_handler(event, context): # TODO implement source_bucket = event['Records'][0]['s3']['bucket']['name'] object_key = urllib.parse.unquote_plus(event['Records'][0]['s3']['object']['key']) target_bucket = 'techhub-output-data-andy2' copy_source = {'Bucket': source_bucket, 'Key': object_key} print("Source bucket : ", source_bucket) print("Target bucket : ", target_bucket) print("Log Stream name: ", context.log_stream_name) print("Log Group name: ", context.log_group_name) print("Request ID: ", context.aws_request_id) print("Mem. limits(MB): ", context.memory_limit_in_mb) try: print("Using waiter to wait for object to persist through S3 service") waiter = s3.get_waiter('object_exists') waiter.wait(Bucket=source_bucket, Key=object_key) response = s3.copy_object(Bucket=target_bucket, Key=object_key, CopySource=copy_source) return response['ContentType'] except Exception as err: print("Error - " + str(err)) return str(err) Above is a fix as at the moment using 3.7 it doesnt work without this. Please let me know it worked cheers
@AjishPrabhakar Жыл бұрын
But this can get easily failed for uploading large files, say for eg file size over 500GB . The lambda runtime execution timeout will happen.
@chanelf.4934 Жыл бұрын
really good video thanks
@AmanRajput-u2g Жыл бұрын
very helpful video lecture. It's the best lecture I found on youtube about lambda, very clear and very helpful. @technologyhub1503, can you please share your email address in KZbin channel description? Also, can you please upload a video on AWS Glue end to end ETL pipeline regarding ingestion, transformation and loading into Redshift ?
@Fernando-ff6bu Жыл бұрын
Hi, thank you for your great tutorial. I have a question, which is why we skip build step in code pipeline? Thank you so much!
@raadkasem Жыл бұрын
Excellent tutorial, thank you! Just a note: There were some inconsistencies with the microphone quality and the volume of your voice throughout the video. It might be something to look into for future videos.
@anuragdigal3205 Жыл бұрын
Great video. I have done but one this is different is that I have windows server in ec2. So is there any configuration I need to make in the ec2 window server. Currently I have did nothing and try to connect redis primary endpoint through the .net code I am timeout error. Can you please help me.
@gauravsinghjethuri5405 Жыл бұрын
Thank you so much.
@DevOpsKey1 Жыл бұрын
you first add the port 6379 in ec2 SG which is not required
@DevOpsKey1 Жыл бұрын
you are delivering the wrong concept of security Group in case of accessing the Redis from ec2 simple thing is allow 6379 in redis SG against ec2 SG
@Mobbin6500 Жыл бұрын
thanks man the part to turn my ec2 instances into a https site helped alot, Im hosting an api so I kept getting Mixed Context error and this fixed !
@mohammadanas6755 Жыл бұрын
Sir I want to transfer a file from one aws s3 to different aws s3 using bash script .
@shivamgarg4958 Жыл бұрын
can you create a lambda function to compress images using python
@ochicoloto3524 Жыл бұрын
great job
@senlee325 Жыл бұрын
Helpful tutorial. Thanks
@권영경엘텍공과대학소 Жыл бұрын
thank you thank you,,,,,,,,,,,,,,
@swapnanildas Жыл бұрын
will this code work if we want to delete files after 30 days of upload?
@athenkosizono9208 Жыл бұрын
This was super helpful. Thank you
@rizwanahmad5711 Жыл бұрын
Error code UnknownError Script name Message CodeDeploy agent was not able to receive the lifecycle event. Check the CodeDeploy agent logs on your host and make sure the agent is running and can connect to the CodeDeploy server. how to fix error.
@avid_traveler Жыл бұрын
How do you specify the folder you deploy to? If I deploy a Laravel application how do I put it in to the correct folder?
@saurabhranjan4951 Жыл бұрын
How do you navigate to this console?
@avid_traveler Жыл бұрын
Good job. Thanks.
@ranvirjha6476 Жыл бұрын
could you show us steps to create vpc for this redis cache, ive configured everthing according to you but unfor. couldnt connect through cli
@sh.mujeeb3638 Жыл бұрын
bro have you found any solutions?
@MayurKatre-k1j Жыл бұрын
In my case installing psycopg2 library and uploaded zip file into layers but it stills showing error..... What to do now
@devmrnecro4215 Жыл бұрын
whenever i make a change to my files(html or any django file) it doesn't reflect the changes on the server, the files get updated but doesn't change anything unless i need to stop all the process of supervisor then i need to restart it back!
@islamicinterestofficial Жыл бұрын
If you want to keep the server up and running even after your terminal closed then use below command: "gunicorn3 app:app --daemon" instead of "gunicorn3 app:app"
@islamicinterestofficial Жыл бұрын
Love it and subscribed. It would be very great if you will make a complete tutorial from deploying application to flask and then connecting the domain to it
@saurabhbhoir4563 Жыл бұрын
very helpful
@PraveenKumar-ic5zo Жыл бұрын
Nice Video.
@lakshmiig4061 Жыл бұрын
Thanks for the video Sir. Attaching the EC2CodeDeploy role to the ec2 instance is not mentioned in the video. Also in the user data, the wget for installing code deploy has to be modified as per the region.
@divyanshjha7672 Жыл бұрын
hua hi nahi :(
@asifhossain1874 Жыл бұрын
I have use the exact code but it is not deleting any files from the S3 bucket
@deepaksingh-gj2oh Жыл бұрын
when you jumped to terminal inside aws directory you lost me.
@NamasteErwin Жыл бұрын
Hi , that's a great info and thanks for the tutorial...i have question and if this can be answered, can solve my problem..so i have a custom app and we have integrated with AWS event bridge and wants events to be targeted out side of AWS ..one we are using is Google cloud storage..so will the similar python script which can solve my problem
@shreyashtech8556 Жыл бұрын
dude i forgot to gice port in custom tcp, i was stuck for hours, :), thanx man, great stuff
@mr.shane.2k Жыл бұрын
Thank you 😉
@ibra653 Жыл бұрын
Thanks a lot! I was searching for this and all i found was to change the python environment to my directory then zip the file and upload it but lambda was refusing it.