Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #28189 > unrolled thread
| Started by | Laszlo Nagy <gandalf@shopzeus.com> |
|---|---|
| First post | 2012-08-31 21:04 +0200 |
| Last post | 2012-09-01 19:10 -0700 |
| Articles | 11 — 6 participants |
Back to article view | Back to comp.lang.python
Looking for an IPC solution Laszlo Nagy <gandalf@shopzeus.com> - 2012-08-31 21:04 +0200
Re: Looking for an IPC solution Marco Nawijn <nawijn@gmail.com> - 2012-08-31 13:25 -0700
Re: Looking for an IPC solution Marco Nawijn <nawijn@gmail.com> - 2012-08-31 13:25 -0700
Re: Looking for an IPC solution Paul Rubin <no.email@nospam.invalid> - 2012-08-31 13:36 -0700
Re: Looking for an IPC solution Laszlo Nagy <gandalf@shopzeus.com> - 2012-08-31 23:10 +0200
Re: Looking for an IPC solution Wolfgang Keller <feliphil@gmx.net> - 2012-09-01 14:55 +0200
Re: Looking for an IPC solution vasudevram <vasudevram@gmail.com> - 2012-09-03 14:43 -0700
Re: Looking for an IPC solution Laszlo Nagy <gandalf@shopzeus.com> - 2012-09-06 12:13 +0200
Re: Looking for an IPC solution Aaron Brady <castironpi@gmail.com> - 2012-09-01 19:10 -0700
Re: Looking for an IPC solution Laszlo Nagy <gandalf@shopzeus.com> - 2012-09-06 12:00 +0200
Re: Looking for an IPC solution Aaron Brady <castironpi@gmail.com> - 2012-09-01 19:10 -0700
| From | Laszlo Nagy <gandalf@shopzeus.com> |
|---|---|
| Date | 2012-08-31 21:04 +0200 |
| Subject | Looking for an IPC solution |
| Message-ID | <mailman.9.1346440878.27098.python-list@python.org> |
There are just so many IPC modules out there. I'm looking for a solution
for developing a new a multi-tier application. The core application will
be running on a single computer, so the IPC should be using shared
memory (or mmap) and have very short response times. But there will be a
tier that will hold application state for clients, and there will be
lots of clients. So that tier needs to go to different computers. E.g.
the same IPC should also be accessed over TCP/IP. Most messages will be
simple data structures, nothing complicated. The ability to run on PyPy
would, and also to run on both Windows and Linux would be a plus.
I have seen a stand alone cross platform IPC server before that could
serve "channels", and send/receive messages using these channels. But I
don't remember its name and now I cannot find it. Can somebody please help?
Thanks,
Laszlo
[toc] | [next] | [standalone]
| From | Marco Nawijn <nawijn@gmail.com> |
|---|---|
| Date | 2012-08-31 13:25 -0700 |
| Message-ID | <1aab2052-2cd9-47e8-b72a-5c93d2e87d43@googlegroups.com> |
| In reply to | #28189 |
On Friday, August 31, 2012 9:22:00 PM UTC+2, Laszlo Nagy wrote: > There are just so many IPC modules out there. I'm looking for a solution > > for developing a new a multi-tier application. The core application will > > be running on a single computer, so the IPC should be using shared > > memory (or mmap) and have very short response times. But there will be a > > tier that will hold application state for clients, and there will be > > lots of clients. So that tier needs to go to different computers. E.g. > > the same IPC should also be accessed over TCP/IP. Most messages will be > > simple data structures, nothing complicated. The ability to run on PyPy > > would, and also to run on both Windows and Linux would be a plus. > > > > I have seen a stand alone cross platform IPC server before that could > > serve "channels", and send/receive messages using these channels. But I > > don't remember its name and now I cannot find it. Can somebody please help? > > > > Thanks, > > > > Laszlo Hi, Are you aware and have you considered zeromq (www.zeromq.org)? It does not provide a messaging system, but you could use things like simple strings (json) or more complicated things like Protobuf. Marco
[toc] | [prev] | [next] | [standalone]
| From | Marco Nawijn <nawijn@gmail.com> |
|---|---|
| Date | 2012-08-31 13:25 -0700 |
| Message-ID | <mailman.12.1346444715.27098.python-list@python.org> |
| In reply to | #28189 |
On Friday, August 31, 2012 9:22:00 PM UTC+2, Laszlo Nagy wrote: > There are just so many IPC modules out there. I'm looking for a solution > > for developing a new a multi-tier application. The core application will > > be running on a single computer, so the IPC should be using shared > > memory (or mmap) and have very short response times. But there will be a > > tier that will hold application state for clients, and there will be > > lots of clients. So that tier needs to go to different computers. E.g. > > the same IPC should also be accessed over TCP/IP. Most messages will be > > simple data structures, nothing complicated. The ability to run on PyPy > > would, and also to run on both Windows and Linux would be a plus. > > > > I have seen a stand alone cross platform IPC server before that could > > serve "channels", and send/receive messages using these channels. But I > > don't remember its name and now I cannot find it. Can somebody please help? > > > > Thanks, > > > > Laszlo Hi, Are you aware and have you considered zeromq (www.zeromq.org)? It does not provide a messaging system, but you could use things like simple strings (json) or more complicated things like Protobuf. Marco
[toc] | [prev] | [next] | [standalone]
| From | Paul Rubin <no.email@nospam.invalid> |
|---|---|
| Date | 2012-08-31 13:36 -0700 |
| Message-ID | <7x4nni23z9.fsf@ruckus.brouhaha.com> |
| In reply to | #28189 |
Laszlo Nagy <gandalf@shopzeus.com> writes: > application will be running on a single computer, so the IPC should be > using shared memory (or mmap) and have very short response times. Zeromq (suggested by someone) is an option since it's pretty fast for most purposes, but I don't think it uses shared memory. The closest thing I can think of to what you're asking is MPI, intended for scientific computation. I don't know of general purpose IPC that uses it though I've thought it would be interesting. There are also some shared memory modules around, including POSH for shared objects, but they don't switch between memory and sockets AFAIK. Based on your description, maybe what you really want is Erlang, or something like it for Python. There would be more stuff to do than just supply an IPC library.
[toc] | [prev] | [next] | [standalone]
| From | Laszlo Nagy <gandalf@shopzeus.com> |
|---|---|
| Date | 2012-08-31 23:10 +0200 |
| Message-ID | <mailman.14.1346447585.27098.python-list@python.org> |
| In reply to | #28193 |
> Zeromq (suggested by someone) is an option since it's pretty fast for
> most purposes, but I don't think it uses shared memory.
Interesting question. The documentation says:
http://api.zeromq.org/2-1:zmq-ipc
The inter-process transport is currently only implemented on operating
systems that provide UNIX domain sockets.
(OFF: Would it be possible to add local IPC support for Windows using
mmap()? I have seen others doing it.)
At least, it is functional on Windows, and it excels on Linux. I just
need to make transports configureable. Good enough for me.
> The closest
> thing I can think of to what you're asking is MPI, intended for
> scientific computation. I don't know of general purpose IPC that uses
> it though I've thought it would be interesting. There are also some
> shared memory modules around, including POSH for shared objects, but
> they don't switch between memory and sockets AFAIK.
>
> Based on your description, maybe what you really want is Erlang, or
> something like it for Python. There would be more stuff to do than just
> supply an IPC library.
Yes, although I would really like to do this job in Python. I'm going to
make some tests with zeromq. If the speed is good for local
inter-process communication, then I'll give it a try.
Thanks,
Laszlo
[toc] | [prev] | [next] | [standalone]
| From | Wolfgang Keller <feliphil@gmx.net> |
|---|---|
| Date | 2012-09-01 14:55 +0200 |
| Message-ID | <20120901145535.53fd8d7d2e71b880d107266b@gmx.net> |
| In reply to | #28189 |
> There are just so many IPC modules out there. I'm looking for a > solution for developing a new a multi-tier application. The core > application will be running on a single computer, so the IPC should > be using shared memory (or mmap) and have very short response times. Probably the fastest I/RPC implementation for Python should be OmniOrbpy: http://omniorb.sourceforge.net/ It's cross-platform, language-independent and standard-(Corba-) compliant. > I have seen a stand alone cross platform IPC server before that could > serve "channels", and send/receive messages using these channels. But > I don't remember its name and now I cannot find it. Can somebody > please help? If it's just for "messaging", Spread should be interesting: http://www.spread.org/ Also cross-platform & language-independent. Sincerely, Wolfgang
[toc] | [prev] | [next] | [standalone]
| From | vasudevram <vasudevram@gmail.com> |
|---|---|
| Date | 2012-09-03 14:43 -0700 |
| Message-ID | <5e9d5f7b-f96e-4670-9b49-1996b4ad5a1c@googlegroups.com> |
| In reply to | #28212 |
On Saturday, September 1, 2012 6:25:36 PM UTC+5:30, Wolfgang Keller wrote: > > There are just so many IPC modules out there. I'm looking for a > > > solution for developing a new a multi-tier application. The core > > > application will be running on a single computer, so the IPC should > > > be using shared memory (or mmap) and have very short response times. > > > > Probably the fastest I/RPC implementation for Python should be > > OmniOrbpy: > > > > http://omniorb.sourceforge.net/ > > > > It's cross-platform, language-independent and standard-(Corba-) > > compliant. > > > > > I have seen a stand alone cross platform IPC server before that could > > > serve "channels", and send/receive messages using these channels. But > > > I don't remember its name and now I cannot find it. Can somebody > > > please help? > > > > If it's just for "messaging", Spread should be interesting: > > > > http://www.spread.org/ > > > > Also cross-platform & language-independent. > > > > Sincerely, > > > > Wolfgang Though I'm not the OP, thanks for the info. Will put Spread on my stack to check out ...
[toc] | [prev] | [next] | [standalone]
| From | Laszlo Nagy <gandalf@shopzeus.com> |
|---|---|
| Date | 2012-09-06 12:13 +0200 |
| Message-ID | <mailman.288.1346926409.27098.python-list@python.org> |
| In reply to | #28212 |
> Probably the fastest I/RPC implementation for Python should be > OmniOrbpy: > > http://omniorb.sourceforge.net/ > > It's cross-platform, language-independent and standard-(Corba-) > compliant. I don't want to use IDL though. Clients will be written in Python, and it would be a waste of time to write IDL files. > >> I have seen a stand alone cross platform IPC server before that could >> serve "channels", and send/receive messages using these channels. But >> I don't remember its name and now I cannot find it. Can somebody >> please help? > If it's just for "messaging", Spread should be interesting: > > http://www.spread.org/ > > Also cross-platform & language-independent. Looks promising. This is what I have found about it: http://stackoverflow.com/questions/35490/spread-vs-mpi-vs-zeromq > So, it really depends on whether you are trying to build a parallel > system or distributed system. They are related to each other, but the > implied connotations/goals are different. Parallel programming deals > with increasing computational power by using multiple computers > simultaneously. Distributed programming deals with reliable > (consistent, fault-tolerant and highly available) group of computers. I don't know the full theory behind distributed programming or parallel programming. ZMQ seems easier to use.
[toc] | [prev] | [next] | [standalone]
| From | Aaron Brady <castironpi@gmail.com> |
|---|---|
| Date | 2012-09-01 19:10 -0700 |
| Message-ID | <40ab9c6f-737e-47e3-950b-558472ad4a09@googlegroups.com> |
| In reply to | #28189 |
On Friday, August 31, 2012 2:22:00 PM UTC-5, Laszlo Nagy wrote: > There are just so many IPC modules out there. I'm looking for a solution > > for developing a new a multi-tier application. The core application will > > be running on a single computer, so the IPC should be using shared > > memory (or mmap) and have very short response times. But there will be a > > tier that will hold application state for clients, and there will be > > lots of clients. So that tier needs to go to different computers. E.g. > > the same IPC should also be accessed over TCP/IP. Most messages will be > > simple data structures, nothing complicated. The ability to run on PyPy > > would, and also to run on both Windows and Linux would be a plus. > > > > I have seen a stand alone cross platform IPC server before that could > > serve "channels", and send/receive messages using these channels. But I > > don't remember its name and now I cannot find it. Can somebody please help? > > > > Thanks, > > > > Laszlo Hi Laszlo, There aren't a lot of ways to create a Python object in an "mmap" buffer. "mmap" is conducive to arrays of arrays. For variable-length structures like strings and lists, you need "dynamic allocation". The C functions "malloc" and "free" allocate memory space, and file creation and deletion routines operate on disk space. However "malloc" doesn't allow you to allocate memory space within memory that's already allocated. Operating systems don't provide that capability, and doing it yourself amounts to creating your own file system. If you did, you still might not be able to use existing libraries like the STL or Python, because one address might refer to different locations in different processes. One solution is to keep a linked list of free blocks within your "mmap" buffer. It is prone to slow access times and segment fragmentation. Another solution is to create many small files with fixed-length names. The minimum file size on your system might become prohibitive depending on your constraints, since a 4-byte integer could occupy 4096 bytes on disk or more. Or you can serialize the arguments and return values of your functions, and make requests to a central process.
[toc] | [prev] | [next] | [standalone]
| From | Laszlo Nagy <gandalf@shopzeus.com> |
|---|---|
| Date | 2012-09-06 12:00 +0200 |
| Message-ID | <mailman.285.1346925623.27098.python-list@python.org> |
| In reply to | #28227 |
> Hi Laszlo, > > There aren't a lot of ways to create a Python object in an "mmap" buffer. "mmap" is conducive to arrays of arrays. For variable-length structures like strings and lists, you need "dynamic allocation". The C functions "malloc" and "free" allocate memory space, and file creation and deletion routines operate on disk space. However "malloc" doesn't allow you to allocate memory space within memory that's already allocated. Operating systems don't provide that capability, and doing it yourself amounts to creating your own file system. If you did, you still might not be able to use existing libraries like the STL or Python, because one address might refer to different locations in different processes. > > One solution is to keep a linked list of free blocks within your "mmap" buffer. It is prone to slow access times and segment fragmentation. Another solution is to create many small files with fixed-length names. The minimum file size on your system might become prohibitive depending on your constraints, since a 4-byte integer could occupy 4096 bytes on disk or more. Or you can serialize the arguments and return values of your functions, and make requests to a central process. I'm not sure about the technical details, but I was said that multiprocessing module uses mmap() under windows. And it is faster than TCP/IP. So I guess the same thing could be used from zmq, under Windows. (It is not a big concern, I plan to operate server on Unix. Some clients might be running on Windows, but they will use TCP/IP.)
[toc] | [prev] | [next] | [standalone]
| From | Aaron Brady <castironpi@gmail.com> |
|---|---|
| Date | 2012-09-01 19:10 -0700 |
| Message-ID | <mailman.53.1346551846.27098.python-list@python.org> |
| In reply to | #28189 |
On Friday, August 31, 2012 2:22:00 PM UTC-5, Laszlo Nagy wrote: > There are just so many IPC modules out there. I'm looking for a solution > > for developing a new a multi-tier application. The core application will > > be running on a single computer, so the IPC should be using shared > > memory (or mmap) and have very short response times. But there will be a > > tier that will hold application state for clients, and there will be > > lots of clients. So that tier needs to go to different computers. E.g. > > the same IPC should also be accessed over TCP/IP. Most messages will be > > simple data structures, nothing complicated. The ability to run on PyPy > > would, and also to run on both Windows and Linux would be a plus. > > > > I have seen a stand alone cross platform IPC server before that could > > serve "channels", and send/receive messages using these channels. But I > > don't remember its name and now I cannot find it. Can somebody please help? > > > > Thanks, > > > > Laszlo Hi Laszlo, There aren't a lot of ways to create a Python object in an "mmap" buffer. "mmap" is conducive to arrays of arrays. For variable-length structures like strings and lists, you need "dynamic allocation". The C functions "malloc" and "free" allocate memory space, and file creation and deletion routines operate on disk space. However "malloc" doesn't allow you to allocate memory space within memory that's already allocated. Operating systems don't provide that capability, and doing it yourself amounts to creating your own file system. If you did, you still might not be able to use existing libraries like the STL or Python, because one address might refer to different locations in different processes. One solution is to keep a linked list of free blocks within your "mmap" buffer. It is prone to slow access times and segment fragmentation. Another solution is to create many small files with fixed-length names. The minimum file size on your system might become prohibitive depending on your constraints, since a 4-byte integer could occupy 4096 bytes on disk or more. Or you can serialize the arguments and return values of your functions, and make requests to a central process.
[toc] | [prev] | [standalone]
Back to top | Article view | comp.lang.python
csiph-web