Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #110477 > unrolled thread
| Started by | meInvent bbird <jobmattcon@gmail.com> |
|---|---|
| First post | 2016-06-23 20:57 -0700 |
| Last post | 2016-06-25 09:54 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to comp.lang.python
program return killed after run a very long time meInvent bbird <jobmattcon@gmail.com> - 2016-06-23 20:57 -0700
Re: program return killed after run a very long time dieter <dieter@handshake.de> - 2016-06-25 09:54 +0200
| From | meInvent bbird <jobmattcon@gmail.com> |
|---|---|
| Date | 2016-06-23 20:57 -0700 |
| Subject | program return killed after run a very long time |
| Message-ID | <94693872-2b7b-48cb-8a4e-d8c59218cf1c@googlegroups.com> |
i suspect it use so much memory, however i have already assign 30GB memory in openstack cloud is there any command to allow python to use more memory? currently program return killed after run a very long time
[toc] | [next] | [standalone]
| From | dieter <dieter@handshake.de> |
|---|---|
| Date | 2016-06-25 09:54 +0200 |
| Message-ID | <mailman.112.1466841306.11516.python-list@python.org> |
| In reply to | #110477 |
meInvent bbird <jobmattcon@gmail.com> writes: > i suspect it use so much memory, > > however i have already assign 30GB memory in openstack cloud > > is there any command to allow python to use more memory? > > currently > > program return killed after run a very long time Usually, there are memory limits at various levels: architecture (e.g. on a 32 bit architecture, the address space cannot exceed 32 GB), physical memory, operating system, user, "session". You would need to check which limits are effective on the various levels and increase them, if possible.
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web