Re: Why Solandra stores Solr data in Cassandra ? Isn't solr complete solution ?

2013-10-04 Thread Ertio Lew
Yes, what is Solr Cloud then for, that already provides clustering support, so what's the need for Cassandra ? On Tue, Oct 1, 2013 at 2:06 AM, Sávio Teles wrote: > > Solr's index sitting on a single machine, even if that single machine can >> vertically scale, is a single point of failure. >> >

Re: Why Solandra stores Solr data in Cassandra ? Isn't solr complete solution ?

2013-09-30 Thread Sávio Teles
> Solr's index sitting on a single machine, even if that single machine can > vertically scale, is a single point of failure. > And about Cloud Solr? 2013/9/30 Ken Hancock > Yes. > > > On Mon, Sep 30, 2013 at 1:57 PM, Andrey Ilinykh wrote: > >> >> Also, be aware that while Cassandra has knobs

Re: Why Solandra stores Solr data in Cassandra ? Isn't solr complete solution ?

2013-09-30 Thread Ken Hancock
Yes. On Mon, Sep 30, 2013 at 1:57 PM, Andrey Ilinykh wrote: > > Also, be aware that while Cassandra has knobs to allow you to get >> consistent read results (CL=QUORUM), DSE Search does not. If a node drops >> messages for whatever reason, outtage, mutation, etc. its solr indexes will >> be inc

Re: Why Solandra stores Solr data in Cassandra ? Isn't solr complete solution ?

2013-09-30 Thread Andrey Ilinykh
> Also, be aware that while Cassandra has knobs to allow you to get > consistent read results (CL=QUORUM), DSE Search does not. If a node drops > messages for whatever reason, outtage, mutation, etc. its solr indexes will > be inconsistent with other nodes in its replication group. > > Will repair

Re: Why Solandra stores Solr data in Cassandra ? Isn't solr complete solution ?

2013-09-30 Thread Ken Hancock
above only one of those RF=3 nodes will be queried for a particular token range so that data can be unioned across all the nodes with different token ranges. Not sure about Solandra, but you do need to be aware that there's a number of Solr search options that are not supported on distr

Re: Why Solandra stores Solr data in Cassandra ? Isn't solr complete solution ?

2013-09-30 Thread Robert Coli
On Mon, Sep 30, 2013 at 8:50 AM, Ertio Lew wrote: > Solr's data is stored on the file system as a set of index files[ > http://stackoverflow.com/a/7685579/530153]. Then why do we need anything > like Solandra or DataStax Enterprise Search? Isn't Solr complete solution > i

Re: Why Solandra stores Solr data in Cassandra ? Isn't solr complete solution ?

