Eric,
Is the keyspace as a multitenancy solution as bad as the many tables
pattern? Is the memory overhead of keyspaces as heavy as that of tables?
Cheers,
Brian
On Tuesday, March 1, 2016, Eric Stevens wrote:
> It's definitely not true for every use case of a large number of tables,
> but for
How did you install Cassandra and what JVM sre you using?
On Saturday, August 22, 2015, Gop Krr wrote:
> Hi Guys,
> Have you seen this issue before?
>
> Exception in thread "main" java.lang.NoClassDefFoundError:
> com/google/inject/AbstractModule
>
> at java.lang.ClassLoader.defineClass1(Native
Berk,
1 GB is not enough to run C*, the minimum memory we use on Digital Ocean
is 4GB.
Cheers,
Brian
http://integrallis.com
On Sat, Jun 6, 2015 at 10:50 AM, wrote:
> Hi all,
>
> I've installed Cassandra on a test server hosted on Digital Ocean. The
> server has 1GB RAM, and is running a sing
Robert,
Can you elaborate more please?
Cheers,
Brian
On Tuesday, April 21, 2015, Robert Coli wrote:
> On Tue, Apr 21, 2015 at 2:25 PM, Dikang Gu > wrote:
>
>> We have some issues with streaming in 2.1.2. We find that there are a lot
>> of patches in 2.1.5. Is it ready for upgrade?
>>
>
> I per
s correctly is immutable databases or
> temporal databases. I would strongly advise against using a key that is a
> compound of name+phone+address. If the system needs to perform updates, the
> key needs to be immutable so that queries won't fail.
>
> On Sat, Feb 28, 2015 at 10
As far as I know there is no such thing. You could make that value a single
PK for the table therefore guaranteeing uniqueness and check on insert with
`IF NOT EXISTS` to prevent dups. Of course that works just for one value,
if you have multiple values a compound PK will still let dups in for a
gi
ing Cassandra triggers is generally a fairly dangerous proposition, and
> generally not recommended.It's probably a better idea to load your
> search data with a separate process.
>
> On Mon, Jan 26, 2015 at 11:42 AM, Brian Sam-Bodden <
> bsbod...@integrallis.com>
I did an little experiment with a Geohash/Geocells
https://github.com/integrallis/geomodel (a poor port of a Python Geohash
librairy) and using Cassandra in a demo using public schools data here
https://github.com/integrallis/geomodel-cassandra-demo
My conclusions is that you can use the Geohash n
There is also https://github.com/hsgubert/cassandra_migrations
On Fri, Dec 5, 2014 at 7:49 AM, Ben Hood <0x6e6...@gmail.com> wrote:
> On Tue, Nov 25, 2014 at 12:49 PM, Phil Wise
> wrote:
> > https://github.com/advancedtelematic/cql-migrate
>
> Great to see these tools out there!
>
> Just to add