• Log InLog In
  • Register
Liquid`
Team Liquid Liquipedia
EST 17:32
CET 23:32
KST 07:32
  • Home
  • Forum
  • Calendar
  • Streams
  • Liquipedia
  • Features
  • Store
  • EPT
  • TL+
  • StarCraft 2
  • Brood War
  • Smash
  • Heroes
  • Counter-Strike
  • Overwatch
  • Liquibet
  • Fantasy StarCraft
  • TLPD
  • StarCraft 2
  • Brood War
  • Blogs
Forum Sidebar
Events/Features
News
Featured News
SC2 All-Star Invitational: Tournament Preview2RSL Revival - 2025 Season Finals Preview8RSL Season 3 - Playoffs Preview0RSL Season 3 - RO16 Groups C & D Preview0RSL Season 3 - RO16 Groups A & B Preview2
Community News
Weekly Cups (Jan 5-11): Clem wins big offline, Trigger upsets4$21,000 Rongyi Cup Season 3 announced (Jan 22-Feb 7)15Weekly Cups (Dec 29-Jan 4): Protoss rolls, 2v2 returns7[BSL21] Non-Korean Championship - Starts Jan 103SC2 All-Star Invitational: Jan 17-1834
StarCraft 2
General
Stellar Fest "01" Jersey Charity Auction SC2 All-Star Invitational: Tournament Preview Weekly Cups (Jan 5-11): Clem wins big offline, Trigger upsets When will we find out if there are more tournament SC2 Spotted on the EWC 2026 list?
Tourneys
SC2 All-Star Invitational: Jan 17-18 OSC Season 13 World Championship SC2 AI Tournament 2026 Sparkling Tuna Cup - Weekly Open Tournament $21,000 Rongyi Cup Season 3 announced (Jan 22-Feb 7)
Strategy
Simple Questions Simple Answers
Custom Maps
Map Editor closed ?
External Content
Mutation # 508 Violent Night Mutation # 507 Well Trained Mutation # 506 Warp Zone Mutation # 505 Rise From Ashes
Brood War
General
BGH Auto Balance -> http://bghmmr.eu/ [ASL21] Potential Map Candidates How Rain Became ProGamer in Just 3 Months BW General Discussion A cwal.gg Extension - Easily keep track of anyone
Tourneys
[Megathread] Daily Proleagues Small VOD Thread 2.0 [BSL21] Grand Finals - Sunday 21:00 CET [BSL21] Non-Korean Championship - Starts Jan 10
Strategy
Soma's 9 hatch build from ASL Game 2 Simple Questions, Simple Answers Game Theory for Starcraft Current Meta
Other Games
General Games
Beyond All Reason Awesome Games Done Quick 2026! Nintendo Switch Thread Mechabellum Stormgate/Frost Giant Megathread
Dota 2
Official 'what is Dota anymore' discussion
League of Legends
Heroes of the Storm
Simple Questions, Simple Answers Heroes of the Storm 2.0
Hearthstone
Deck construction bug Heroes of StarCraft mini-set
TL Mafia
Vanilla Mini Mafia Mafia Game Mode Feedback/Ideas
Community
General
Russo-Ukrainian War Thread US Politics Mega-thread European Politico-economics QA Mega-thread Things Aren’t Peaceful in Palestine Trading/Investing Thread
Fan Clubs
Innova Crysta on Hire
Media & Entertainment
[Manga] One Piece Anime Discussion Thread
Sports
2024 - 2026 Football Thread
World Cup 2022
Tech Support
Computer Build, Upgrade & Buying Resource Thread
TL Community
The Automated Ban List
Blogs
My 2025 Magic: The Gathering…
DARKING
Physical Exercise (HIIT) Bef…
TrAiDoS
Life Update and thoughts.
FuDDx
How do archons sleep?
8882
James Bond movies ranking - pa…
Topin
Customize Sidebar...

Website Feedback

Closed Threads



Active: 2018 users

The Big Programming Thread - Page 953

Forum Index > General Forum
Post a Reply
Prev 1 951 952 953 954 955 1032 Next
Thread Rules
1. This is not a "do my homework for me" thread. If you have specific questions, ask, but don't post an assignment or homework problem and expect an exact solution.
2. No recruiting for your cockamamie projects (you won't replace facebook with 3 dudes you found on the internet and $20)
3. If you can't articulate why a language is bad, don't start slinging shit about it. Just remember that nothing is worse than making CSS IE6 compatible.
4. Use [code] tags to format code blocks.
Excludos
Profile Blog Joined April 2010
Norway8231 Posts
Last Edited: 2018-03-29 13:15:24
March 29 2018 13:10 GMT
#19041
Hahahaha. This is gold!

And then thousands of people start relying on that bit of useless code, which in turn ruins thousands of projects when they stop supporting it.

edit: Also, it has a dependency to this repo: https://github.com/sindresorhus/noop3 Brilliant
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
Last Edited: 2018-04-02 21:14:22
April 02 2018 14:54 GMT
#19042
need help. this is probably the hardest problem i've had to address while programming.

I can describe it like this.

I have a graph, it has an undetermined amount of edges, and nodes 0 to n.
For an example, let's say it has nodes 0 to 9. So, 9 nodes.

I take a subset of these nodes. Let's say I take nodes 2,3,4,5.

What I do in my program is I take this subset, and I mark each node in the subset that has an edge that connects to a node that is not in the subset.

For example, if 2 goes to 3,5,8 - it would get marked, because it has an edge that connects to 8 which is not in the subset.

But if 3 goes to 2,4,5,and nothing else - it would not get marked.

Now I take my subset, and I BFS all simple paths (paths that touch each node once), within my subset, that *start and end* on a marked node. So, it could be said that what I am doing is finding paths that go through my subset, connecting to each node in it, and is able to continue on through the graph in both directions.

For every pair of marked nodes, I map that pair to a list, and the list is populated with sets of edges that make up a path I found. Maybe I don't find any paths that qualify for a given pair, or maybe I find 100,000 paths that qualify for a given pair.

So I have something like
map[2,4] -> [{(2,3),(3,5),(5,4)}, {(2,5),(5,3),(3,4)}]
map[3,4] -> [{(3,2),(2,5),(5,4)}]
map[4,5] -> [{}]
... etc

Now - to the actual problem.

For any list that has at least one path, I only actually need one path. Not 2, and not 100,000.
But for the entire subset I am finding paths for, I want to use as few edges as possible to make up all these paths.

So basically, I want to pick the fewest amount of edges I can, such that I can form at least one path from every list that has a path.

I recognize that this is... a difficult problem to do exactly. So, I am more focused on efficiency than precision. Getting a set of edges that is a little too big in time k^3 (where k is the size of my subset), is way way better than an exact answer in say k^2*2^k, for example.


Any ideas?
I think my first step must be to sort my lists by number of sets, and look at the lists with only one set, and do intersection of all of those because I need those edges.

Then I can worry about finding missing edges to be able to make a set from all the other lists. But even that is difficult.



This is what I went with...

+ Show Spoiler +


I store the required edges in a set and return it. paths is a dictionary of lists, so k is a key of (start_node, end_node)


def remove_repeats(paths, startedges):

required = set()
remove = set()
for k in paths:
if len(paths[k]) == 1:
required = required | paths[k][0]
remove.add(k)
for k in remove:
del paths[k]


#To explain this - if there are no entries with only one path, I use a cycle I found earlier as a baseline.
if len(required) == 0:
required = required | startedges

remove.clear()

for k in paths:
for entry in paths[k]:
if entry & required == entry:
remove.add(k)

for k in remove:
del paths[k]

for k in paths:
min = 0
for entry in paths[k]:
val = len((entry & required))
if val >= min:
min = val
choice = entry
required = required | choice

return required


Neshapotamus
Profile Blog Joined May 2006
United States163 Posts
April 03 2018 01:09 GMT
#19043
Maybe I didn't understand the question correctly, but isn't your problem just a Minimum Spanning Tree (MST)?

On April 02 2018 23:54 travis wrote:
need help. this is probably the hardest problem i've had to address while programming.

I can describe it like this.

I have a graph, it has an undetermined amount of edges, and nodes 0 to n.
For an example, let's say it has nodes 0 to 9. So, 9 nodes.

I take a subset of these nodes. Let's say I take nodes 2,3,4,5.

What I do in my program is I take this subset, and I mark each node in the subset that has an edge that connects to a node that is not in the subset.

For example, if 2 goes to 3,5,8 - it would get marked, because it has an edge that connects to 8 which is not in the subset.

But if 3 goes to 2,4,5,and nothing else - it would not get marked.

Now I take my subset, and I BFS all simple paths (paths that touch each node once), within my subset, that *start and end* on a marked node. So, it could be said that what I am doing is finding paths that go through my subset, connecting to each node in it, and is able to continue on through the graph in both directions.

For every pair of marked nodes, I map that pair to a list, and the list is populated with sets of edges that make up a path I found. Maybe I don't find any paths that qualify for a given pair, or maybe I find 100,000 paths that qualify for a given pair.

So I have something like
map[2,4] -> [{(2,3),(3,5),(5,4)}, {(2,5),(5,3),(3,4)}]
map[3,4] -> [{(3,2),(2,5),(5,4)}]
map[4,5] -> [{}]
... etc

Now - to the actual problem.

For any list that has at least one path, I only actually need one path. Not 2, and not 100,000.
But for the entire subset I am finding paths for, I want to use as few edges as possible to make up all these paths.

So basically, I want to pick the fewest amount of edges I can, such that I can form at least one path from every list that has a path.

I recognize that this is... a difficult problem to do exactly. So, I am more focused on efficiency than precision. Getting a set of edges that is a little too big in time k^3 (where k is the size of my subset), is way way better than an exact answer in say k^2*2^k, for example.


Any ideas?
I think my first step must be to sort my lists by number of sets, and look at the lists with only one set, and do intersection of all of those because I need those edges.

Then I can worry about finding missing edges to be able to make a set from all the other lists. But even that is difficult.



This is what I went with...

+ Show Spoiler +


I store the required edges in a set and return it. paths is a dictionary of lists, so k is a key of (start_node, end_node)


def remove_repeats(paths, startedges):

required = set()
remove = set()
for k in paths:
if len(paths[k] == 1:
required = required | paths[k][0]
remove.add(k)
for k in remove:
del paths[k]


#To explain this - if there are no entries with only one path, I use a cycle I found earlier as a baseline.
if len(required) == 0:
required = required | startedges

remove.clear()

for k in paths:
for entry in paths[k]:
if entry & required == entry:
remove.add(k)

for k in remove:
del paths[k]

for k in paths:
min = 0
for entry in paths[k]:
val = len((entry & required))
if val >= min:
min = val
choice = entry
required = required | choice

return required



Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
April 03 2018 04:18 GMT
#19044
It is not because a minimum spanning tree can touch nodes more than once, and I need paths that only go to/from them once.
Apom
Profile Blog Joined August 2011
France656 Posts
April 03 2018 07:26 GMT
#19045
On April 02 2018 23:54 travis wrote:
...

I recognize that this is... a difficult problem to do exactly. So, I am more focused on efficiency than precision. Getting a set of edges that is a little too big in time k^3 (where k is the size of my subset), is way way better than an exact answer in say k^2*2^k, for example.

...

Then take every edge in the subset, can't beat O(1) efficicency.
gravity
Profile Joined March 2004
Australia1988 Posts
Last Edited: 2018-04-03 10:41:43
April 03 2018 10:35 GMT
#19046
Could you use a search algo like A*? (Whether this is efficient enough will depend on the shape of the data, but it will probably be ok).
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
April 04 2018 18:07 GMT
#19047
On April 03 2018 16:26 Apom wrote:
Show nested quote +
On April 02 2018 23:54 travis wrote:
...

I recognize that this is... a difficult problem to do exactly. So, I am more focused on efficiency than precision. Getting a set of edges that is a little too big in time k^3 (where k is the size of my subset), is way way better than an exact answer in say k^2*2^k, for example.

...

Then take every edge in the subset, can't beat O(1) efficicency.


heh
well, the entire point is to eliminate as many edges as possible, so while I like your sass I don't think this is a good solution

On April 03 2018 19:35 gravity wrote:
Could you use a search algo like A*? (Whether this is efficient enough will depend on the shape of the data, but it will probably be ok).


Well the way I traverse is not an issue, the issue is eliminating unneeded edges from the lists of paths found. Unless you've got something clever in mind I am not thinking of.

Anyways I moved past this issue, though I would still be interested in any sharp solutions.
Silvanel
Profile Blog Joined March 2003
Poland4740 Posts
April 05 2018 07:43 GMT
#19048
Dunno what You are doing exactly but maybe create new list with paths found instead of eliminating from existing list?
Pathetic Greta hater.
Acrofales
Profile Joined August 2010
Spain18187 Posts
April 05 2018 08:25 GMT
#19049
On April 03 2018 13:18 travis wrote:
It is not because a minimum spanning tree can touch nodes more than once, and I need paths that only go to/from them once.

Pretty sure an MST is the solution you're looking for. Between any two nodes in an MST there is exactly one path (from the first node up to the shared parent and then down to the other node). And all nodes that are connected in the greater graph, are connected in the MST. Moreover, it is optimal in the number of edges.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
April 05 2018 15:14 GMT
#19050
On April 05 2018 17:25 Acrofales wrote:
Show nested quote +
On April 03 2018 13:18 travis wrote:
It is not because a minimum spanning tree can touch nodes more than once, and I need paths that only go to/from them once.

Pretty sure an MST is the solution you're looking for. Between any two nodes in an MST there is exactly one path (from the first node up to the shared parent and then down to the other node). And all nodes that are connected in the greater graph, are connected in the MST. Moreover, it is optimal in the number of edges.


I don't think so because for a given set of nodes I am only looking for paths that go through all those nodes one time.
While a minimum spanning tree will give me a path, it generally won't give me ones that go through all the nodes in the set.
Acrofales
Profile Joined August 2010
Spain18187 Posts
Last Edited: 2018-04-05 19:25:00
April 05 2018 19:24 GMT
#19051
On April 06 2018 00:14 travis wrote:
Show nested quote +
On April 05 2018 17:25 Acrofales wrote:
On April 03 2018 13:18 travis wrote:
It is not because a minimum spanning tree can touch nodes more than once, and I need paths that only go to/from them once.

Pretty sure an MST is the solution you're looking for. Between any two nodes in an MST there is exactly one path (from the first node up to the shared parent and then down to the other node). And all nodes that are connected in the greater graph, are connected in the MST. Moreover, it is optimal in the number of edges.


I don't think so because for a given set of nodes I am only looking for paths that go through all those nodes one time.
While a minimum spanning tree will give me a path, it generally won't give me ones that go through all the nodes in the set.

Then I misunderstood your problem. The way you explained it it didn't sound like you wanted a single path. Rather you wanted a collection of edges that, together, connected your subgraph with a minimum number of edges. That is an MST.

What you describe now, however, sounds like a Hamiltonian path? Which is an NP-complete problem, and a much studied one at that.
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
April 05 2018 21:48 GMT
#19052
It's more like a variation of a hamiltonian path problem. Like, if you were given a graph with many hamiltonian paths.

Then, a node is removed, and you need to find "hamiltonian" paths of length n-1 in the reduced graph.
Then, the node is put back in, a different node is removed, and you must find paths of length n-1 for this new graph.
We repeat this process some amount of times.

Now we have a shitload of different paths of all length n-1. Each time we found new paths, the paths will be different than last time, because the nodes of our graph were different (by one node). However, n-1 nodes were the same, and many edges used are likely to be the same.

So my problem is: what is the least amount of edges we can use to be able to form a path of length n-1 from each of our subgraphs?


The problem being NP complete isn't as much of a concern because the context in which it is being used is a very sparse graph. I mean obviously it could still be a problem but that's not the point anyways. But like I said this issue isn't really a concern anymore, though I do think it is an interesting and difficult problem (the final step where I try to find a minimum set of edges, not the finding of the paths themselves).
phar
Profile Joined August 2011
United States1080 Posts
April 06 2018 15:48 GMT
#19053
Maybe I misread your problem (sorry, skimmed it), but your problem doesn't really need the graph at all? As in you have a list of sets of sets of things:

[
{{ (1,2) ; (2, 4); ... }, { (2,3) ; (2, 4) ; ...
{{ ... }}
{{ ... }}
]

And you just need to minimize the stuff inside - leave at least one set in each list, eliminating all others, where you can only eliminate all sub sub sets that contain a given element all at the same time.

That to me doesn't feel like a graph problem once you've distilled it.
Who after all is today speaking about the destruction of the Armenians?
raNazUra
Profile Joined December 2012
United States10 Posts
Last Edited: 2018-04-06 16:22:55
April 06 2018 16:16 GMT
#19054
On April 07 2018 00:48 phar wrote:
Maybe I misread your problem (sorry, skimmed it), but your problem doesn't really need the graph at all? As in you have a list of sets of sets of things:

[
{{ (1,2) ; (2, 4); ... }, { (2,3) ; (2, 4) ; ...
{{ ... }}
{{ ... }}
]

And you just need to minimize the stuff inside - leave at least one set in each list, eliminating all others, where you can only eliminate all sub sub sets that contain a given element all at the same time.

That to me doesn't feel like a graph problem once you've distilled it.


Yeah, this was how I interpreted the description as well. "Given a list of sets of inner sets, select one inner set from each outer set such that the union of all selected sets is minimized."

On another note, for people who like doing coding/algorithmic challenges, Google's yearly Codejam is starting up later today. The qualification round is usually pretty trivial, things start getting more fun in rounds 1 and 2.

Edit: Re-read the description of travis' problem, and based on that description its definitely MST. Based on the follow-up clarification, I think that the misstatement is describing the original set of paths being collected as 'simple' paths, when they really are supposed to be Hamiltonian paths? Is that accurate?

If that's the case, we can add to the above formulation that all inner sets are the same length, on the off chance that's useful in any way.
Speak the truth, even if your voice shakes
Deleted User 3420
Profile Blog Joined May 2003
24492 Posts
April 06 2018 19:28 GMT
#19055
On April 07 2018 00:48 phar wrote:
Maybe I misread your problem (sorry, skimmed it), but your problem doesn't really need the graph at all? As in you have a list of sets of sets of things:

[
{{ (1,2) ; (2, 4); ... }, { (2,3) ; (2, 4) ; ...
{{ ... }}
{{ ... }}
]

And you just need to minimize the stuff inside - leave at least one set in each list, eliminating all others, where you can only eliminate all sub sub sets that contain a given element all at the same time.

That to me doesn't feel like a graph problem once you've distilled it.


Yep, it is not a graph problem. I feel like I didn't really frame it as one, though. I was just describing the situation.

On April 07 2018 01:16 raNazUra wrote:
Show nested quote +
On April 07 2018 00:48 phar wrote:
Maybe I misread your problem (sorry, skimmed it), but your problem doesn't really need the graph at all? As in you have a list of sets of sets of things:

[
{{ (1,2) ; (2, 4); ... }, { (2,3) ; (2, 4) ; ...
{{ ... }}
{{ ... }}
]

And you just need to minimize the stuff inside - leave at least one set in each list, eliminating all others, where you can only eliminate all sub sub sets that contain a given element all at the same time.

That to me doesn't feel like a graph problem once you've distilled it.


Yeah, this was how I interpreted the description as well. "Given a list of sets of inner sets, select one inner set from each outer set such that the union of all selected sets is minimized."

On another note, for people who like doing coding/algorithmic challenges, Google's yearly Codejam is starting up later today. The qualification round is usually pretty trivial, things start getting more fun in rounds 1 and 2.

Edit: Re-read the description of travis' problem, and based on that description its definitely MST. Based on the follow-up clarification, I think that the misstatement is describing the original set of paths being collected as 'simple' paths, when they really are supposed to be Hamiltonian paths? Is that accurate?

If that's the case, we can add to the above formulation that all inner sets are the same length, on the off chance that's useful in any way.



Well, I do say that the simple paths touch every node in the collection. I didn't want to say hamiltonian path because I thought it could be confusing since we are addressing a subgraph of a greater graph. But I suppose I was just more confusing. Maybe I was doomed either way.
raNazUra
Profile Joined December 2012
United States10 Posts
April 06 2018 19:50 GMT
#19056
On April 07 2018 04:28 travis wrote:
Show nested quote +
On April 07 2018 00:48 phar wrote:
Maybe I misread your problem (sorry, skimmed it), but your problem doesn't really need the graph at all? As in you have a list of sets of sets of things:

[
{{ (1,2) ; (2, 4); ... }, { (2,3) ; (2, 4) ; ...
{{ ... }}
{{ ... }}
]

And you just need to minimize the stuff inside - leave at least one set in each list, eliminating all others, where you can only eliminate all sub sub sets that contain a given element all at the same time.

That to me doesn't feel like a graph problem once you've distilled it.


Yep, it is not a graph problem. I feel like I didn't really frame it as one, though. I was just describing the situation.

Show nested quote +
On April 07 2018 01:16 raNazUra wrote:
On April 07 2018 00:48 phar wrote:
Maybe I misread your problem (sorry, skimmed it), but your problem doesn't really need the graph at all? As in you have a list of sets of sets of things:

[
{{ (1,2) ; (2, 4); ... }, { (2,3) ; (2, 4) ; ...
{{ ... }}
{{ ... }}
]

And you just need to minimize the stuff inside - leave at least one set in each list, eliminating all others, where you can only eliminate all sub sub sets that contain a given element all at the same time.

That to me doesn't feel like a graph problem once you've distilled it.


Yeah, this was how I interpreted the description as well. "Given a list of sets of inner sets, select one inner set from each outer set such that the union of all selected sets is minimized."

On another note, for people who like doing coding/algorithmic challenges, Google's yearly Codejam is starting up later today. The qualification round is usually pretty trivial, things start getting more fun in rounds 1 and 2.

Edit: Re-read the description of travis' problem, and based on that description its definitely MST. Based on the follow-up clarification, I think that the misstatement is describing the original set of paths being collected as 'simple' paths, when they really are supposed to be Hamiltonian paths? Is that accurate?

If that's the case, we can add to the above formulation that all inner sets are the same length, on the off chance that's useful in any way.



Well, I do say that the simple paths touch every node in the collection. I didn't want to say hamiltonian path because I thought it could be confusing since we are addressing a subgraph of a greater graph. But I suppose I was just more confusing. Maybe I was doomed either way.


Yeah, that's fair. It's a bit of a wonky situation.

Also, giving the setup is actually useful, since it adds constraints that the simple formulation would otherwise ignore. Like the fact that each set has k elements, and the number of distinct elements that can show up in the sets is k^2, and there are serious constraints on which elements can show up together (can't start or end on the same node as another edge). Sometimes those kinds of things are useful, though I don't immediately see how to either solve this problem nor reduce it to NP-complete either.
Speak the truth, even if your voice shakes
WarSame
Profile Blog Joined February 2010
Canada1950 Posts
April 11 2018 03:55 GMT
#19057
I feel like I'm missing something with Docker. What is the ideal development to production pipeline supposed to look like? What is Docker's place in there?

Do you need 1 docker-compose per environment? How do you handle environment changes between containers?

When I am developing(say a Flask app) I have a mounted volume to auto update my code. When I am done developing I commit to my own branch("flask-101013033", maybe). QA comes in and verifies that this branch works correctly by pulling the branch, building an image from the branch and making a container from the image.

We then move it into integration testing. I merge my code into the integration branch. We then build another image/container for this branch which QA tests for integration.

Finally, we move this image into production.

Is that a reasonable approach? How do Kubernetes and Docker Swarm come into play?
Can it be I stayed away too long? Did you miss these rhymes while I was gone?
Manit0u
Profile Blog Joined August 2004
Poland17607 Posts
April 11 2018 07:53 GMT
#19058
Postgres question:

I have a very simple query

UPDATE "table_name" SET "last_seen_at" = now(), "updated_at" = now() WHERE "table_name"."id" = "uuid";


For some reason it takes 16-28 seconds to execute.

Do you know any potential reasons for that?

I've checked most common culprits:
1. Table is not large (10 records)
2. Vacuum and analyze are no older than 2 days

Any ideas? Could the problem be the number of concurrent db connections (over 100)?
Time is precious. Waste it wisely.
R1CH
Profile Blog Joined May 2007
Netherlands10341 Posts
April 11 2018 13:15 GMT
#19059
Does a SELECT 1 return immediately? If this is the first query you're doing on the connection then the delay could be the actual connection to the database.
AdministratorTwitter: @R1CH_TL
TL+ Member
Bog
Profile Blog Joined September 2010
Netherlands49 Posts
April 11 2018 18:31 GMT
#19060
On April 11 2018 16:53 Manit0u wrote:
Postgres question:

I have a very simple query

UPDATE "table_name" SET "last_seen_at" = now(), "updated_at" = now() WHERE "table_name"."id" = "uuid";


For some reason it takes 16-28 seconds to execute.

Do you know any potential reasons for that?

I've checked most common culprits:
1. Table is not large (10 records)
2. Vacuum and analyze are no older than 2 days

Any ideas? Could the problem be the number of concurrent db connections (over 100)?


Some ideas;

- Check is other transactions aquire locks on your data. Lock monitoring.

- Check for any triggers that might be hit on this transaction.
SELECT * FROM information_schema.triggers


- Check the explain plan for anomalities.
EXPLAIN ANALYZE UPDATE "table_name" SET "last_seen_at" = now(), "updated_at" = now() WHERE "table_name"."id" = "uuid";
(make sure equality predicate is correctly applied on the primary key. Equality predicates with different types, e.g. x::uuid = y::varchar can sometimes cause unexpected behaviour)

- Check your isolation level
SELECT current_setting('transaction_isolation');
. Concurrent access to data could be severely hindered when your isolation level is unnecessarily high (e.g. 'serializable'). Consider setting the level to 'read committed' if your business logic allows.

- When using JDBC, check if your transaction is committed at the earliest moment your business logic allows. Extra care should be taken when defaultAutoCommit=false for your JDBC connection or connection-pool property, then always close the transaction/connection explicitly in your code.
Prev 1 951 952 953 954 955 1032 Next
Please log in or register to reply.
Live Events Refresh
Next event in 3h 44m
[ Submit Event ]
Live Streams
Refresh
StarCraft 2
mouzHeroMarine 529
JuggernautJason135
StarCraft: Brood War
Britney 18343
Shuttle 167
firebathero 111
Dota 2
syndereN404
Pyrionflax213
Counter-Strike
FalleN 4682
fl0m1648
Foxcn131
Other Games
tarik_tv10230
gofns5961
FrodaN4713
summit1g3687
Grubby3130
Liquid`RaSZi2535
B2W.Neo870
Beastyqt573
shahzam436
Liquid`Hasu364
Mlord312
Harstem282
KnowMe226
C9.Mang0222
ToD219
mouzStarbuck215
XaKoH 163
ZombieGrub40
Ketroc13
Organizations
Other Games
gamesdonequick2499
BasetradeTV79
StarCraft 2
Blizzard YouTube
StarCraft: Brood War
BSLTrovo
sctven
[ Show 18 non-featured ]
StarCraft 2
• musti20045 33
• RyuSc2 3
• Kozan
• LaughNgamezSOOP
• sooper7s
• AfreecaTV YouTube
• intothetv
• Migwel
• IndyKCrew
StarCraft: Brood War
• HerbMon 34
• STPLYoutube
• ZZZeroYoutube
• BSLYoutube
Dota 2
• masondota2736
League of Legends
• TFBlade1765
• Doublelift1724
Other Games
• imaqtpie2668
• Shiphtur143
Upcoming Events
All-Star Invitational
3h 44m
INnoVation vs soO
Serral vs herO
Cure vs Solar
sOs vs Scarlett
Classic vs Clem
Reynor vs Maru
uThermal 2v2 Circuit
13h 29m
AI Arena Tournament
21h 29m
All-Star Invitational
1d 3h
MMA vs DongRaeGu
Rogue vs Oliveira
Sparkling Tuna Cup
1d 11h
OSC
1d 13h
Replay Cast
2 days
Wardi Open
2 days
Monday Night Weeklies
2 days
The PondCast
4 days
[ Show More ]
Replay Cast
6 days
Big Brain Bouts
6 days
Serral vs TBD
Liquipedia Results

Completed

Proleague 2026-01-14
Big Gabe Cup #3
NA Kuram Kup

Ongoing

C-Race Season 1
IPSL Winter 2025-26
BSL 21 Non-Korean Championship
CSL 2025 WINTER (S19)
KCM Race Survival 2026 Season 1
OSC Championship Season 13
Underdog Cup #3
BLAST Bounty Winter Qual
eXTREMESLAND 2025
SL Budapest Major 2025
ESL Impact League Season 8
BLAST Rivals Fall 2025
IEM Chengdu 2025

Upcoming

Escore Tournament S1: W5
Acropolis #4
IPSL Spring 2026
Bellum Gens Elite Stara Zagora 2026
HSC XXVIII
Rongyi Cup S3
SC2 All-Star Inv. 2025
Nations Cup 2026
BLAST Open Spring 2026
ESL Pro League Season 23
ESL Pro League Season 23
PGL Cluj-Napoca 2026
IEM Kraków 2026
BLAST Bounty Winter 2026
TLPD

1. ByuN
2. TY
3. Dark
4. Solar
5. Stats
6. Nerchio
7. sOs
8. soO
9. INnoVation
10. Elazer
1. Rain
2. Flash
3. EffOrt
4. Last
5. Bisu
6. Soulkey
7. Mini
8. Sharp
Sidebar Settings...

Advertising | Privacy Policy | Terms Of Use | Contact Us

Original banner artwork: Jim Warren
The contents of this webpage are copyright © 2026 TLnet. All Rights Reserved.