The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
15 views

Multiprocessing in Python with large numbers of processes but limit numbers of cpus

I have a large number of data files needed to be processed through a function A. Let say 1000 files, each process for each file takes less than 15 min with 6GB memory. My computer has 32GB and 8 cpus, ...
0
votes
1answer
30 views

multiprocessing exec's in Powershell up to a threshold

I have multiple commands in a string array that invoke SSIS packages. To take advantage of the hardware I want to run many packages at once, waiting until one completes before adding another to the ...
0
votes
2answers
18 views

how to prevent the process launching if it was launched before?

I have application that has a several process, including the authentication process. I need to prevent launching of authentication, if connection was established and authentication successfull. How ...
1
vote
1answer
103 views

ruby on rails - delayed jobs with different process id updating the same column

I discovered the problem, it had nothing to do with locks. It seems that in production, i had a jobs:work running permanently, that was called i dont know how!! so all the jobs proccessed by that ...
1
vote
1answer
277 views

QProcess: Destroyed while process is still running

I am using Qt for developing a custom control interface to xmgrace, a 2D plotting library. I have 3 components in my project: A GUI made in Qt A QThread which runs some shared object code from C in ...
0
votes
3answers
125 views

Mutex lock threads

Am new to multi threaded/processs programming. So here's what I need to clarify. Process A code pthread_mutex_lock() pthread_create(fooAPI(sharedResource)) //fooAPI creates another thread with ...
2
votes
1answer
39 views

Multi-threaded psycopg2 and python not returning results

I have a program where the parent process has a DB connection, and each child process has its own DB connection (created in the constructor), using python 2.6 and psycopg2. Every 5 seconds, the ...
0
votes
0answers
187 views

Python redirect stdin/stdout with execv

I'm using python to os.fork a child progress, and use os.execv to execute another program in the child progress. How can I redirect I/O in the child program. I tried this but failed. import sys, os ...
1
vote
0answers
156 views

mmap write synchronization across child processes

I have a server which is multiprocess and multithreaded. The child processes while handling request updates some statistics. This statistics data is a struct updated by all the child processes. Each ...
1
vote
1answer
153 views

Django Multiprocessing oddity

In using ./manage.py shell to exercise some code, I've come across something I don't understand. Python 2.6.6 (r266:84292, Sep 11 2012, 08:34:23) [GCC 4.4.6 20120305 (Red Hat 4.4.6-4)] on linux2 Type ...
0
votes
0answers
228 views

Multiprocessing and Django

In my Django app I use two functions for laod html from a url list. One function use requests and another spynner for load javascript. Something like this: import requests imoprt spynner def ...
0
votes
2answers
72 views

Python threading - listen to network while compiling

In python (2.6.6) what is the best way I can have a thread/process checking a network (message queue) for things while concurrently doing work (compiling). If i receive a command down the message ...
1
vote
1answer
89 views

C static variables in python multi-process

Here I have a function written in C++ call foo and make it callable (foo_wrapper) from python by using a python wrapper written in C (wrapper.c). In wrapper.c, I have a static global variable "x", ...
2
votes
0answers
76 views

Strange results in multiprocess signal handling program

I have this multiprocess program which consists of 9 processes. One is the main process which spawns 3 signal generating processes and 4 signal handling processes. One is the monitoring process. Now I ...
2
votes
1answer
78 views

Python > fundamentals > multiprocess module > does Process class and Pool class share the same workers?

I have a python script that is doing some map reduce-ish ETL. I am not originator of the code but working to analyze/diagnose its runtime for some improvements. In the package, it uses a "Process": ...
1
vote
0answers
120 views

nose multiprocess problems

I'm having a problem running nose tests. When I run my suite from Eclipse, using Run As>Python unit-test with the test runner set to Nose test runner and arguments --verbosity=2 --processes=2 ...
0
votes
3answers
282 views

semget not such file or directory

I'm trying to get this code working but I can't. I manage to create some code that doesn't show any compilation error or warning, but when I try to execute it fails with this error: semget: No such ...
0
votes
1answer
181 views

