5 Replies Latest reply on Aug 16, 2004 11:36 AM by bisla

    discarded request

    bisla

      Hi
      i have 2 JBossCache instances running, one inside Jboss and the other as standalone client. The one in jboss is the co-ordinator and both the caches have the same service.xml i.e. same cluster port etc...

      I see the following message once in while in the jboss console, can anyone tell what it actually means, it says discarded request from hostOne:4682 as we are not part of destination list.
      I don't know why is it discarding messages as both the cache have the same exact configuration xml.

      10:30:15,527 INFO [RequestCorrelator] discarded request from hostOne:4682 as we ar
      e not part of destination list (local_addr=hostOne:4682, hdr=[Header: name=MessageD
      ispatcher, type=REQ, id=1091727015496, rsp_expected=true], dest_mbrs=[hostOne:4759]
      )


        • 1. Re: discarded request
          bisla

          looks like this happens when the standalone cache modifies the cache i.e. does a put.
          Any pointers would be appreciated.
          Thanks.

          • 2. Re: discarded request
            belaban

            looks like they don't find each other; check in the jmx-console (DefaultPartition) whether you see a cluster of 2.

            Bela

            • 3. Re: discarded request
              bisla

              Bela, let me explain the setup little more detail.
              besides what i orginall mentioned, on the server I have a custom Mbean which extends ServiceMBeanSupport class, this mbean has an instance of TreeCache & starts it.
              Note if i stop and start the server while the client still up,
              the client TreeCache replicates it's state to the server and vice versa i.e. if i stop and start client while the server is still running the client gets the state from the server. So far so good, but while running whenever i say put an object into the cache either from the server or the client i get that message that i mention in my first post.
              From what i understand looking at the message is that the client and the server caches cannot communicate, but that seems incorrect as they are able to update each other of any state changes.

              • 4. Re: discarded request
                belaban

                Can you reproduce this problem with the standard standalone TreeCaches ?

                Bela

                • 5. Re: discarded request
                  bisla

                  I'll give that a try.