Skip to content

Commit

Permalink
[WSO2-Release] [Release 5.0.5] update documentation for release 5.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
wso2-jenkins-bot committed Nov 2, 2019
1 parent c08fbec commit f0146cc
Show file tree
Hide file tree
Showing 5 changed files with 677 additions and 40 deletions.
24 changes: 12 additions & 12 deletions README.md
Expand Up @@ -19,21 +19,21 @@ For information on <a target="_blank" href="https://siddhi.io/">Siddhi</a> and i

## Latest API Docs

Latest API Docs is <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.4">5.0.4</a>.
Latest API Docs is <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.5">5.0.5</a>.

## Features

* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.4/#deduplicate-stream-processor">deduplicate</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#stream-processor">Stream Processor</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Removes duplicate events based on the <code>unique.key</code> parameter that arrive within the <code>time.interval</code> gap from one another.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.4/#ever-window">ever</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Window that retains the latest events based on a given unique keys. When a new event arrives with the same key it replaces the one that exist in the window.&lt;b&gt;This function is not recommended to be used when the maximum number of unique attributes are undefined, as there is a risk of system going out to memory&lt;/b&gt;.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.4/#externaltimebatch-window">externalTimeBatch</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a batch (tumbling) time window that is determined based on an external time, i.e., time stamps that are specified via an attribute in the events. It holds the latest unique events that arrived during the last window time period. The unique events are determined based on the value for a specified unique key parameter. When a new event arrives within the time window with a value for the unique key parameter that is the same as that of an existing event in the window, the existing event expires and it is replaced by the new event.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.4/#first-window">first</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a window that holds only the first set of unique events according to the unique key parameter. When a new event arrives with a key that is already in the window, that event is not processed by the window.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.4/#firstlengthbatch-window">firstLengthBatch</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a batch (tumbling) window that holds a specific number of unique events (depending on which events arrive first). The unique events are selected based on a specific parameter that is considered as the unique key. When a new event arrives with a value for the unique key parameter that matches the same of an existing event in the window, that event is not processed by the window.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.4/#firsttimebatch-window">firstTimeBatch</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">A batch-time or tumbling window that holds the unique events according to the unique key parameters that have arrived within the time period of that window and gets updated for each such time window. When a new event arrives with a key which is already in the window, that event is not processed by the window.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.4/#length-window">length</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a sliding length window that holds the events of the latest window length with the unique key and gets updated for the expiry and arrival of each event. When a new event arrives with the key that is already there in the window, then the previous event expires and new event is kept within the window.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.4/#lengthbatch-window">lengthBatch</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a batch (tumbling) window that holds a specified number of latest unique events. The unique events are determined based on the value for a specified unique key parameter. The window is updated for every window length, i.e., for the last set of events of the specified number in a tumbling manner. When a new event arrives within the window length having the same value for the unique key parameter as an existing event in the window, the previous event is replaced by the new event.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.4/#time-window">time</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a sliding time window that holds the latest unique events that arrived during the previous time window. The unique events are determined based on the value for a specified unique key parameter. The window is updated with the arrival and expiry of each event. When a new event that arrives within a window time period has the same value for the unique key parameter as an existing event in the window, the previous event is replaced by the new event.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.4/#timebatch-window">timeBatch</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a batch (tumbling) time window that is updated with the latest events based on a unique key parameter. If a new event that arrives within the time period of a windowhas a value for the key parameter which matches that of an existing event, the existing event expires and it is replaced by the latest event. </p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.4/#timelengthbatch-window">timeLengthBatch</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a batch or tumbling time length window that is updated with the latest events based on a unique key parameter. The window tumbles upon the elapse of the time window, or when a number of unique events have arrived. If a new event that arrives within the period of the window has a value for the key parameter which matches the value of an existing event, the existing event expires and it is replaced by the new event. </p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.5/#deduplicate-stream-processor">deduplicate</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#stream-processor">Stream Processor</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Removes duplicate events based on the <code>unique.key</code> parameter that arrive within the <code>time.interval</code> gap from one another.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.5/#ever-window">ever</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">Window that retains the latest events based on a given unique keys. When a new event arrives with the same key it replaces the one that exist in the window.&lt;b&gt;This function is not recommended to be used when the maximum number of unique attributes are undefined, as there is a risk of system going out to memory&lt;/b&gt;.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.5/#externaltimebatch-window">externalTimeBatch</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a batch (tumbling) time window that is determined based on an external time, i.e., time stamps that are specified via an attribute in the events. It holds the latest unique events that arrived during the last window time period. The unique events are determined based on the value for a specified unique key parameter. When a new event arrives within the time window with a value for the unique key parameter that is the same as that of an existing event in the window, the existing event expires and it is replaced by the new event.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.5/#first-window">first</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a window that holds only the first set of unique events according to the unique key parameter. When a new event arrives with a key that is already in the window, that event is not processed by the window.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.5/#firstlengthbatch-window">firstLengthBatch</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a batch (tumbling) window that holds a specific number of unique events (depending on which events arrive first). The unique events are selected based on a specific parameter that is considered as the unique key. When a new event arrives with a value for the unique key parameter that matches the same of an existing event in the window, that event is not processed by the window.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.5/#firsttimebatch-window">firstTimeBatch</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">A batch-time or tumbling window that holds the unique events according to the unique key parameters that have arrived within the time period of that window and gets updated for each such time window. When a new event arrives with a key which is already in the window, that event is not processed by the window.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.5/#length-window">length</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a sliding length window that holds the events of the latest window length with the unique key and gets updated for the expiry and arrival of each event. When a new event arrives with the key that is already there in the window, then the previous event expires and new event is kept within the window.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.5/#lengthbatch-window">lengthBatch</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a batch (tumbling) window that holds a specified number of latest unique events. The unique events are determined based on the value for a specified unique key parameter. The window is updated for every window length, i.e., for the last set of events of the specified number in a tumbling manner. When a new event arrives within the window length having the same value for the unique key parameter as an existing event in the window, the previous event is replaced by the new event.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.5/#time-window">time</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a sliding time window that holds the latest unique events that arrived during the previous time window. The unique events are determined based on the value for a specified unique key parameter. The window is updated with the arrival and expiry of each event. When a new event that arrives within a window time period has the same value for the unique key parameter as an existing event in the window, the previous event is replaced by the new event.</p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.5/#timebatch-window">timeBatch</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a batch (tumbling) time window that is updated with the latest events based on a unique key parameter. If a new event that arrives within the time period of a windowhas a value for the key parameter which matches that of an existing event, the existing event expires and it is replaced by the latest event. </p></p></div>
* <a target="_blank" href="https://siddhi-io.github.io/siddhi-execution-unique/api/5.0.5/#timelengthbatch-window">timeLengthBatch</a> *(<a target="_blank" href="http://siddhi.io/en/v5.1/docs/query-guide/#window">Window</a>)*<br> <div style="padding-left: 1em;"><p><p style="word-wrap: break-word;margin: 0;">This is a batch or tumbling time length window that is updated with the latest events based on a unique key parameter. The window tumbles upon the elapse of the time window, or when a number of unique events have arrived. If a new event that arrives within the period of the window has a value for the key parameter which matches the value of an existing event, the existing event expires and it is replaced by the new event. </p></p></div>

## Dependencies

Expand Down

0 comments on commit f0146cc

Please sign in to comment.