I deeply appreciate the great care that Postgres committers take in writing their merge messages. I think of it as a sign of respect for future developers to take the time to write a clear account of what has happened.
New Features Coming in PostgreSQL 10
31–40 of 138 posts
Re: New Features Coming in PostgreSQL 10
#32I did read the article, but I can't find any mention of addressing the "Write amplification" issue as described by Uber when they moved away from postgres. https://eng.uber.com/mysql-migration/ I had heard talk on Software Engineering Daily that this new major revision was supposed to address that. Is this issue resolved by the new "Logical replication" feature? It doesn't seem directly related, but it seems like may…
Re: New Features Coming in PostgreSQL 10
#33I am considering more and more a move back from MongoDB to PostgreSQL. I will be missing being schema less so much though. Migrations - particularly Rails migrations - left a bad taste in my mouth. Anyone did the move recently and what are their feelings?
You can easily have schema-less with Postgres's jsonb data type.
Re: New Features Coming in PostgreSQL 10
#34Re: New Features Coming in PostgreSQL 10
#35What's the ops experience for a replicated setup like these days? i.e. assuming you want basic fault-tolerance at non-exotic size / activity levels, how much of a job is someone acquiring if, say, there are reasons they can't just use AWS RDS?
Re: New Features Coming in PostgreSQL 10
#36What's the ops experience for a replicated setup like these days? i.e. assuming you want basic fault-tolerance at non-exotic size / activity levels, how much of a job is someone acquiring if, say, there are reasons they can't just use AWS RDS?
Streaming replication isn't hard at all: http://davide.im/setting-up-a-failover-database-for-postgres...
Re: New Features Coming in PostgreSQL 10
#37I know that several RDF data stores use PostgreSQL as a backend data store. With new features like better XML support, as well as older features for storing hierarchical data, I am wishing for a plugin or extension for handling RDF with limited (not RDFS or OWL) SPARQL query support. I almost always have PostgreSQL available, and for RDF applications it would be very nice to not have to run a separate service. I tend…
Re: New Features Coming in PostgreSQL 10
#38Earlier quoted context omitted.
You can easily have schema-less with Postgres's jsonb data type.
Not really. Postgres ORMs are not meant to do schema-less and tables still need to be created.
I can imagine a future with specialized ORMs designed around jsonb, but the current state of the art is probably not as bad as you think.
Re: New Features Coming in PostgreSQL 10
#39I deeply appreciate the great care that Postgres committers take in writing their merge messages. I think of it as a sign of respect for future developers to take the time to write a clear account of what has happened.
Being one of them, though not a native speaker which is more than sometimes noticeable, I'd not even describe it as caring for future developers. It's self-care. I've spent enough time staring at code changes made long ago, trying to understand the reasoning, that providing enough context for my future self is justification enough.
When I am working with peers on writing a commit message, I sometimes use the analogy of a newspaper. Any given newspaper is out of date very quickly. But we keep newspaper archives and store copies of every single newspaper.
Why? Because we don't know when we will need to refer to them, or which ones we will refer to. All that we know is that some of them will vital in future, as the journal of record.
And so it is with commit messages. We owe readers the courtesy of explaining our thinking.
Re: New Features Coming in PostgreSQL 10
#40Still, if my opinion counts I think SELF-UPDATING MATERIALIZED VIEWS should be the next priority.