2013-09-30 Thread Peter Lin
ndex files[ > http://stackoverflow.com/a/7685579/530153]. Then why do we need anything > like Solandra or DataStax Enterprise Search? Isn't Solr complete solution > in itself ? What do we need to integrate with Cassandra ? > > > >

Why Solandra stores Solr data in Cassandra ? Isn't solr complete solution ?

2013-09-30 Thread Ertio Lew
Solr's data is stored on the file system as a set of index files[ http://stackoverflow.com/a/7685579/530153]. Then why do we need anything like Solandra or DataStax Enterprise Search? Isn't Solr complete solution in itself ? What do we need to integrate with Cassandra ?

Re: Setting the default replication factor for Solandra cores

2012-09-20 Thread shubham srivastava
With Solandra as well you can use the Cassandra Cli to do the needful. The location would be [~/Solandra/bin/] . Regards, Shubham On Fri, Sep 21, 2012 at 6:56 AM, aaron morton wrote: > I want to set the replication factor = 2, > > This is part of the CREATE KEYSPACE command, not sure w

Re: Setting the default replication factor for Solandra cores

2012-09-20 Thread aaron morton
> I want to set the replication factor = 2, This is part of the CREATE KEYSPACE command, not sure where this is in solandra. I would recommend using RF 3 as a minimum. > , and the default replications strategy to be RackAwareStrategy. That's a very old strategy. The

Re: Setting the default replication factor for Solandra cores

2012-09-19 Thread Michael Kjellman
If I recall correctly you should make those changes in the schema through the CLI. I never ended up running Solandra in production though so I'm not sure if anyone else has better options. Why is the CLI not enough? On Sep 19, 2012, at 5:56 AM, "Safdar Kureishy" mail

Re: RandomPartitioner is providing a very skewed distribution of keys across a 5-node Solandra cluster

2012-06-25 Thread Safdar Kureishy
across 5 nodes. The idea is eventually they will as you add > more and more keys. So increasing shards at once can make that happen > faster. You can change this parameter and restart the nodes without > affecting your old data. > > If you have more issues raise it on the github

Re: RandomPartitioner is providing a very skewed distribution of keys across a 5-node Solandra cluster

2012-06-25 Thread Jake Luciani
make that happen faster. You can change this parameter and restart the nodes without affecting your old data. If you have more issues raise it on the github issue tab for Solandra. -Jake On Mon, Jun 25, 2012 at 2:23 AM, Safdar Kureishy wrote: > Hi Jake, > > Thanks. Yes, I forgot to ment

Re: RandomPartitioner is providing a very skewed distribution of keys across a 5-node Solandra cluster

2012-06-24 Thread Safdar Kureishy
, what would happen (to existing + new data) if the setting was changed and the servers were restarted? Lastly, is there another mailing list I should be using for Solandra questions? I couldn't find one Thanks, Safdar On Mon, Jun 25, 2012 at 4:16 AM, Jake Luciani wrote: > H

Re: RandomPartitioner is providing a very skewed distribution of keys across a 5-node Solandra cluster

2012-06-24 Thread Jake Luciani
low. This mailing list seemed the most appropriate place. Apologies in > advance if that isn't the case. > > I'm running a 5-node Solandra cluster (Solr + Cassandra). I've setup the > nodes with tokens *evenly distributed across the token space*, for a > 5-node c

Re: RandomPartitioner is providing a very skewed distribution of keys across a 5-node Solandra cluster

2012-06-24 Thread Safdar Kureishy
ioner being just the domain_name could account > for an uneven distribution. > > But it sounds like your key is just a URL so that should (in theory) be > fine. > > > > On 06/24/2012 01:53 PM, Safdar Kureishy wrote: > > Hi Dave, > > Would you mind elaborating a bit m

Re: RandomPartitioner is providing a very skewed distribution of keys across a 5-node Solandra cluster

2012-06-24 Thread Dave Brosius
AFAIK, Solandra uses the unique id of the Solr document as the input for calculating the md5 hash for shard/node assignment. In this case the ids are just millions of varied web URLs that do /not/ adhere to any regular expression. I'm not sure if that answers your question below? Thanks, Safd

Re: RandomPartitioner is providing a very skewed distribution of keys across a 5-node Solandra cluster

2012-06-24 Thread Safdar Kureishy
Hi Dave, Would you mind elaborating a bit more on that, preferably with an example? AFAIK, Solandra uses the unique id of the Solr document as the input for calculating the md5 hash for shard/node assignment. In this case the ids are just millions of varied web URLs that do *not* adhere to any

Re: RandomPartitioner is providing a very skewed distribution of keys across a 5-node Solandra cluster

2012-06-24 Thread Dave Brosius
ds for the problem below. This mailing list seemed the most appropriate place. Apologies in advance if that isn't the case. I'm running a 5-node Solandra cluster (Solr + Cassandra). I've setup the nodes with tokens /evenly distributed across the token space/, for a 5-node cluster (as

Re: RandomPartitioner is providing a very skewed distribution of keys across a 5-node Solandra cluster

2012-06-24 Thread Safdar Kureishy
iate place. Apologies in > advance if that isn't the case. > > I'm running a 5-node Solandra cluster (Solr + Cassandra). I've setup the > nodes with tokens *evenly distributed across the token space*, for a > 5-node cluster (as evidenced below under the "effective-o

After deleting some data from the cluster under Solandra, we keep seeing this assertion.

2011-11-11 Thread Jacob, Arun
After removing some data from Solandra via a Solr query, we are getting DecoratedKey assertions. Our setup: latest version of Solandra (I think it supports 0.8.6, please correct if wrong) 3 solandra nodes, with replication set to 2 and sharding set to 3. No systems are currently running

Solandra: connection refused errors

2011-10-06 Thread Jacob, Arun
I'm seeing this error when trying to insert data into a core I've defined in Solandra INFO [pool-7-thread-319] 2011-10-06 16:21:34,328 HttpMethodDirector.java (line 445) Retrying request INFO [pool-7-thread-1070] 2011-10-06 16:21:34,328 HttpMethodDirector.java (line 445) Retrying re

Re: Solandra distributed search

2011-10-06 Thread Jake Luciani
The partitioner that comes with Solandra keeps groups of documents together on the same node. The number of documents that stick together and define a "shard" is set by the solandra.maximum.docs.per.shard property. The shards.at.once property relates to throughput. If you are index

Re: Solandra distributed search

2011-10-06 Thread Jacob, Arun
does the Solandra specific partitioner distribute data relatively equally across nodes? Is this influenced by the shards.at.once property? If I'm writing to 3 nodes, how would the default setting of 4 for this property affect the distribution of data across my nodes? From: Jake Lu

Re: Solandra error - spaces in search

2011-08-30 Thread Ashley Martens
Could you reproduce it?

Re: Solandra error - spaces in search

2011-08-23 Thread Jake Luciani
Thx for the info I'll try to reproduce On Aug 23, 2011, at 9:28 PM, Ashley Martens wrote: > INFO [769787724@qtp-311722089-9825] 2011-08-23 22:07:53,750 SolrCore.java > (line 1370) [users] webapp=/solandra path=/select > params={fl=*,score&start=0&q=+(+

Re: Solandra error - spaces in search

2011-08-23 Thread Ashley Martens
INFO [769787724@qtp-311722089-9825] 2011-08-23 22:07:53,750 SolrCore.java (line 1370) [users] webapp=/solandra path=/select params={fl=*,score&start=0&q=+(+(first_name:hatice^1.2)+(first_name:hatice~0.9^1.0)++)+AND+(+(last_name:ali^3.0)+(last_name:ali~0.9^2.1)++)+&wt=ruby&qt

Solandra error - spaces in search

2011-08-23 Thread Ashley Martens
We are getting an error in our Solandra search when the search string contains a space. Is anyone else seeing this? *Net::HTTPFatalError*: 500 "null java. lang.ArrayIndexOutOfBoundsException null java.lang.ArrayIndexOutOfBoundsException request: http://10.103.1.70:8983/solandra/use

Re: Solandra multiple schemas

2011-08-15 Thread Ashley Martens
Multiple cores it is. Thanks.

Re: Solandra distributed search

2011-08-15 Thread Jake Luciani
Solandra manages the "shard" parameters for you. you don't need to specify anything. On Mon, Aug 15, 2011 at 3:00 PM, Jeremiah Jordan < jeremiah.jor...@morningstar.com> wrote: > When using Solandra, do I need to use the Solr sharding synxtax in my > queries? I don

Solandra distributed search

2011-08-15 Thread Jeremiah Jordan
When using Solandra, do I need to use the Solr sharding synxtax in my queries? I don't think I do because Cassandra is handling the "sharding", not Solr, but just want to make sure. The Solandra wiki references the distributed search limitations, which talks about the shard

Re: Solandra multiple schemas

2011-08-15 Thread Jake Luciani
You want the solandra data stored under two keyspaces? Or you just want two different logical indexes. The former requires changing the keyspace name located in solandra.properties but you can only access one per process. The latter would involve creating two different solr cores at different

Solandra multiple schemas

2011-08-15 Thread Ashley Martens
Does Solandra support multiple schemas? For example I have staging and test data in two different keyspaces in Cassandra and want that echoed in Solandra. Possible?

Re: Solandra/Cassandra ring issue

2011-08-11 Thread Jake Luciani
seriously, If you change the cluster name in cassandra.yaml they won't join. On Thu, Aug 11, 2011 at 12:31 PM, Ashley Martens wrote: > No shared seeds. Downright freaky. > > -- http://twitter.com/tjake

Re: Solandra/Cassandra ring issue

2011-08-11 Thread Ashley Martens
No shared seeds. Downright freaky.

Re: Solandra/Cassandra ring issue

2011-08-10 Thread Jake Luciani
There is nothing solandra specific that would cause this. There were no shared seeds? On Aug 10, 2011, at 6:24 PM, Ashley Martens wrote: > Nope. Clean system. > > On Wed, Aug 10, 2011 at 3:22 PM, Nick Bailey wrote: > Did you perhaps start up the second cluster with data f

Re: Solandra/Cassandra ring issue

2011-08-10 Thread Ashley Martens
Nope. Clean system. On Wed, Aug 10, 2011 at 3:22 PM, Nick Bailey wrote: > Did you perhaps start up the second cluster with data from the test > cluster? If you accidentally copied the system tables over, cassandra > would recognize the saved tokens/ips from the test cluster and attempt > to goss

Re: Solandra/Cassandra ring issue

2011-08-10 Thread Nick Bailey
ust had a strange issue with a solandra ring. We had a two node test > cluster running in one data center and then started up a second 5 node > cluster in another data center. The seed in the first DC was in that DC and > the seed in the second DC was in the second DC, so the two rings shoul

Solandra/Cassandra ring issue

2011-08-10 Thread Ashley Martens
I just had a strange issue with a solandra ring. We had a two node test cluster running in one data center and then started up a second 5 node cluster in another data center. The seed in the first DC was in that DC and the seed in the second DC was in the second DC, so the two rings should not

RE: Solandra

2011-08-05 Thread Saket Joshi
HI Eldad, You can find the answers inline 1. How can I install Solandra and make use the existing nodes? download the source from git hub and build locally ( just run "ant" on source directory) the build creates a folder "solandra-app", which contains bin,conf, lib.

Solandra

2011-08-03 Thread Eldad Yamin
Hello, I have a cluster of 3 Cassandra nodes and I would like to start using Solandra. 1. How can I install Solandra and make use the existing nodes? 2. Will it be better to install Solandra on a new node and add it to the existing cluster? 3. How Solandra index, does it operate automatically or I

Cassandra and Solandra Installation guid

2011-08-03 Thread Eldad Yamin
Hi, I'd like to get tutorials on how to install Cassandra and Solandra - I couldn't find anything helpful. In addition, how to use (index/search) Solandra tutorials will be great. Thanks!

Re: Little problems with Solandra

2011-07-24 Thread Jean-Nicolas Boulay Desjardins
; >> I don't know if that's normal? >> >> Thanks again. >> >> On Sat, Jul 23, 2011 at 11:33 AM, Jake Luciani wrote: >>> Sounds like you forgot to start solandra after you built it. >>> >>> cd solandra-app; ./bin/solandra >>> >&g

Re: Little problems with Solandra

2011-07-23 Thread Jean-Nicolas Boulay Desjardins
r on the keyboard... And I was back > in the cmd... > > I don't know if that's normal? > > Thanks again. > > On Sat, Jul 23, 2011 at 11:33 AM, Jake Luciani wrote: >> Sounds like you forgot to start solandra after you built it. >> >> cd soland

Re: Little problems with Solandra

2011-07-23 Thread Jean-Nicolas Boulay Desjardins
... And I was back in the cmd... I don't know if that's normal? Thanks again. On Sat, Jul 23, 2011 at 11:33 AM, Jake Luciani wrote: > Sounds like you forgot to start solandra after you built it. > > cd solandra-app; ./bin/solandra > > You can verify it's running wi

Re: Little problems with Solandra

2011-07-23 Thread Jake Luciani
Sounds like you forgot to start solandra after you built it. cd solandra-app; ./bin/solandra You can verify it's running with jps look for SolandraServer. On Jul 23, 2011, at 10:52 AM, Jean-Nicolas Boulay Desjardins wrote: > Hi, > > I have a server on RackSpace and it see

Little problems with Solandra

2011-07-23 Thread Jean-Nicolas Boulay Desjardins
Hi, I have a server on RackSpace and it seems that when I use "ant" it makes Apache2 crash. I don't if this is normal? Maybe it's because I have 256MB for RAM. Could it be? Should I get more RAM? Also, when I use the command "ps -A" I don't seem to be able t

Re: Sharing Cassandra with Solandra

2011-06-28 Thread AJ
On 6/27/2011 3:39 PM, David Strauss wrote: On Mon, 2011-06-27 at 15:06 -0600, AJ wrote: Would anyone care to talk about their experiences with using Solandra along side another application that uses Cassandra (also on the same node)? I'm curious about any resource contention issu

Re: Sharing Cassandra with Solandra

2011-06-27 Thread David Strauss
On Mon, 2011-06-27 at 15:06 -0600, AJ wrote: > Would anyone care to talk about their experiences with using Solandra > along side another application that uses Cassandra (also on the same > node)? I'm curious about any resource contention issues or > compatibility between C*

Sharing Cassandra with Solandra

2011-06-27 Thread AJ
Hi everyone, Would anyone care to talk about their experiences with using Solandra along side another application that uses Cassandra (also on the same node)? I'm curious about any resource contention issues or compatibility between C* versions and Sol. Also, I read the developer some

Re: solandra or pig or....?

2011-06-22 Thread Santiago Basulto
Wouldn't it be useful to store your data somewhere structured (Cassandra is obviously an option) and then use MapReduce to store statistics? 2011/6/22 Jake Luciani : > Well solandra is running Cassandra so you can use Cassandra as you do today, > but index some of the data in solr.

Re: solandra or pig or....?

2011-06-22 Thread Jake Luciani
Well solandra is running Cassandra so you can use Cassandra as you do today, but index some of the data in solr. On Jun 22, 2011, at 3:41 AM, Sasha Dolgy wrote: > First, thanks everyone for the input. Appreciate it. The number > crunching would already have been completed, a

Re: solandra or pig or....?

2011-06-22 Thread Sasha Dolgy
First, thanks everyone for the input. Appreciate it. The number crunching would already have been completed, and all statistics per game defined, and inserted into the appropriate CF/row/cols ... So, that being said, Solandra appears to be the right way to go ... except, this would require that

Re: solandra or pig or....?

2011-06-21 Thread Jake Luciani
Right, Solr will not do anything other than basic aggregations (facets) and range queries. On Tue, Jun 21, 2011 at 3:16 PM, Dan Kuebrich wrote: > Solandra is indeed distributed search, not distributed number-crunching. > As a previous poster said, you could imagine structuring the dat

Re: solandra or pig or....?

2011-06-21 Thread Dan Kuebrich
Solandra is indeed distributed search, not distributed number-crunching. As a previous poster said, you could imagine structuring the data in a series of documents with fields containing playername, teamname, position, location, day, time, inning, at bat, outcome, etc. Then you could query to

Re: solandra or pig or....?

2011-06-21 Thread Victor K.
If I may ask Sasha, what exactly are you trying to achieve using SolR (or Solandra, I guess it's about the same) ? Because from what I understood of your problem you need to do statistics on your matches, players etc... Or do you just want to retrieve information that are already been com

Re: solandra or pig or....?

2011-06-21 Thread Jake Luciani
Your application isn't aware of Cassandra only Solr. The idea of Solandra is to use Cassandra as a backend for Solr. Solr has a distributed search mechanism already so by making Solr Cassandra aware it can auto-shard and manage distributed queries for you, with replication and failover et

Re: solandra or pig or....?

2011-06-21 Thread Sasha Dolgy
Without getting overly complicated and long winded ... are there practical references / examples I can review that demonstrate the cassandra/solandra benefitsi had a quick look at https://github.com/tjake/Solandra/wiki/Solandra-Wiki and it wasn't dead obvious to me On Tue, Jun 21, 20

Re: solandra or pig or....?

2011-06-21 Thread Jeremy Hanna
Just wanted to mention that there is also a #solandra irc channel on freenode in case people are interested. On Jun 21, 2011, at 1:26 PM, Mark Kerzner wrote: > Me too! > > I would be interested to know how such queries are done in Solandra. I would > understand it if it create

Re: solandra or pig or....?

2011-06-21 Thread Mark Kerzner
Me too! I would be interested to know how such queries are done in Solandra. I would understand it if it creates a complete Lucene index of everything that's in Cassandra, and adds the text search. Then your query goes against Lucene. But if some data is found in column families in Cass

Re: solandra or pig or....?

2011-06-21 Thread Jake Luciani
Solandra can answer the question you used as an example and it's more of a fit for low-latency ad-hoc reporting then PIG. Pig queries will take minutes not seconds. On Tue, Jun 21, 2011 at 12:12 PM, Sasha Dolgy wrote: > Folks, > > Simple question ... Assuming my current use case

Re: solandra or pig or....?

2011-06-21 Thread Victor Kabdebon
web application and > enabling ad-hoc queries ... it could take anywhere from 2-? > seconds for that query to generate, populate, and return to the > user...? > > On the other hand, I have started to read about Solr / Solandra / > Lucandra can this provide similar functionali

solandra or pig or....?

2011-06-21 Thread Sasha Dolgy
and return to the user...? On the other hand, I have started to read about Solr / Solandra / Lucandra can this provide similar functionality or better ? or is it more geared towards full text search and indexing ... I don't want to get into the habit of guessing what my potential users want

Re: Installing Thrift with Solandra

2011-06-08 Thread Jean-Nicolas Boulay Desjardins
Also how can I backup the data that I loaded. Because in the next reboot I am going to loose all the data that I loaded and like you know it takes time... I tried to copy the folder Solandra in another folder outside the /tmp... But I am not sure that is enough. Thanks! On Wed, Jun 8, 2011 at

Re: Installing Thrift with Solandra

2011-06-08 Thread Jean-Nicolas Boulay Desjardins
Thanks again... Here it gets a bit more complex. I added Solandra to /tmp folder like you told me. And the data also... Everything seems to work. The problem is I am running Solandra in a VM on my Mac OS X the VM is Ubuntu Server. On that VM I have a DNS server... And one of my domain names

Re: Installing Thrift with Solandra

2011-06-08 Thread Krish Pan
4 AM, Jean-Nicolas Boulay Desjardins < jnbdzjn...@gmail.com> wrote: > Krish Pan THANKS! > > Also thank you for making build successful in uppercase :) > > But it seems it is still not working. > > This time when I go into solandra-app directory I get the start-solandra.sh

Re: Installing Thrift with Solandra

2011-06-08 Thread Jean-Nicolas Boulay Desjardins
Krish Pan THANKS! Also thank you for making build successful in uppercase :) But it seems it is still not working. This time when I go into solandra-app directory I get the start-solandra.sh and when I use the command: ./start-solandra.sh I get this: http://dl.dropbox.com/u/20599297/Screen

Re: Installing Thrift with Solandra

2011-06-07 Thread Krish Pan
you are trying to run solandra from resources directory, follow these steps 1) don't use root - use a regular user 2) cd /tmp/ 3) git clone git://github.com/tjake/Solandra.git 4) cd Solandra 5) ant once you get BUILD SUCCESSFUL 6) cd solandra-app 7) ./start-solandra.sh On Tue, Jun 7,

Re: Installing Thrift with Solandra

2011-06-07 Thread Jean-Nicolas Boulay Desjardins
, 2011 at 12:23 PM, Jean-Nicolas Boulay Desjardins < jnbdzjn...@gmail.com> wrote: > Ok > > So I have to install Thrift and Cassandra than Solandra. > > I am asking because I followed the instructions in your Git page but I get > this error: > > # cd solandra-app; ./

Re: Installing Thrift with Solandra

2011-06-07 Thread Jean-Nicolas Boulay Desjardins
Ok So I have to install Thrift and Cassandra than Solandra. I am asking because I followed the instructions in your Git page but I get this error: # cd solandra-app; ./start-solandra.sh -bash: ./start-solandra.sh: No such file or directory Thanks again :) On Tue, Jun 7, 2011 at 7:55 AM, Jake

Re: Installing Thrift with Solandra

2011-06-07 Thread Jake Luciani
This seems to be a common cause of confusion. Let me try again. Solandra doesn't integrate your Cassandra data into solr. It simply provides a scalable backend for solr by Building on Cassandra. The inverted index lives in it's own Cassandra keyspace. What you have in the end is two fu

Re: Installing Thrift with Solandra

2011-06-07 Thread Jake Luciani
ni wrote: > To access Cassandra in Solandra it's the same as regular cassandra.  To > access Solr you use one of the Php Solr > libraries http://wiki.apache.org/solr/SolPHP > > > > > On Mon, Jun 6, 2011 at 11:04 PM, Jean-Nicolas Boulay Desjardins > wrote: > &g

Re: Installing Thrift with Solandra

2011-06-06 Thread Jean-Nicolas Boulay Desjardins
I just saw a post you made on Stackoverflow, where you said: "The Solandra project which is replacing Lucandra no longer uses thrift, only Solr." So I use Solr to access my data in Cassandra? Thanks again... On Tue, Jun 7, 2011 at 1:39 AM, Jean-Nicolas Boulay Desjardins < jnbdzjn

Re: Installing Thrift with Solandra

2011-06-06 Thread Jean-Nicolas Boulay Desjardins
, Jun 6, 2011 at 11:13 PM, Jake Luciani wrote: > To access Cassandra in Solandra it's the same as regular cassandra. To > access Solr you use one of the Php Solr libraries > http://wiki.apache.org/solr/SolPHP > > > > On Mon, Jun 6, 2011 at 11:04 PM, Jean-Nicolas Bou

Re: Installing Thrift with Solandra

2011-06-06 Thread Jake Luciani
To access Cassandra in Solandra it's the same as regular cassandra. To access Solr you use one of the Php Solr libraries http://wiki.apache.org/solr/SolPHP On Mon, Jun 6, 2011 at 11:04 PM, Jean-Nicolas Boulay Desjardins < jnbdzjn...@gmail.com> wrote: > I am trying to insta

