[nanomsg] Re: REQ/REP worker example

  • From: Ramakrishna Mallireddy <ramakrishna.malli@xxxxxxxxx>
  • To: "nanomsg@xxxxxxxxxxxxx" <nanomsg@xxxxxxxxxxxxx>
  • Date: Tue, 17 Jun 2014 16:20:54 +0530

Hi Drew,

With TCP it worked.
How much latency can I expect when I moving from IPC to TCP [ for LAN ].

Thanks
R K


On Tue, Jun 17, 2014 at 3:01 PM, Drew Crawford <drew@xxxxxxxxxxxxxxxxxx>
wrote:

> I am using OSX, I don't see any files get created.
>
>
>
> Well, they get created somewhere.
>
> mdfind -name “oauth2”
>
>
> On Jun 17, 2014, at 4:29 AM, Ramakrishna Mallireddy <
> ramakrishna.malli@xxxxxxxxx> wrote:
>
> Please look at client nanomsg use case sample code
> http://pastebin.com/GQq6vPkX.
>
> I am using OSX, I don't see any files get created.
>
> If I want to replace ipc with tcp, is this what I need to do.
>
> REQ End-point: "tcp:*127.0.0.1:6789 <http://127.0.0.1:6789/>*"
> REP End-point: "tcp:*127.0.0.1:6790 <http://127.0.0.1:6790/>*"
>
> Thanks
> R K
>
>
>
>
> On Tue, Jun 17, 2014 at 2:14 PM, Drew Crawford <drew@xxxxxxxxxxxxxxxxxx>
> wrote:
>
>> It’s hard to say without seeing a sample for the client process as well.
>>  One thing is you want to use nn_connect for REQ and nn_bind for REP, but
>> you may have already tried that
>>
>> You may also want to check return values on calls to nn_connect and
>> nn_bind
>>
>> I would insert some debug printing into nn_device_mvmsg.  You will have
>> to recompile nanomsg for this.  If that function is called, it means that
>> the device is moving messages between its two sockets.  If it isn’t then
>> that could indicate a problem between the client and the device.
>>
>> I would also try a simple test case involving REQ—> REP_RAW where you
>> call nn_recv(req_raw, …).  The data that you get when you receive on a raw
>> REP socket may not make a lot of sense, but you should at least get some
>> message, and if you don’t there is probably something wrong on the client
>> side.
>>
>> Finally note that when using IPC transport the semantics are OS-defined.
>>  On OSX for example a file is created in the current working directory.  If
>> you have two programs that are run in two different working directories
>> then you will get 2 files, the programs won’t communicate and you’ll get
>> behavior like what you describe.  I don’t know what other OSes do.  Look
>> into how your platform handles IPC or switch to TCP which you can debug
>> with wireshark.
>>
>>
>> On Jun 17, 2014, at 3:29 AM, Ramakrishna Mallireddy <
>> ramakrishna.malli@xxxxxxxxx> wrote:
>>
>>  Can anyone point me where I am going wrong, can I use Wireshark or any
>> similar process to view nanomsg network data.
>>
>>
>>
>
>

Other related posts: