Questions tagged [gipc]

gipc (pronounced gipsy) - gevent-cooperative child processes and inter-process communication - helps facilitate process management in context with gevent in Python.

3 questions
32
votes
5 answers

/lib64/libc.so.6: version `GLIBC_2.14' not found. Why am I getting this error?

I am working in node js. I have installed hummus package. It installed properly. I am using this package for modifying the pdf files. While downloading the pdf I am calling hummus. Onclick of download I am getting this error. Error:…
user1187
  • 2,116
  • 8
  • 41
  • 74
3
votes
1 answer

Unable to .get() from multiprocessing.Queue

I'm building a web application for processing ~60,000 (and growing) large files, perform some analysis and return a "best guess" that needs to be verified by a user. The files will be refined by category to avoid loading every file, but I'm still…
That1Guy
  • 7,075
  • 4
  • 47
  • 59
0
votes
1 answer

How to kill child processes & grandchild processes controlled by supervisor

In a process controlled by Supervisor, I fork child process for i in xrange(MANAGER_PROCESS_NUM): p = gipc.start_process(target=daemon_process, args=()) record.append(p) for r in record: r.join() then in each child process, I create…
fanteathy
  • 1
  • 2