Installing Thrift with Solandra

2011-06-06 Thread Jean-Nicolas Boulay Desjardins
I am trying to install Thrift with Solandra. Normally when I just want to install Thrift with Cassandra, I followed this tutorial:https://wiki.fourkitchens.com/display/PF/Using+Cassandra+with+PHP But how can I do the same for Solandra? Thrift with PHP... Using Ubuntu Server. Thanks in advance!

Re: When should I use Solandra?

2011-06-05 Thread Jean-Nicolas Boulay Desjardins
Perfect thanks! On Sun, Jun 5, 2011 at 4:43 AM, Victor Kabdebon wrote: > Again I don't really know the specifics of Solandra but in Solr (so > Solandra being a cousin of Solr it should be true too) you have XML fields > like this : > > Just turn indexed to false and it'

Re: When should I use Solandra?

2011-06-05 Thread Victor Kabdebon
Again I don't really know the specifics of Solandra but in Solr (so Solandra being a cousin of Solr it should be true too) you have XML fields like this : Just turn indexed to false and it's not going to be indexed... Thrift won't affect Solandra at all. 2011/6/4 Jean-Nicolas Bo

Re: When should I use Solandra?

2011-06-04 Thread Jean-Nicolas Boulay Desjardins
Hi, So if I understand Solandra. All the data are in Solandra and you can query them like you would normaly with a normal Cassandra setup and search through them. The data from the indexing of Solr is stored in Cassandra column family... Second, question. I have Thrift already install will it

