Explain Aneka Threads with it's diagram.

 THE ANEKA ENVIRONMENT

Aneka is a development as well as a runtime environment. As a development environment, Aneka provides a collection of libraries that allow you to construct parallel applications using one of the three supported programming paradigms. Those are Task, Thread, and MapReduce. As a runtime environment, Aneka parallelizes the units of work that comprise your program. It should be noted that executing apps on Aneka requires access to a pre-installed runtime environment on a cluster. You may, however, run Aneka solo on your personal computer for development reasons.

Aneka Threads

An Aneka Thread is a piece of work that may be run on a remote computer. Unlike ordinary threads, each Aneka Thread runs in its process on the distant system. An Aneka Thread provides a comparable interface to a normal Thread and may be started and aborted in the same way. Aneka Threads, on the other hand, are simpler and do not support all of the behaviors provided by the .Net Thread class, such as thread priority management and actions like suspend and resume.



Comments

Popular posts from this blog

Discuss classification or taxonomy of virtualization at different levels.

Explain cloud computing reference model .

Suppose that a data warehouse consists of the three dimensions time, doctor, and patient, and the two measures count and charge, where a charge is the fee that a doctor charges a patient for a visit. a) Draw a schema diagram for the above data warehouse using one of the schemas. [star, snowflake, fact constellation] b) Starting with the base cuboid [day, doctor, patient], what specific OLAP operations should be performed in order to list the total fee collected by each doctor in 2004? c) To obtain the same list, write an SQL query assuming the data are stored in a relational database with the schema fee (day, month, year, doctor, hospital, patient, count, charge)