Ian Maxon | 137fc3b | 2015-06-30 16:23:48 -0700 | [diff] [blame] | 1 | ~~Copyright 2009-2013 by The Regents of the University of California |
| 2 | ~~Licensed under the Apache License, Version 2.0 (the "License"); |
| 3 | ~~you may not use this file except in compliance with the License. |
| 4 | ~~you may obtain a copy of the License from |
| 5 | ~~ |
| 6 | ~~ http://www.apache.org/licenses/LICENSE-2.0 |
| 7 | ~~ |
| 8 | ~~Unless required by applicable law or agreed to in writing, software |
| 9 | ~~distributed under the License is distributed on an "AS IS" BASIS, |
| 10 | ~~WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 11 | ~~See the License for the specific language governing permissions and |
| 12 | ~~limitations under the License. |
| 13 | |
vinayakb | 0c86039 | 2012-10-06 18:47:20 +0000 | [diff] [blame] | 14 | Hyracks Overview |
| 15 | |
| 16 | Hyracks employs a client-server architecture. On the server side, the software module that is responsible for interacting with clients, keeping track of and dispatching work |
| 17 | to other machines in the cluster is called the Hyracks Cluster Controller (CC). There is one CC per logical Hyracks cluster. The module that executes on the worker machine |
| 18 | and interacts with the CC to receive work and act on it, is called the Hyracks Node Controller (NC). Every NC in a single Hyracks cluster has a unique logical name. When an |
| 19 | NC is started, it is provided the address of the CC whose cluster it must join. Although it is sufficient to run one instance of the NC on a physical machine, it is possible |
| 20 | to run multiple instances of NCs (ofcourse each NC has a different logical name) on the same physical machine -- often used for simulating a cluster on a single machine |
| 21 | to facilitate testing. |
| 22 | |
| 23 | Hyracks clients interact solely with the CC when submitting their jobs. A Hyracks Job is the unit of work that a client can execute on the Hyracks cluster. A job is expressed |
| 24 | as a directed acyclic graph (DAG) of Operators connected to each other by means of Connectors. A more detailed description of jobs, operators, and connectors follows in |
| 25 | chapter "Hyracks Concepts". |