Earlier quoted context omitted.
We can’t control the extensions RDS allows to be installed, and they are historically conservative. Lev and I do have some fairly extensive experience with replication patterns to Postgres instances running in EC2. Foreign data wrappers are also an option, and depending on workload may be a good horizontal scaling strategy in addition.
I just gave it a try to install on Crunchy Bridge [1], disclaimer I work at Crunchy Data. I did this as a standard user vs. anything special about access. I got quite close, but looks like I'm limited by Python version, we give you plpython3u with Python 3.6. Is there any chance of supporting an earlier 3.x version? If so I'm pretty sure could give a guide on how to self-install on top of us. [1] https://www.crunchyd…
Show HN: PostgresML, now with analytics and project management
71–76 of 76 posts
Re: Show HN: PostgresML, now with analytics and project management
#72Re: Show HN: PostgresML, now with analytics and project management
#73I wonder if/how a PostgreSQL plug-in can provide an optimal mix of computing and storage resources for varying machine learning workloads.
Re: Show HN: PostgresML, now with analytics and project management
#74Neat project. Any roadmap for cross-validation support (GridSearchCV and friends)?
Re: Show HN: PostgresML, now with analytics and project management
#75Do you plan on adding support for managed PostgreSQL services like RDS in the future?
Re: Show HN: PostgresML, now with analytics and project management
#76This is the most exciting ML related project I've seen in a while, Mainly because the barrier for entry seems low as anyone with PG database could apply a model on them using PostgresML if I understood the premise correctly.
Most of the comments here seems to regarding separating the compute from the database machine which it seems isn't possible right now with PostgresML, But the GitHub reads at the start:
> The system runs Postgres with the pgml-extension installed on port 5433 by default, *just in case you happen to be running Postgres already*:
$ psql -U postgres -h 127.0.0.1 -p 5433 -d pgml_development
I think the second part needs to be clarified better, Is it installing PGML extension on a machine running a existing PG database and connecting to it (or) does it mean just starting the postgres session of the PGML docker package?