Welcome to the Java Programming Forums


The professional, friendly Java community. 21,500 members and growing!


The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.


>> REGISTER NOW TO START POSTING


Members have full access to the forums. Advertisements are removed for registered users.

Results 1 to 7 of 7

Thread: Are mobile agents an appropriate implementation mechanism for Distributed system?

  1. #1
    Junior Member
    Join Date
    May 2014
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Are mobile agents an appropriate implementation mechanism for Distributed system?

    Mobile agents are self Autonomous: i.e. Agent itself decides when and where to migrate next. Applying this definition to a distributed shared memory systems where client's requests are cpu-intensive tasks, can we prefer mobile agents that can select a node itself to migrate to that node and execute client request on it. Is this a good paradigm for java based distributed application where client's requests are cpu-bounded and we let the mobile agent to choose a proper node itself.? if not then what alternatives are their in this scenario?


  2. #2
    Crazy Cat Lady KevinWorkman's Avatar
    Join Date
    Oct 2010
    Location
    Washington, DC
    Posts
    5,424
    My Mood
    Hungover
    Thanks
    144
    Thanked 636 Times in 540 Posts

    Default Re: Are mobile agents an appropriate implementation mechanism for Distributed system?

    Huh?
    Useful links: How to Ask Questions the Smart Way | Use Code Tags | Java Tutorials
    Static Void Games - Play indie games, learn from game tutorials and source code, upload your own games!

  3. #3
    Junior Member
    Join Date
    May 2014
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Are mobile agents an appropriate implementation mechanism for Distributed system?

    plz dont reply if u dont know the answer.

  4. #4
    Super Moderator
    Join Date
    Jun 2013
    Location
    So. Maryland, USA
    Posts
    5,520
    My Mood
    Mellow
    Thanks
    215
    Thanked 698 Times in 680 Posts

    Default Re: Are mobile agents an appropriate implementation mechanism for Distributed system?

    I don't think anyone understands the question, at least not in a Java context. What's a mobile agent? How does a mobile agent make decisions? What (physically or virtually) is migrating? What is a node?

    The context of your question is not clear, and I suspect you're attempting to apply the constraints and mitigations of a language that requires the programmer to manage memory/CPU resources (like C) to Java which may not be appropriate.

  5. #5
    Junior Member
    Join Date
    May 2014
    Posts
    15
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Are mobile agents an appropriate implementation mechanism for Distributed system?

    ok dear! i will talk 2 u later as i have 2 leave for university1 Bye

  6. #6
    Junior Member
    Join Date
    Oct 2014
    Posts
    3
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Are mobile agents an appropriate implementation mechanism for Distributed system?

    Mobile agents are self Autonomous: i.e. Agent itself decides when and where to migrate next. Applying this definition to a distributed shared memory systems where client's requests are cpu-intensive tasks, can we prefer mobile agents that can select a node itself to migrate to that node and execute client request





    _______
    razaali88
    aliraza8

  7. #7
    Junior Member
    Join Date
    Oct 2014
    Posts
    7
    Thanks
    0
    Thanked 0 Times in 0 Posts

    Default Re: Are mobile agents an appropriate implementation mechanism for Distributed system?

    Mobile agents are self Autonomous: i.e. Agent itself decides when and where to migrate next. Applying this definition to a distributed shared memory systems where client's requests are cpu-intensive tasks, can we prefer mobile agents that can select a node itself to migrate to that node and execute client request
    Translation...
    Mobile agents are programs that can move thru a network under their own control, migrating from host to host and interacting with other agents and resources on each host. After the mobile agent completes it's work, it would normally return to the host of its origination.


    Isn't a mobile agent itself a form of distributed computing. For example, an agent can be used by a physician on his laptop. The agent would interact with imaging department to provide xrays etc, interact with patients database to get patients medical info and also interact with the billing department to bill the patient.

    Is Java a good platform for mobile agents? IMHO, yes, primarily because of platform independence. The byte code can be executed on any platform as opposed to native code. Also, there are other compelling reasons for using the Java platform. But I don't want to turn this into a long winded explanation.

    can we prefer mobile agents that can select a node itself to migrate to that node and execute client request
    Well, isn't this what a mobile agent is supposed to do? I'm not aware of any type of variation.

Similar Threads

  1. Mobile Navigation System in Android
    By cbayoda23 in forum Android Development
    Replies: 2
    Last Post: July 13th, 2013, 06:43 PM
  2. what is reflections mechanism?
    By Mallikarjunat in forum Java Theory & Questions
    Replies: 1
    Last Post: February 19th, 2013, 09:52 AM
  3. Dictionary using Distributed Hash Table and BST Tree
    By dezett in forum What's Wrong With My Code?
    Replies: 28
    Last Post: June 23rd, 2012, 12:03 PM
  4. [Jade-Java]Distributed Container
    By ermasto in forum Algorithms & Recursion
    Replies: 0
    Last Post: January 25th, 2011, 06:08 AM
  5. [SOLVED] Mobile operating system using Java technology
    By blackJava in forum Java ME (Mobile Edition)
    Replies: 3
    Last Post: April 16th, 2009, 02:44 PM

Tags for this Thread