blob: 735ef99952cd697c3415184a25a9e212f2c4fdad [file] [log] [blame]
/**
* Copyright (C) 2015 DataTorrent, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Execution layer for data operators, tuple processing, serialization, streams, window boundaries etc.<p>
* <br>
* <br>
* The streaming platform would take care of the following for you<br>(TBD, add "How it will")<br>
* - Standard partitioning (round robin, sticky key). You can add your own partitioning.<br>
* - End of window statistics collection in terms of number of tuples, bandwidth, I/O etc<br>
* - Ensuring the the emitted tuple reaches the downstream operators<br>
* - Queueing tuples and retaining them till all future downstream operators have consumed it<br>
* <br>
* <br>
* There are pre-defined library operators that you can use: see ...<br>
* Examples are in the following packages<br>
<ul>
<li><a href="../../../datatorrent/lib/algo/package-summary.html">Algorithmic</a>: A set of algorithmic operators</li>
<li><a href="../../../datatorrent/lib/io/package-summary.html">Input-Output</a>: A set of operators for Input-Output from Hadoop. Consists of adapters to various message buses</li>
<li><a href="../../../datatorrent/lib/logs/package-summary.html">Log Collection</a>: A set of operators for log collection</li>
<li><a href="../../../datatorrent/lib/math/package-summary.html">Arithmetic</a>: A set of arithmetic operators</li>
<li><a href="../../../datatorrent/lib/stream/package-summary.html">Stream</a>: A set of operators for stream operations</li>
<li><a href="../../../datatorrent/lib/testbench/package-summary.html">Testbench</a>: A set of operators for testing your dag, operators </li>
<li><a href="../../../datatorrent/lib/util/package-summary.html">Utilities</a>: A set of utility classes</li>
</ul>
* <br>
*
*/
package com.datatorrent.stram.engine;