I have a Python script running on an EC2 instance. The script ingests data from a particular database, runs some fancy black box stuff, then spits out a table of predicted values back to the original database (fun with sqlalchemy). Where I'm stuck is: I now need to replicate that by n number of databases, each with their own credentials. I need to be able to pass in database parameters from different Redshift databases (each database is for a different customer). I've read a number of posts here and on Medium, but none seem to address this particular use case. Any suggestions, thoughts or ideas are welcome. Thanks!
↧