Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Which one is most appropriate for sensor network database, Cassandra or Oracle NoSQL?
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  11 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Macho Che  
View profile  
 More options May 8 2012, 4:17 am
From: Macho Che <chewei...@gmail.com>
Date: Tue, 8 May 2012 01:17:29 -0700 (PDT)
Local: Tues, May 8 2012 4:17 am
Subject: Which one is most appropriate for sensor network database, Cassandra or Oracle NoSQL?

we have about one hundred sensor nodes (will be added even more in the
future) to collect the environmental parameters, such as temp, humidity and
air concentration. The sensor nodes will send the data with a interval of
about 10s. And we need to read the data from database to show it in our own
system, eg. from time A to time B; from time A till now...
I've learned cassandra and Oracle NoSQL, is there any one could give me
some suggestions.
Thanks a lot.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Luca Garulli  
View profile  
 More options May 8 2012, 12:22 pm
From: Luca Garulli <l.garu...@gmail.com>
Date: Tue, 8 May 2012 18:22:07 +0200
Local: Tues, May 8 2012 12:22 pm
Subject: Re: Which one is most appropriate for sensor network database, Cassandra or Oracle NoSQL?

Hi,
OrientDB it's very fast on time series by defining an index on the time
property and executing range queries like. Supports an enhanced version of
SQL.

Create the database, schema and index:

> create database local:/temp/test admin admin local
> create class SensorData
> create property SensorData.time datetime
> create index time_series on ( SensorData ) notunique

Insert some data:

> insert into SensorData (time, description) values ( '2010-01-01

10:10:00.000', 'this is just a description')

Now extract data:

> select from SensorData where time between '2010-01-01 10:10:00.000' and

 '2010-01-01 10:20:00.000'

Lvc@

On 8 May 2012 10:17, Macho Che <chewei...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Nicolas Liochon  
View profile  
 More options May 8 2012, 12:45 pm
From: Nicolas Liochon <lioc...@gmail.com>
Date: Tue, 8 May 2012 18:45:08 +0200
Local: Tues, May 8 2012 12:45 pm
Subject: Re: Which one is most appropriate for sensor network database, Cassandra or Oracle NoSQL?

Hi,

You should have a look at opentsdb (http://opentsdb.net/): a time series
database on top on hbase.
However, given the volumes you mention you could as well consider a pure
sql solution.

N.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Fred van den Bosch  
View profile  
 More options May 9 2012, 5:35 pm
From: Fred van den Bosch <f...@librato.com>
Date: Wed, 9 May 2012 14:35:03 -0700 (PDT)
Local: Wed, May 9 2012 5:35 pm
Subject: Re: Which one is most appropriate for sensor network database, Cassandra or Oracle NoSQL?

Hi,

Have you considered using a SaaS like Librato Metrics<https://metrics.librato.com/>?
Provides storage, visualization, dashboards, alerting, etc. for time series
data "as a Service". Full disclosure: I work at Librato.

Best,

Fred


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Faisal Sami  
View profile  
 More options May 9 2012, 1:47 am
From: Faisal Sami <faisalsam...@gmail.com>
Date: Wed, 9 May 2012 10:47:37 +0500
Local: Wed, May 9 2012 1:47 am
Subject: Re: Which one is most appropriate for sensor network database, Cassandra or Oracle NoSQL?

Have a look at GTM,
http://www.fisglobal.com/products-technologyplatforms-gtm . It can be gr8
for your scenario as it is  hierarchical database.

Regards,
Faisal


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Macho Che  
View profile  
 More options May 9 2012, 9:59 pm
From: Macho Che <chewei...@gmail.com>
Date: Wed, 9 May 2012 18:59:38 -0700 (PDT)
Local: Wed, May 9 2012 9:59 pm
Subject: Re: Which one is most appropriate for sensor network database, Cassandra or Oracle NoSQL?

Thanks, actually we don't need the database to provide visualization and
alerting, we do these in our own system. Here what we most considered is
the  increasing dataset hour by hour, day by day, as well as the fast
reading of the data.

On Thursday, May 10, 2012 5:35:03 AM UTC+8, Fred van den Bosch wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Macho Che  
View profile  
 More options May 9 2012, 10:15 pm
From: Macho Che <chewei...@gmail.com>
Date: Wed, 9 May 2012 19:15:54 -0700 (PDT)
Local: Wed, May 9 2012 10:15 pm
Subject: Re: Which one is most appropriate for sensor network database, Cassandra or Oracle NoSQL?

thanks, I wonder if a pure sql solution could meet the scalability because
 the data set is increasing very quickly.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Amandeep Khurana  
View profile  
 More options May 9 2012, 10:18 pm
From: Amandeep Khurana <ama...@gmail.com>
Date: Wed, 9 May 2012 19:18:41 -0700
Local: Wed, May 9 2012 10:18 pm
Subject: Re: Which one is most appropriate for sensor network database, Cassandra or Oracle NoSQL?

What is the expected throughput and the expected volume right now and what
are your projections for the future?

On May 9, 2012, at 7:15 PM, Macho Che <chewei...@gmail.com> wrote:

thanks, I wonder if a pure sql solution could meet the scalability because
 the data set is increasing very quickly.

You received this message because you are subscribed to the Google Groups
"NOSQL" group.
To view this discussion on the web visit
https://groups.google.com/d/msg/nosql-discussion/-/W2Mv9Y4og8cJ.
To post to this group, send email to nosql-discussion@googlegroups.com.
To unsubscribe from this group, send email to
nosql-discussion+unsubscribe@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/nosql-discussion?hl=en.

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Macho Che  
View profile  
 More options May 9 2012, 11:28 pm
From: Macho Che <chewei...@gmail.com>
Date: Wed, 9 May 2012 20:28:02 -0700 (PDT)
Local: Wed, May 9 2012 11:28 pm
Subject: Re: Which one is most appropriate for sensor network database, Cassandra or Oracle NoSQL?

sorry, I can't give you the exact projections. We do research works so we
should imagine it as big as enough to some degree.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Adam Retter  
View profile  
 More options May 10 2012, 3:57 am
From: Adam Retter <adam.ret...@googlemail.com>
Date: Thu, 10 May 2012 08:57:17 +0100
Local: Thurs, May 10 2012 3:57 am
Subject: Re: Which one is most appropriate for sensor network database, Cassandra or Oracle NoSQL?
Perhaps VoltDB is of interest?

On 10 May 2012 02:59, Macho Che <chewei...@gmail.com> wrote:

--
Adam Retter

skype: adam.retter
tweet: adamretter
http://www.adamretter.org.uk


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Georges DICK  
View profile  
 More options May 10 2012, 5:36 am
From: Georges DICK <georges.d...@gmail.com>
Date: Thu, 10 May 2012 11:36:42 +0200
Local: Thurs, May 10 2012 5:36 am
Subject: Re: Which one is most appropriate for sensor network database, Cassandra or Oracle NoSQL?

> On Tue, May 8, 2012 at 1:17 PM, Macho Che <chewei...@gmail.com> wrote:
> > we have about one hundred sensor nodes (will be added even more in the
> > future) to collect the environmental parameters, such as temp, humidity
> and
> > air concentration. The sensor nodes will send the data with a interval of
> > about 10s.

100 sensor, every 10s => 10 transaction / second.
Why do you bother using NoSQL ? This is a typical job for MySQL !

 BTW, if you desperately want to use a NoSQL DB, you should think ease of
use : a document DB (like MongoDB) would be my choice.

BR,
Georges.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »