near-real-time

What constitutes 'real time'

左心房为你撑大大i 提交于 2019-12-22 03:44:48
问题 I am having trouble deciding on whether to classify my application as 'real time' or 'near real time', or perhaps even something else. The software receives data immediately as it is generated from the source, then based on certain rules, raises an alert when certain conditions are met. It takes the approach of checking the last 30 seconds of data every 30 seconds to see whether the criteria for a rule has been met. Is that real time? What are the thresholds for the definitions of real time

PostgreSQL to Data-Warehouse: Best approach for near-real-time ETL / extraction of data

心已入冬 提交于 2019-12-20 10:33:35
问题 Background: I have a PostgreSQL (v8.3) database that is heavily optimized for OLTP. I need to extract data from it on a semi real-time basis (some-one is bound to ask what semi real-time means and the answer is as frequently as I reasonably can but I will be pragmatic, as a benchmark lets say we are hoping for every 15min) and feed it into a data-warehouse. How much data? At peak times we are talking approx 80-100k rows per min hitting the OLTP side, off-peak this will drop significantly to

how can I use Solr to do real-time search

夙愿已清 提交于 2019-12-13 21:29:20
问题 now we use deltaImport to update data from db to index. but we have some information need a real-time search or near real-time search. what should I do if I use solr to solve this? 回答1: to generate near real-time-search i would update the data in small packages and also update the index in small packages every minute (index update needs only some seconds - depending on the size of new data) don't forget to optimize the index regularly 回答2: This post could be useful for you: Solr and Near Real

How Do I do Real Time Sound/Signal Processing On The iPhone?

↘锁芯ラ 提交于 2019-12-09 07:12:59
问题 I may be doing an iPhone-based application doing near-real-time sound-processing (filtering, etc). I was wondering the best way to get started. Would I want to create an audio cue for recording and processing sound, as described here? Edit: I should be clear. I am not asking how to do signal processing, in general. I know some of that and my team's expert will handle the rest. I asking what the "low level" interfaces to sound data on the iphone are. Edit2: My iphone development has been

Lucene near real time search

僤鯓⒐⒋嵵緔 提交于 2019-12-07 20:50:16
问题 I am using Lucene 6.6.0 and I would like to use the near real-time search feature of Lucene. However, I could not manage to implement it. The way I try to get the feature is as follows: I initialize an IndexReader instance: this.reader = DirectoryReader.open(this.directory); Let's assume some changes have been made in the index via an IndexWriter instance. Then, if I understand correctly, I need a second instance of IndexReader to commit updates: this.newReader = DirectoryReader.openIfChanged

Lucene near real time search

半城伤御伤魂 提交于 2019-12-06 13:42:21
I am using Lucene 6.6.0 and I would like to use the near real-time search feature of Lucene. However, I could not manage to implement it. The way I try to get the feature is as follows: I initialize an IndexReader instance: this.reader = DirectoryReader.open(this.directory); Let's assume some changes have been made in the index via an IndexWriter instance. Then, if I understand correctly, I need a second instance of IndexReader to commit updates: this.newReader = DirectoryReader.openIfChanged(this.reader); if (this.newReader != null) { // Update the IndexSearcher with the new IndexReader

What constitutes 'real time'

怎甘沉沦 提交于 2019-12-05 01:59:50
I am having trouble deciding on whether to classify my application as 'real time' or 'near real time', or perhaps even something else. The software receives data immediately as it is generated from the source, then based on certain rules, raises an alert when certain conditions are met. It takes the approach of checking the last 30 seconds of data every 30 seconds to see whether the criteria for a rule has been met. Is that real time? What are the thresholds for the definitions of real time vs. near real-time? EDIT I think this is a duplicate of Define realtime on the web for business . Please

How Do I do Real Time Sound/Signal Processing On The iPhone?

那年仲夏 提交于 2019-12-03 08:37:36
I may be doing an iPhone-based application doing near-real-time sound-processing (filtering, etc). I was wondering the best way to get started. Would I want to create an audio cue for recording and processing sound, as described here ? Edit: I should be clear. I am not asking how to do signal processing, in general. I know some of that and my team's expert will handle the rest. I asking what the "low level" interfaces to sound data on the iphone are. Edit2: My iphone development has been pushed back a week or two so I don't have access to the deve kit right now. Once I have access to the kit,

PostgreSQL to Data-Warehouse: Best approach for near-real-time ETL / extraction of data

早过忘川 提交于 2019-12-02 23:09:37
Background: I have a PostgreSQL (v8.3) database that is heavily optimized for OLTP. I need to extract data from it on a semi real-time basis (some-one is bound to ask what semi real-time means and the answer is as frequently as I reasonably can but I will be pragmatic, as a benchmark lets say we are hoping for every 15min) and feed it into a data-warehouse. How much data? At peak times we are talking approx 80-100k rows per min hitting the OLTP side, off-peak this will drop significantly to 15-20k. The most frequently updated rows are ~64 bytes each but there are various tables etc so the data

What are the realtime communication protocols available for the web?

我们两清 提交于 2019-11-28 16:52:18
问题 I recently came across WebSockets and my mind was blown about the possibilities they bring. I searched for a full list of such realtime (and near-realtime) communication protocols and technologies - such as XMPP, WebRTC but I couldn't find any near complete list. So please help me assemble the list here. UPDATE: I'm looking for realtime protocols available for the web. 回答1: WebSocket WebSocket is a web technology providing full-duplex communications channels over a single TCP connection. The