> Stop a container SELECT stop_container('');
This physically hurts me.
Heck being able to run a Docker container alongside your DB on the same server is probably useful, but why make it so gimmicky?
21–26 of 26 posts
> Stop a container SELECT stop_container('');
This physically hurts me.
Heck being able to run a Docker container alongside your DB on the same server is probably useful, but why make it so gimmicky?
Aside— I can’t get your pricing page to work. Every aws config just says contact sales. Maybe it’s just a mobile thing.
I appreciate the heads up. You are trying this page ( https://www.crunchydata.com/products/crunchy-bridge/pricing/ ) and it isnt working for you?
Earlier quoted context omitted.
I love Postgresql, but I don't want it to end up like oracle, where it is the center of thr focus. That being said, I like the idea of Postgres as a platform for more than data tables storage and database engine. It proved quite powerful and useful.
The killer reason for "Postgres as a platform" is that Postgres has a robust* security model (there are edge cases, but for a subset of statements, it works well)
And what’s an actual end user application / use case for this? The post lists some examples but I don’t understand what it means to run them in a container on the DB.
DuckDuckGo gets this article as the first hit - top 4-5 links are all relevant.
The fact that PostgreSQL is pigeon-holed as a "database" blinds folks to the fact that it is also a full-fledged integration environment. It's a place where you can bind together multiple kinds of data and multiple kinds of application. * Use FDW connections to pull in data from all kinds of sources! Multiple databases, file formats, HTTP buckets, you name it! * Custom behaviours in multiple languages! PL/Python, PL/…
https://wiki.postgresql.org/wiki/Foreign_data_wrappers
2. PL/Python: language-specific procedural language
https://www.postgresql.org/docs/10/plpython.html
Essentially, this (as I understand it) is highlighting the ways that Postgres can expose data from outside of its default table structure context via these types of functions.