Indexing Deep Dive | Scaling Postgres 285

Episode 285 October 08, 2023 00:18:02
Indexing Deep Dive | Scaling Postgres 285
Scaling Postgres
Indexing Deep Dive | Scaling Postgres 285

Oct 08 2023 | 00:18:02

/

Hosted By

Creston Jamison

Show Notes

In this episode of Scaling Postgres, we cover a deep dive into indexes from a presentation that includes a decision tree of sorts, how to convert to partitioned tables once you have hundreds of millions of rows and detail about the new pg_stat_io view.

To get the show notes as well as get notified of new episodes, visit: 

https://www.scalingpostgres.com/episodes/285-indexing-deep-dive/

 

View Full Transcript

Episode Transcript

[00:00:00] Do you have an index decision tree? Well, we check one out in this episode of Scaling Postgres. But before we get into that, I hope you, your friends, family and coworkers continue to do well. The first piece of content we're going to cover is look it up, real life database indexing. And this is a presentation that was given by Christophe Pettis and this presentation is on thebuild.com this is great presentation, talking all about indexes. So going over all the different index types again, the Btree hash, gist, gen, spgist, brin, bloom, et cetera. He describes each of them and how they basically work. And then as well as covering things like, you know, you need to have good statistics for them to be accurate. A little bit about index only scans, velocity scans, covering indexes, things of that nature. But what I thought was pretty cool here is the part where he's kind of doing this decision tree. So is the column a small scalar and he asks a series of questions and based upon that he gives an index suggestion. So for this case it's pretty much Btree. But there are certain cases where a brin could work well in terms of text fields looking at Btree. But there are also certain conditions which might warrant an SP, gist, or maybe even a gen where he's talking about down here. Is it a range or a geometric type? Then it's gist. If it's a JSON B column and only quality, use a hash. Otherwise use gen if you're interested in the key values. So, a lot of great information in this presentation. So definitely a piece of content. I suggest you check out next piece of content dynamic table partitioning in postgres. This is from Superbase.com and as I was reading over this post, I got a little bit frustrated by it. I mean, it is my number two post, which means it has good content. The frustration was I would have written it basically upside down. The things that were at the top, I'd put it at the bottom and the things that are at the bottom, I'd put it at the top. So, looking at the example, here is why partition data, they first started off with basically performance reasons. Selects get slower as the index grows, inserts get slower as an index grows, whereas I think the number one reason to do it is the bottom reason. So archiving odor data is easily done in well defined partitions. So if you want to throw away data, partitions are a great use case for that. Large tables mean more data to move around, particularly with maintenance operations. So that's definitely a reason to do it. Large tables prevent vacuum operations from completing. That can be the case. I've seen tables with trillions of rows that complete auto vacuum. It just depends on how frequently that data is changing and how that table is being used. Large tables mix unrelated data. So partitioning could put them together. Like maybe if we had all one account's data in a particular partition, that might help. But a lot of these other performance reasons, I mean, maybe you'll see a ten or 20% performance increase. It kind of depends on the table and how it's structured in the indexes, but I've never seen it be a significant improvement. Therefore, that's why I frequently say performance isn't necessarily the reason to do partitioning because I've never seen it make a big huge difference, or at least I haven't yet. But in terms of partitioning, what this is describing is a way of moving two partitions once you have all of this data in a table or two. And this is a use case that they apparently helped someone address where they had a messaging app with hundreds of millions of rows and they wanted to convert to a partitioning scheme. Now again, they start off and this is an example of it, they have a chats table and then they have a chat messages table. This is pretty much the content that's in it. And they inserted a bunch of data to simulate what it would look like. And then next they create the parent tables. So these are the tables that will be the parents of the partitions. So they went ahead and created those and this is where it gets a little bit upside down for me. So they start talking about creating the dynamic child tables and it felt a little bit about them introducing a brick at a time without telling you kind of what they're building. So I actually found it easier to go to the bottom here where they say, okay, we want to create a procedure that loads all the partitions for the chat table and then loads all the partition for the chat messages table. Okay, so they didn't show the messages table in the rest of the blog. That's on the full code example that they included, but they focused on the loading the chat's partition table. So what does that look like? Here's that function and it basically gets the minimum date from the original table, the max date from the original table, and then does a generate series to create each partition, a partition per day. Okay, so what does that function do? That's right here, they actually create the partition itself. They copy the data in, then they apply the indexes and attach that partition to the parent tables. So I found this much easier to read it through going from bottom up. And then if you want to know what each of these functions is, you can go and look up here. So this is where they create the chat partitions and they're basically creating a table like the parent table. Then they copy in the data using insert into the partition table from the parent table. And then this procedure adds constraints indexes and then attaches the partition as well as the index and then drops the constraint that was added. So it doesn't do a constraint check when you attach the partition. So I thought the content was good in this post, but I really had a hard time following what was going on until I looked at it in an upside down fashion. But there is one thing that confused me when I was looking at this, because they're partitioning by created at yet in the parent table, and of course all the partition tables, they're indexing on ID first and then created at. I didn't think you could get partition exclusion if the partition key wasn't the first column in the index or the primary key. So I normally always put the partition key as the very first column, but I haven't really tried this out yet. If you know in the comments that yo, yeah, this works without a problem, let me know. But check this post out if you want to learn more. [00:06:01] Next piece of content PGSTAT, IO and PostgreSQL 16 performance. This is from Cybertechnpusgresql.com. [00:06:09] This is a post all about the new PGSTAT IO system view. It describes each of the columns, what kind of values you can typically see in there, and what it does. Then he gives a couple of quick examples where he's looking at a few different back end types like auto, vacuum workers or client back ends. So if you want to learn more about it, you can check this out. Next Piece of Content pgSQL Friday is coming up, and by Friday, October 6, you're supposed to have published a blog post about different use cases for postgres and why you're using it. Like they say, did you do things like use it for full text search or JSON B PostGIS, et cetera? And does using it allow you to remove other dependencies? I know I'll say I pretty much use it for everything, I use it for my queue, I use it for full text searching, pretty much everything. But feel free to participate in this if you're interested. [00:06:57] Next Piece of Content Oracle supports postgres this is from Momgm US, and he's talking about Oracle basically supporting Postgres and I guess having a postgres service as well that they're providing. So that's pretty crazy how the tides have turned essentially since I started using Postgres and migrated from Oracle so many years ago. But check out this blog post if you're interested. [00:07:20] Next piece of content five great features of the PostgreSQL Partition Manager. This is from Crunchydata.com, and I'll have to admit that I've never used Pgpartman like I've used partition tables for over ten years in different applications. And I've always just had scripts that create and remove partitions because I can flexibly create whatever type of scheme I want. And at the time I would do it with, say, functions and then a bash script to kick off those functions run by Cron. More recently, I may actually write it using my application frameworks language again kicked off by Cron and it would just send the required create partition tables or remove partition tables. So I've never really had a need to use Pgpartman. Now he says these are five reasons to use it. One, he says retention. I don't know if I would call that a reason to use this. I think that's a reason to use partition tables. It's basically if you want to remove data periodically, you don't want to send deletes to a really huge table. That's the advantage of partitions. I don't know if it's a reason to use Pgpartman. The next one, he says a background worker in that you can set up a background worker to run Pgpartman and it can run on an interval basis. But he says this is possible to have drift. So that's why I would personally like to stick with a Cron job. And he says, but there are other ways you can schedule the job. Of course talks about additional constraint exclusion, so I actually haven't heard of this, but this seems an interesting use case so that you can do additional exclusions other than just what's in the Shard key. I don't know how this would work with the planner. Again, I haven't really used this feature, but it sounds interesting. But personally I might want to make that a separate extension. Next is Epocartitioning, but I think you can do this on your own if you're scripting something. And then the last feature, he says a template table, which he says is actually a feature I hope will eventually disappear. So apparently that's not a reason to use Pgpartman. But I don't want to dispgartman too much. I know a lot of people use it and they find it great. I just know I haven't had a compelling enough reason to even investigate it. But if you're interested in it, you can check out this blog post. Next piece of content postgres schema changes are still a pita. This is from Eksta IO and he's talking about the cautiousness you must exercise when you're doing schema changes. And some of the gotchas that can get you are locking issues. But of course the number one way to avoid this is to set a lock timeout for the session as you're doing the schema changes. That way if anything gets blocked by a lock for whatever duration you set it'll, go ahead and cancel that migration and you can try it again later or find out why it locked, resolve that issue and then run your migration again. But in my experience, this solves 90% of the problems. The other thing they mentioned is being able to rename and they say it takes six stages to do that. To which I would say, then don't rename your column. Or if you want to rename it, wait for an upgrade. Like if you're upgrading to a point release, go ahead and throw the rename in there. If you can afford even the smidgen of downtime because rename shouldn't happen very fast because the alternative they describe here is pretty onerous and it's coming from the PlanetScale Docs, but it says create a new column with a new name. Update and deploy the application to write data to both columns. Backfill missing data from the old column to the new column, add constraints like not null, update the application to use the new column and remove any references to the old column name. And then lastly drop the old column. So that's pretty onerous and I would frankly just like to rename the column during some sort of downtime or just leave the column name until a time comes up that you can take that downtime. And then they talk about needing to have rollbacks, but this actually leads to them creating an extension called Pgrol. So this blog post introducing Pgrol zero downtime reversible schema migrations for postgres. So they talk about the reasons why schema migrations are painful, a lot of what was discussed in the previous post and they describe how it works and basically it looks like they're putting everything through views. So the transition happens using views. And as they're migrating the schema, the current view points to the physical table, changes are made there, then a new view is created, the application starts using it and then the physical schema is then resolved such that it only supports the new view. So that's definitely a way to do it, to get a seamless migration. But personally I'm not really a fan of having these additional views in my schema because it brings questions to me like are they always there? Are they there temporarily? Do I never really talk to my table directly from the application or at the time of migration, does it create a view for this purpose and then changes the name of the table and then swaps the names with the physical table? It just has a lot of questions to it. And frankly, I'm happy with my current applications framework for doing migrations, so I don't necessarily see a need for this for what I'm using. But if these are pain points you're experiencing, then maybe you want to check out this extension. Next piece of content migrate from Cybase to PostgreSQL. This is from Cybertechn Postgresql.com and apparently, finally, as they say here, quote Cybase ASE is dead and apparently by 2025. So basically if people are still using Cybase, it's time to migrate off. Which is crazy because I actually got my start doing database administration at an enterprise level with Microsoft SQL Server, which of course Cybase is the granddaddy of that. But this post talks about how you could migrate from Sybase to PostgreSQL. The first way they talk about doing it is using the TDs foreign Data wrapper and TDs stands for as they say here, tabular data stream, which is basically the protocol between Microsoft SQL Servers and I guess Sybase as well. The second option is moving to BabbleFish, which makes Postgres essentially Wire compatible with a Microsoft SQL Server, where apparently it can be compatible with Sitebase as well. Third option they're saying hey, we're also doing a CyberTech Migrator, so we'll have to see what that looks like. But check out this blog post if you're interested. [00:13:39] Next Piece of content huge Pages and postgres in containers this is from Crunchydata.com. Apparently they've made some changes, so now you can properly configure huge pages in postgres containers or basically running Postgres and Kubernetes. And they had an issue that was recently resolved and they even had to go upstream to resolve the issue, actually resolving it in an OCI runtime specification. So with this recently released specification, you can now properly use huge pages in containerized postgres. So if you're interested in that, you can check out this blog post. Next piece of content version history and lifecycle policies for postgres tables. This is from Tembo IO. So in this example, they're talking about having an employee table where they're using an extension called Temporary Tables that enables you to define what is current and what is historical. So they have an employees table that has the current data using a sys period as a range type to define when this value was started and when it ends essentially in the future infinity. And then an employee history table that shows the same range as to when a particular salary was active. So they show how to set that up and how it works. And then they merged it with partition tables so that you could easily drop old history tables as you need. But check out this blog post if you're interested in that. [00:14:57] Next piece of content. Scaling GraphQL with Postgres lessons learned from our database timeout Issues this is from Cycle App and these are more on the basic side of issues they resolved. The first problem they had is that they had constant connections from their clients because they were using WebSockets, but whenever they deployed their application, all those connections got reset and it actually had to reestablish all of the database connections as well. So they basically changed their application so that was no longer necessary and the database wouldn't get pummeled in that case. The second one, they had a big query problem that was basically resolved by adding some indexes. Then the third problem was dealing with a lot of big updates happening simultaneously. So basically they used a queuing system to resolve that. So if you want to learn more detail about it, check out this blog post. Next piece of content how to write High Performance SQL for your Postgres database this is from the Stack Overflow blog and this is actually from their Stack Overflow podcast. And Lucas from PG Analyze was actually interviewed. So you can check out this blog post if you're interested in that. [00:16:01] Next piece of content. Vacuum and PostgreSQL this is from Stormatics Tech and this is another post about vacuum, so feel free to peruse it for that reason. What I found most beneficial was the last part where they had different questions like how do you make vacuum more aggressive? And they showed different parameters that you can change. I will note be careful of thinking that increasing max workers will actually make it vacuum faster. It won't. It might actually slow it down. What makes it move faster is being able to do more work in a given unit of time. And that's what this auto vacuum vacuum cost limit does. So the higher you increase that, more work can be done. And just be aware, all that work that can be done gets divided amongst the workers. So the more workers you have, the less work that can get done per unit of time. Whereas the fewer workers, the more work that could get done on the particular tables that are being vacuumed at that time. But they also mentioned other things like how to monitor for transaction ID wraparound in the database and tables, what to do if vacuums, not cleaning up dead rows. I'm talking about long running transactions or using hot standby feedback, abandon, prepare transactions, things of that nature, and followed up with some best practices. So check this blog post if you're interested in that. [00:17:13] And the last piece of content is allowing DML operations in highly compressed time series data in PostgreSQL. This is from Timescale.com they've been able to do this. It was announced a number of months ago. I believe that with their column store capabilities that they get really high compression on up to 95% compression. You can still do insert updates and deletes, whereas I think that's not always possible with other column stores. But if you're interested in that, you can check out this blog post. [00:17:42] I hope you enjoyed this episode. Be sure to head over to Scalingpostgres.com where you can get links to all the content discussed, as well as the podcast replay, as well as eventually a transcript. And I'll see you next weekend.

Other Episodes

Episode 117

June 08, 2020 00:17:35
Episode Cover

Index Deduplication, Fast Hierarchy, More Monitoring, Cloud-Native | Scaling Postgres 117

In this episode of Scaling Postgres, we discuss index deduplication in Postgres 13, fast hierarchical access, more essential monitoring and cloud native Postgres. To...

Listen

Episode 279

August 27, 2023 00:15:59
Episode Cover

TPS Benchmark, Partition-wise Join & Aggregate, Partitioning Billions, Posgres 16 Features | Scaling Postgres 279

  In this episode of Scaling Postgres, we discuss how pgbouncer can impact a TPS benchmark, partition-wise join & aggregate performance, partitioning a table with...

Listen

Episode 89

November 11, 2019 00:15:42
Episode Cover

Performance Impressions, Mystery Solving, GiST Performance, K-Anonymity | Scaling Postgres 89

In this episode of Scaling Postgres, we discuss Postgres 12 performance impressions, mystery solving, GiST and SP-GiST performance and k-anonymity. To get the show...

Listen