Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

70%
+5 −1
Q&A Freeing sub-process resources?

I'm using Python to invoke another program in a sub-process. I've noticed my memory sometimes gets so large as to crash the system, and I'm wondering if I'm not correctly cleaning up the memory som...

0 answers  ·  posted 3y ago by Hyperlynx‭  ·  edited 3y ago by Patol75‭

#4: Post edited by user avatar Patol75‭ · 2021-06-10T04:51:40Z (almost 3 years ago)
Missing an 's' in the for line.
Freeing sub-process resources?
  • I'm using Python to invoke another program in a sub-process. I've noticed my memory sometimes gets so large as to crash the system, and I'm wondering if I'm not correctly cleaning up the memory somehow.
  • Here's what I have:
  • ```
  • children = []
  • fruits = ["apple", "banana", "cherry"]
  • for fruit in fruit:
  • children.append(subprocess.Popen(["fruitProgram", fruit]))
  • while len(children) > 0:
  • child = children.pop()
  • child.wait()
  • subprocess.run("doStuffWithFruitProgramOutput")
  • ```
  • I've had my `doStuffWithFruitProgramOutput` crash due to lack of memory when run like this, but not when run by itself. Is `child.wait()` not enough to free the child process resources?
  • I tried adding `gc.collect()` after clearing `children`, and that doesn't seem to have helped.
  • Is there something else I need to be doing? Or am I barking up the wrong tree here, and my problem is somewhere else?
  • I'm using Python to invoke another program in a sub-process. I've noticed my memory sometimes gets so large as to crash the system, and I'm wondering if I'm not correctly cleaning up the memory somehow.
  • Here's what I have:
  • ```
  • children = []
  • fruits = ["apple", "banana", "cherry"]
  • for fruit in fruits:
  • children.append(subprocess.Popen(["fruitProgram", fruit]))
  • while len(children) > 0:
  • child = children.pop()
  • child.wait()
  • subprocess.run("doStuffWithFruitProgramOutput")
  • ```
  • I've had my `doStuffWithFruitProgramOutput` crash due to lack of memory when run like this, but not when run by itself. Is `child.wait()` not enough to free the child process resources?
  • I tried adding `gc.collect()` after clearing `children`, and that doesn't seem to have helped.
  • Is there something else I need to be doing? Or am I barking up the wrong tree here, and my problem is somewhere else?
#3: Post edited by user avatar Alexei‭ · 2021-06-08T06:43:42Z (almost 3 years ago)
added relevant tags
#2: Post edited by user avatar Hyperlynx‭ · 2021-06-08T03:59:24Z (almost 3 years ago)
  • I'm using Python to invoke another program in a sub-process. I've noticed my memory sometimes gets so large as to crash the system, and I'm wondering if I'm not correctly cleaning up the memory somehow.
  • Here's what I have:
  • ```
  • children = []
  • fruits = ["apple", "banana", "cherry"]
  • for fruit in fruit:
  • children.append(subprocess.Popen(["fruitProgram", fruit]))
  • while len(children) > 0:
  • child = children.pop()
  • child.wait()
  • subprocess.run("doStuffWithFruitProgramOutput")
  • ```
  • I've had my `doStuffWithFruitProgramOutput` crash due to lack of memory when run like this, but not when run by itself. is `child.wait()` not enough to free the child process resources?
  • I tried adding `gc.collect()` after clearing `children`, and that doesn't seem to have helped.
  • Is there something else I need to be doing? Or am I barking up the wrong tree here, and my problem is somewhere else?
  • I'm using Python to invoke another program in a sub-process. I've noticed my memory sometimes gets so large as to crash the system, and I'm wondering if I'm not correctly cleaning up the memory somehow.
  • Here's what I have:
  • ```
  • children = []
  • fruits = ["apple", "banana", "cherry"]
  • for fruit in fruit:
  • children.append(subprocess.Popen(["fruitProgram", fruit]))
  • while len(children) > 0:
  • child = children.pop()
  • child.wait()
  • subprocess.run("doStuffWithFruitProgramOutput")
  • ```
  • I've had my `doStuffWithFruitProgramOutput` crash due to lack of memory when run like this, but not when run by itself. Is `child.wait()` not enough to free the child process resources?
  • I tried adding `gc.collect()` after clearing `children`, and that doesn't seem to have helped.
  • Is there something else I need to be doing? Or am I barking up the wrong tree here, and my problem is somewhere else?
#1: Initial revision by user avatar Hyperlynx‭ · 2021-06-08T02:40:59Z (almost 3 years ago)
Freeing sub-process resources?
I'm using Python to invoke another program in a sub-process. I've noticed my memory sometimes gets so large as to crash the system, and I'm wondering if I'm not correctly cleaning up the memory somehow.

Here's what I have:

```
children = []

fruits = ["apple", "banana", "cherry"]

for fruit in fruit:
	children.append(subprocess.Popen(["fruitProgram", fruit]))

while len(children) > 0:
	child = children.pop()
	child.wait()

subprocess.run("doStuffWithFruitProgramOutput")
```

I've had my `doStuffWithFruitProgramOutput` crash due to lack of memory when run like this, but not when run by itself. is `child.wait()` not enough to free the child process resources?

I tried adding `gc.collect()` after clearing `children`, and that doesn't seem to have helped.

Is there something else I need to be doing? Or am I barking up the wrong tree here, and my problem is somewhere else?