Re: When should I use Solandra?

2011-06-04 Thread Jake Luciani
On Saturday, June 4, 2011, Kirk Peterson wrote: > I think the OP was asking if you can use the same Cassandra cluster > that Solandra is integrated with to store non-Solandra in a different > keyspace. This would remove the need to run two Cassandra clusters, one for > storing

Re: When should I use Solandra?

2011-06-04 Thread Kirk Peterson
I think the OP was asking if you can use the same Cassandra cluster that Solandra is integrated with to store non-Solandra in a different keyspace. This would remove the need to run two Cassandra clusters, one for storing his Solandra index, and another for his other data. I'm not su

Re: When should I use Solandra?

2011-06-04 Thread Norman Maurer
re my users passwords and at the same > time data for my website that need to be accessible via search. My Question > is should I use two DB: Cassandra (for users passwords) and Solandra (for > the websites data) or can I put everything in Solandra? > Is there a way to stop Solandra

Re: When should I use Solandra?

2011-06-04 Thread Victor Kabdebon
Why do you need Solandra for storing data ? If you want to retrieve data simply use Cassandra. Solandra is for research and indexing it is a search engine. I do not recommand you to store data uniquely in a search engine. Use the following desgin : *Store ALL data in Cassandra then extract from

When should I use Solandra?

2011-06-04 Thread Jean-Nicolas Boulay Desjardins
Hi, I am planning to use Cassandra to store my users passwords and at the same time data for my website that need to be accessible via search. My Question is should I use two DB: Cassandra (for users passwords) and Solandra (for the websites data) or can I put everything in Solandra? Is there a