4 BIG DATA Mining Big Data Stream | Sem 8 | facebook mail instagram - mr.samrattayade | twitter linkedin youtube -samrattayade


Mining Big Data Streams


Data Stream Model :

Data stream management System :
Traditional relational databases store and retrieve records of data that are static in nature. Further these databases do not perceive a notion of time unless time is added as an attribute to the database during designing the schema itself. While this model was adequate for most of the legacy applications and older repositories of information, many current and emerging applications require support for online analysis of rapidly arriving and changing data streams. This has prompted a deluge of research activity which attempts to build new models to manage streaming data. This has resulted in data stream management systems (DSMS), with an emphasis on continuous query languages and query evaluation. We first present a generic model for such a DSMS. We then discuss a few typical and current applications of the data stream model.
Data Stream Model A data stream is a real-time, continuous and ordered (implicitly by arrival time or explicitly by timestamp) sequence of items. It is not possible to control the order in which the items arrive, nor it is feasible to locally store a stream in its entirety in any memory device. Further, a query over streams will actually run continuously over a period of time and incrementally return new results as new data arrives. Therefore, these are known as long-running, continuous, standing and persistent queries. As a result of the above definition, we have the following characteristics that must be exhibited by any generic model that attempts to store and retrieve data streams. 1. The data model and query processor must allow both order-based and time-based operations (e.g., queries over a 10 min moving window or queries of the form which are the most frequently occurring data before a particular event and so on). 2. The inability to store a complete stream indicates that some approximate summary structures must be used. As a result, queries over the summaries may not return exact answers. 3. Streaming query plans must not use any operators that require the entire input before any results are produced. Such operators will block the query processor indefinitely. 6.2 Data Strea m Manage m ent Sy s t e ms • 129 4. Any query that requires backtracking over a data stream is infeasible. This is due to the storage and performance constraints imposed by a data stream. Thus any online stream algorithm is restricted to make only one pass over the data. 5. Applications that monitor streams in real-time must react quickly to unusual data values. Thus, long-running queries must be prepared for changes in system conditions any time during their execution lifetime (e.g., they may encounter variable stream rates). 6. Scalability requirements dictate that parallel and shared execution of many continuous queries must be possible. An abstract architecture for a typical DSMS is depicted in Fig. 6.1. An input monitor may regulate the input rates, perhaps by dropping packets. Data are typically stored in three partitions: 1. Temporary working storage (e.g., for window queries). 2. Summary storage. 3. Static storage for meta-data (e.g., physical location of each source). Long-running queries are registered in the query repository and placed into groups for shared processing. It is also possible to pose one-time queries over the current state of the stream. The query processor communicates with the input monitor and may re-optimize the query plans in response to changing input rates. Results are streamed to the users or temporarily buffered.

Post a Comment

0 Comments