signal error: “invalid use of void expression”

I have some other trouble using the "signal" function. I have 5 children processes and its father. Only one process should be running at a time, and that process should change to another aleatory ...
2
votes
1answer
71 views

Pythons Multiprocess on Windows in a Package

I am trying to use multiprocess on windows but I am encountering the infinite loop error. Now I know this can be fixed by using the name == "main" in a standard python script. My problem is I am ...
3
votes
3answers
494 views

Fast, low-memory, constant key-value database supporting concurrent and random access reads

I need an on-disk key-value store, not too big or distributed. The use case is as follows: The full DB will be few Gbs in size Both key and value are of constant size Its a constant data base. ...
1
vote
1answer
106 views

About boost trim function efficiency in multi-thread environment

I use boost trim function and find it perform very well in single-thread environment. But when I call trim function in multi-thread environment, it will have a poor performance. I also find that it ...
2
votes
2answers
345 views

Python multiple processes instead of threads?

I am working on a web backend that frequently grabs realtime market data from the web, and puts the data in a MySQL database. Currently I have my main thread push tasks into a Queue object. I then ...
1
vote
2answers
396 views

Rails development: how to respond to several requests at once?

I have inherited the maintenance of a legacy web-application with an "interesting" way to manage concurrent access to the database. The application is based on ruby-on-rails 2.3.8. I'd like to set ...
4
votes
2answers
420 views

OpenMP not supporting break in loop

I am optimizing some code with OpenMP. If NO_VALUE is met in a loop, I would like it to break. However, compiler tells me this is not allowed with openMP. How could I handle this? #pragma omp ...
0
votes
1answer
223 views

Node.js: Invoke different behavior via cluster.fork()

I'm working with Node and Redis, and I have a need to add a subscriber to redis in case an event happens. The problem is I only want the processing to happen once... And I'd really like for only need ...
0
votes
1answer
142 views

Close Java subprocess when calling program exits/crashes

I'm putting together a multi-language system, but am running into issues with orphaned processes. My code consists of a Python program calling a Java program, with piped communication between the two ...
3
votes
3answers
434 views

Debugging processes spawned by another

I have written a program that spawns a handful of processes. By default, Visual Studio does not debug the new processes -- only the original process that created the new ones. Is there a way to ...
6
votes
5answers
347 views

multiprocess or multithread? - parallelizing a simple computation for millions of iterations and storing the result in a single data structure

I have a dictionary D of {string:list} entries, and I compute a function f( D[s1],D[s2] ) --> float for a pair of strings (s1,s2) in D. Additionally, I have created a custom matrix class ...
2
votes
3answers
706 views

C++ how to check if file is in use - multi-threaded multi-process system

C++: Is there a way to check if a file has been opened for writing by another process/ class/ device ? I am trying to read files from a folder that may be accessed by other processes for writing. If ...
0
votes
1answer
193 views

Segmentation Fault With Multiple Threads

I get error segmentation fault because of the free() at the end of this equation... don't I have to free the temporary variable *stck? Or since it's a local pointer and was never assigned a memory ...
2
votes
2answers
194 views

C: multi-processes stdio append mode

I wrote this code in C: #include <stdio.h> #include <stdlib.h> #include <string.h> #include <time.h> void random_seed(){ struct timeval tim; gettimeofday(&tim, ...
5
votes
2answers
396 views

How to count CPU Usage of multiprocess application in Linux

I try to make a program with C/C++, to behave like top command in Linux. I've done some research and already known how to count CPU Usage of a process. We can get the CPU Usage by calculating stime + ...
3
votes
3answers
903 views

Python, using multiprocess is slower than not using it

After spending a lot of time trying to wrap my head around multiprocessing I came up with this code which is a benchmark test: Example1: from multiprocessing import Process class Alter(Process): ...
4
votes
1answer
858 views

Python, multithreading too slow, multiprocess

I'm a multiprocessing newbie, I know something about threading but I need to increase the speed of this calculation, hopefully with multiprocessing: Example Description: sends string to a thread, ...
0
votes
1answer
166 views

