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.

Suppose that a data warehouse for Big-University consists of the following four dimensions: student, course, semester, and instructor, and two measures count and avg_grade. When at the lowest conceptual level (e.g., for a given student, course, semester, and instructor combination), the avg_grade measure stores the actual course grade of the student. At higher conceptual levels, avg_grade stores the average grade for the given combination. a) Draw a snowflake schema diagram for the data warehouse. b) Starting with the base cuboid [student, course, semester, instructor], what specific OLAP operations (e.g., roll-up from semester to year) should one perform in order to list the average grade of CS courses for each BigUniversity student. c) If each dimension has five levels (including all), such as “student < major < status < university < all”, how many cuboids will this cube contain (including the base and apex cuboids)?

Pure Versus Partial EC