This is very clear and helpful. Good work and tthank you for sharing!
@AWSTutorialsOnline3 жыл бұрын
Thanks for appreciation,
@sabelomuzimsimango8467 Жыл бұрын
you are the best Dojo. All thanks from South Africa
@tarap3333 жыл бұрын
Your videos are great and very practical
@AWSTutorialsOnline3 жыл бұрын
Glad you like them!
@varmasagi1232 жыл бұрын
Wow, that's a really nice tutorial. It helped me to exactly what I am looking for. Thank you very much.
@tarvinder913 жыл бұрын
very helpful to understand the connections. I wanted to know how to setup them and how that data catalog is created. Got all of it. Thanks!
@AWSTutorialsOnline3 жыл бұрын
Glad it was helpful!
@sivasai83 Жыл бұрын
Why should we use Athena to connect to Redshift instead of using Redshift query editor? What are the use cases ? Because connecting to Athena would cost more right? Please clarify??
@AWSTutorialsOnline Жыл бұрын
if querying Redshift only then you should use Query Editor. Use Athena when you want to query across different data sources (Redshift, RDS, DynamoDB, S3) in the same query .
@sushantkamkar54816 ай бұрын
@@AWSTutorialsOnline Does querying from Athena will utilize compute of Redshift?
@picklu10793 жыл бұрын
I am still getting "Failed to invoke lambda function due to com.amazonaws.services.lambda.invoke.LambdaFunctionException: 0: java.sql.SQLException: No suitable driver found for ".
@AWSTutorialsOnline3 жыл бұрын
you are using Redshift as the backend?
@picklu10793 жыл бұрын
@@AWSTutorialsOnline yes
@marliebooysen21683 жыл бұрын
Any further feedback on this. I have the same issue.
@ankitaggarwal40162 жыл бұрын
How do we enable sso users with athena fedrated query ? Also lambda max timeout limit is 15 mins, if the query is taking longer than 15 mins, should we use athena fedrated querh in those cases?
@AWSTutorialsOnline2 жыл бұрын
AWS SSO or IAM level federation should be used for SSO users. Since Lambda has 15 mins timeout, don't use federated queries where query execution can take more than 15 mins.
@mallikarjunsangannavar907 Жыл бұрын
@@AWSTutorialsOnline Is there any doc/video on connecting to redshift without using federated queries, even my query is taking more than 15 mins.
@puneet87m3 жыл бұрын
how does the federated queries cost us ? does all the services(lambda, athena, redshift) will cost you
@AWSTutorialsOnline3 жыл бұрын
yeah, there is no additional cost for Athena Federated Query itself. But you will have to pay for the services used like Athena, Lambda and Data Source such as Redshift, DynamoDB etc.
@sajalgour8114 Жыл бұрын
This was really helpful, thank you. Can you please do a video on Cost for a federated query ? I am trying to understand if it cost effective to actually copy data across if we have multiple users quering this external data source using federated query?
@AWSTutorialsOnline Жыл бұрын
Sounds good to me. I will plan about it
@1711anand3 жыл бұрын
Thanks it worked for me.
@AWSTutorialsOnline3 жыл бұрын
You're welcome!
@hsz73383 жыл бұрын
Thank you so much for the tutorial. It is great. I have a question about where the actual heavy lifting (in terms of the compute) takes place. In the demo, the query in Athena is passed onto the Redshift cluster, therefore the actual query compute will be on Redshift rather than Athena or the Lambda connector. Is my understanding correct?
@AWSTutorialsOnline3 жыл бұрын
Query runs on Redshift. But result parsing and request / response handling happens on connector. So most heavy lifting done by Redshift, then connector and finally Athena.
@hsz73383 жыл бұрын
@@AWSTutorialsOnline Thank you for this. A follow-up question on the Lambda Connector, as we know there is a memory and timeout limitation with Lambda, therefore should we try and avoid pulling billions of rows of data across through Athena Federated query, instead try and aggregate as much as we can within Redshift?