Best web server for SUN T5240 multi-core multi-thread [closed]

I was hoping someone might be able to shed some light/understanding as well as an answer to my question. I have a SUN T5240 [2cpu (1.2Ghz) - 6 cores per cpu - 8 threads per core]. I believe the T5240 ...
1
vote
1answer
240 views

Multiple instances of subprocess.Popen

Hi I have just started programming in python and I am trying to use subprocess.Popen to run multiple instances of a program that i compile using "make". But before i do a "make", I have to do some ...
0
votes
0answers
273 views

Using cvGetWindowHandle to show image

In one process I am trying to show an image in a window that is made by another process. I guess that cvGetWindowHandle() can help me with this, but I would like some inputs on how.
0
votes
1answer
563 views

Python nose - runnning multiprocess programatically

I can't run nose with several processes programmatically. This works...: PYTHONPATH="/home/developer/Downloads/unittest2-0.5.1:" nosetests --processes=4 It spawns 4 browsers at once. When ...
0
votes
2answers
121 views

python multiprocess caller (as well as callee) invoked multiple times on windows XP [duplicate]

Possible Duplicate: Multiprocessing launching too many instances of Python VM I'm trying to use python multiprocess to parallelize web fetching, but I'm finding that the application calling ...
1
vote
1answer
205 views

Multiprocess with WSGI

I am developing an application with apache and wsgi. The structure of my app is like this: Client --> Web Server --> Dispatcher(receive http request from server) --> Worker(process the request) --> ...
1
vote
4answers
561 views

Executing C++ program on multiple processor machine

I developed a program in C++ for research purpose. It takes several days to complete. Now i executing it on our lab 8core server machine to get results quickly, but i see machine assigns only one ...
0
votes
2answers
68 views

Start a subordinate process

I would like to start a process from my application with Process.Start() and I would like that in case of my app crash or the user close it then the child process is automatically killed. Is it ...
0
votes
1answer
120 views

Multiprocessing between different languages such as PHP and Python

I asked a question before about how to do multiprocessing in Python (although I did not use the word multiprocessing in the former question, because I was not sure I was asking about that yet). Now I ...
2
votes
1answer
493 views

Multiple processes sharing a listening socket: When a new process enters why does the old one stop?

These code is the Server part of my proxy program, and its function is creating the socket and fork four process to accept one by one. In my program I use gevent model to dispatch all my ...
4
votes
1answer
235 views

Is it possible to know which SciPy / NumPy functions run on multiple cores?

I am trying to figure out explicitly which of the functions in SciPy/NumPy run on multiple processors. I can e.g. read in the SciPy reference manual that SciPy uses this, but I am more interested in ...
0
votes
0answers
150 views

Odd TypeError with Multi Process Python Module

I'm trying to start a web.py server using this code: if __name__ == "__main__": p = Process(target=app.run) #starts the web.py server p.start() main() #starts a main listening loop for ...
0
votes
1answer
224 views

Implementing Multicore Threading on this algorithm

I'm trying to find a way to make the following algorithm being processed on multiple cores, but I don't get on a good point. Using a locked iterator shared between multiple processes wouldn't be the ...
3
votes
1answer
908 views

python: How to debug multiprocess? (using eclipse+pydev)

I've seen a couple of questions on the topic but I didn't get a full answer... My code is basically: from multiprocessing import Process p = Process(target=f).start() p.join() def f(): print ...
5
votes
6answers
1k views

how to write a process-pool bash shell

I have more than 10 tasks to execute, and the system restrict that there at most 4 tasks can run at the same time. My task can be started like: myprog taskname How can I write a bash shell script to ...
6
votes
5answers
435 views

Ant simulation: it's better to create a Process/Thread for each Ant or something else?

The simple study is: Ant life simulation I'm creating an OO structure that see a Class for the Anthill, a Class for the Ant and a Class for the whole simulator. Now I'm brainstorming on "how to" ...

1 2