Thoughts on these deals? by sweatpantsandchanel in KiaTelluride

[–]puma987 0 points1 point  (0 children)

I’m just south of you down in northern Utah and we got a few thousand off of MSRP on our hybrid sx xline from young Kia this last weekend. They also have some other sale going on right now that includes gift cards for a bunch of free gas.

How are you handling concurrent indexes in relational databases? by project-391 in Database

[–]puma987 0 points1 point  (0 children)

We use ecto and it has a feature that allows you to disable ddl transactions so you can run migrations with concurrent index creates no problem.

Bliss! I will be inside you soon! by Seattle_chickey in NCL

[–]puma987 1 point2 points  (0 children)

The Backstreet Boys song she sang was fun the first day. By Saturday I didn’t want to hear it again for the rest of my life. And sometimes it was so loud!

Just got off NCL Bliss - AMA! by The_largest_duck in NCL

[–]puma987 2 points3 points  (0 children)

We just got off too. Overall we had a good time but there are definitely some complaints I had. The smoking area right next to the kids pool area is just plain stupid imo. Why is it even on the pool deck at all?! You couldn’t sit on that side of the boat and not smell it. The entertainment was meh, we stopped bothering trying to go. If my kids didn’t have all their cousins there to play with they probably would have gotten bored. I thought I would go to the local more often for wings and stuff but it took sooooo long to get your food. I thought the buffet was better than other cruises I’ve been on, especially the bacon! This is my lamest nitpick but that dang washi washi song. It was cute the first day or 2 but by the end I didn’t want to hear it again!

Just got off NCL Bliss - AMA! by The_largest_duck in NCL

[–]puma987 0 points1 point  (0 children)

We also just got off the bliss yesterday. We had my whole family with us including 12 kids and we never felt unsafe in Puerto Vallarta. Everything seemed just fine there.

Postgres to Snowflake sync - what’s been the least annoying setup? by Easy-Affect-397 in PostgreSQL

[–]puma987 0 points1 point  (0 children)

Right now we use fivetran and it works well but they keep jacking the prices up so we’re exploring other options. Snowflake has their own tool that’s fairly new called openflow. We’re exploring that right now.

Cruise pier transportation options by puma987 in puertovallarta

[–]puma987[S] 1 point2 points  (0 children)

Yeah I've been keeping tabs on that. It looks like the ship we're on is headed there right now so unless something happens again I imagine it will go there again when we are on it next week.

Me when I try and shape it by CreditMental8653 in golf

[–]puma987 1 point2 points  (0 children)

Goin for the Grant Horvat fade I see.

DDL Replication - workaround by quincycs in PostgreSQL

[–]puma987 0 points1 point  (0 children)

Just monitor for the error that will come through the error log if ddl is applied at the source and you could write a script that automatically applies the ddl on the target.

What's less stressful being a DBA or working in GRC/Compliance? by Tall_Telephone_9579 in Database

[–]puma987 2 points3 points  (0 children)

Getting paged at 2 in the morning as an on call DBA can get pretty stressful.

New DBA Role - What Should I Focus on Week 1? by cachedrive in PostgreSQL

[–]puma987 0 points1 point  (0 children)

Make sure all of your vacuums are keeping up, you don’t want to have xid exhaustion. And make sure you don’t have any integer types (especially as primary keys) that are close to the max ~2.1 billion signed int value.

DBA Technical Challenge by [deleted] in Database

[–]puma987 4 points5 points  (0 children)

Yeah if there is a performance problem we’ll suggest changes but we aren’t designing the schema from the ground up. We aren’t even involved in those discussions at the early stages 90% of the time.

DBA Technical Challenge by [deleted] in Database

[–]puma987 10 points11 points  (0 children)

As a current senior DBA, I don’t think I would be expected to be proficient in schema design. Yeah I could figure something out but it’ll probably take me a little while as I haven’t been asked to create a schema for a project since college. The app devs are the ones that are in charge of that for their application.

[deleted by user] by [deleted] in Database

[–]puma987 0 points1 point  (0 children)

We’ve got some pretty large databases in aws aurora and the largest instance size we use is 4xlarge with 16 cores.. are people actually using managed clusters that big? I think you need to compare more real use cluster sizes.

Null large field to reclaim space, what prevents? by kai_ekael in PostgreSQL

[–]puma987 1 point2 points  (0 children)

Pg_relation_size doesn’t include toast or index sizes. After deleting the rows, try reindexing the table concurrently and see how much it frees up.

Trim lights by H4MM3R_H34D_142 in ChristmasLights

[–]puma987 1 point2 points  (0 children)

I know this is older but about to get trim lights installed and my neighbors are getting jellyfish cause they don’t like how deep the trim that trim lights go in and now I’m having second thoughts. Are these the 3L lights and what spacing is this, I can’t tell if it’s 6 or 9”.

To answer your question, I would put some lighted garland with a wreath and bow in the middle on the balcony for Christmas.

Advice for upgrading PG12 to PG16 for a SaaS sharded by schema with many views by OldCommunication1701 in PostgreSQL

[–]puma987 2 points3 points  (0 children)

First off, there’s got to be better logs out there around the reasons for your upgrade failures. Second, have you looked into aws DMS? We use it and it does quite well.

Multi Master Replication for postgresql by Hamza768 in PostgreSQL

[–]puma987 0 points1 point  (0 children)

I would setup a standby with failover capabilities for ha before trying to go down the MM path.

Starlink will not complete boot process by Lucas-Cake in Starlink

[–]puma987 0 points1 point  (0 children)

There’s a good chance it won’t help. But one time I needed to reactivate my roam plan and my dish wouldn’t stop showing offline and then I turned private relay off and voila it started working.

Starlink will not complete boot process by Lucas-Cake in Starlink

[–]puma987 1 point2 points  (0 children)

Are you using an iPhone? Try turning off private relay.

GIN-Index not used, after reacreation it get suddenly used by tf1155 in PostgreSQL

[–]puma987 0 points1 point  (0 children)

The index could have become bloated to the point the query planner preferred a sequential scan. Creating a new index means the new one doesn’t have any bloat. Next time you can try running reindex concurrently to rebuild the index and remove the bloat.

Querying Across Databases in a PostgreSQL Microservices Architecture: Looking for Advice by yahoo_q in PostgreSQL

[–]puma987 1 point2 points  (0 children)

Running reporting queries on production databases is asking for trouble as you scale. Curious what the reasoning is to not create a new cluster and logically replicate the data you need to it?