Displaying 20 results from an estimated 138 matches for "cassandra".
2015 Apr 19
4
bash script fails conditional test
Hey all,
I wrote a very basic script to determine if cassandra db is running. I'm
setting a variable called 'pid' to the output of a ps | grep like to grab
the pid of the cassandra process.
#!/bin/bash
pid=$(ps -ef | grep cassandra | grep -v grep | grep -i -v -e grep -e screen
-e s3fs|awk '{print $2}')
if [[ -e $pid ]]
then
echo "C...
2010 May 07
3
Virtualization vs. Cassandra and Hadloop
...or from Google docs: http://docs.google.com/drawings/pub?id=1P3jdSddseG1oSYrtjREWcajizxmxoRIhUHCEw4sDi3k&w=771&h=624So, what I want to do is something like a private cloud storage solution.I belive the http servers and application servers should be set up on virtual VMs, but what about the Cassandra and Hadloop servers, should their be set up on VMs or directly on physical machines? If they should be set up on VMs, the data of Cassandra and Hadloop should be stored in local storage or a Storage Repository?
Thanks,Dennis
_______________________________________________
Xen-users maili...
2015 Apr 20
4
bash script fails conditional test
>
> "-e" means "if file exists". You should use "-n"
That did it!!
[root at web1:~] #./bin/check-cass.sh
Cassandra is running with pid: 26979
This is what the script looks like now:
#!/bin/bash
pid=$(ps -ef | grep cassandra | grep -v grep | grep -i -v -e grep -e screen
-e s3fs|awk '{print $2}')
if [[ -n $pid ]]
then
echo "Cassandra is running with pid: $pid"
else
echo "Cassandra is...
2012 Sep 25
1
mapping data from table to .csv template
...Adrian Cole RE: [WHIRR-117] Composable services Tom White
12 Adrian Cole RE: [WHIRR-117] Composable services Tom White
13 Adrian Cole RE: [WHIRR-117] Composable services Tom White
14 Adrian Cole RE: [WHIRR-117] Composable services Tom White
15 Patrick Hunt RE: [WHIRR-123] Cassandra integration Tom White
16 Patrick Hunt RE: [WHIRR-123] Cassandra integration Andrei Savu
17 Patrick Hunt RE: [WHIRR-123] Cassandra integration Andrei Savu
18 Patrick Hunt RE: [WHIRR-123] Cassandra integration Tom White
19 Patrick Hunt RE: [WHIRR-123] Cassandra integration Tom White
2...
2015 Apr 20
1
bash script fails conditional test
>
> You can probably replace that with a much cleaner pid=$(pidof cassandra).
Good to know! I hadn't heard of pidof before. However this is what I get
when I run it:
[root at web1:~] #pidof cassandra
[root at web1:~] #
Returns nothing. However:
[root at web1:~] #pidof java
27210 11418 10852
Gives me a few pids. Only one of which belongs to cassandra, as I have a...
2010 Jun 19
0
whether scaffolding can be used with cassandra database
hi
I am using cassandra gem 0.8.2 and activerecord-cassandra-adapter by
winebarrel. The database does not support migration. So, things like
scaffolding can be used with Ruby on Rails?
Pls do the needful
--
View this message in context: http://old.nabble.com/whether-scaffolding-can-be-used-with-cassandra-database-tp...
2013 Feb 16
3
cheap cloud providors
...a database. The only
problem is that it doesn't run very well on an t1.micro instance at amazon
and the larger sizes are quite expensive. An m1.small can do the trick,
while still not optimal. So I was wonder if there was any real value in the
cloud or even VPS world where I could setup a small Cassandra ring and go
to town learning the ins and outs of how it operates.
Thanks
Tim
--
GPG me!!
gpg --keyserver pool.sks-keyservers.net --recv-keys F186197B
2003 Apr 03
2
'df' command says partition is full, when it isn't (can't create files, etc)
...problem. The
only thing done between the two instances was a system reboot. Has anyone
seen this problem or have any speculation as to what may be going on here.
There were not reboots or crashes of the system prior to this occurrence, and
the dump indicates a clean fs in both cases
Thanks,
Cassandra
2015 Mar 05
0
SELinux kills Cassandra based website
...at folder, I bet that's one problem.
if you run ls -Z you can see the labels that are present on those folders,
that might be helpful too.
On Wed, Mar 4, 2015 at 8:14 PM, Tim Dunphy <bluethundr at gmail.com> wrote:
> Hey all,
>
> There's a website I help run that uses the Cassandra DB as its database. I
> notice that if I run the web server in SELinux permissive mode, the site
> works fine. But if I put it into enforcing mode, the site goes down with
> this error:
>
> Warning: require_once(/McFrazier/PhpBinaryCql/CqlClient.php): failed to
> open stream: Perm...
2009 Jul 20
0
Cassandra and thrift...
Hi,
anyone have any experience compiling/installing Cassandra and thrift on CentOS?
Thx,
JD
2015 Mar 05
2
SELinux kills Cassandra based website
Hey all,
There's a website I help run that uses the Cassandra DB as its database. I
notice that if I run the web server in SELinux permissive mode, the site
works fine. But if I put it into enforcing mode, the site goes down with
this error:
Warning: require_once(/McFrazier/PhpBinaryCql/CqlClient.php): failed to
open stream: Permission denied in
/var/www/jf-...
2010 Jul 29
2
Fry Plots
Does anyone know how to do a fry plot in R? I have 600-800 points per image, and I really don't want to attempt that manually.
Thank you!
Cassie
[[alternative HTML version deleted]]
2009 Jun 01
2
extensions not being detected consistently
...h Asterisk 1.4.24)
If anyone has seen a problem like this before or has even an inkling of
what it might be, that would be awesome :D Thanks in advance.
My dial plan:
[incoming-our-number]
exten => s,1,Answer
exten => s,n,NoOp(incoming-our-number)
exten => s,n,Background(cassandra/CustomWelcomeMessage) ****This
line is usual fine, I think because the message is short enough that
timing the dialing of the extension is less of an issue.
exten => s,n,GotoIfTime(09:00-17:30,mon-fri,*,*?open)
exten => s,n,Wait(0.5);
exten => s,n,Background(cassandra/OfficeHours)...
2015 Mar 05
1
SELinux kills Cassandra based website
...gt;
> if you run ls -Z you can see the labels that are present on those folders,
> that might be helpful too.
>
> On Wed, Mar 4, 2015 at 8:14 PM, Tim Dunphy <bluethundr at gmail.com> wrote:
>
> > Hey all,
> >
> > There's a website I help run that uses the Cassandra DB as its
> database. I
> > notice that if I run the web server in SELinux permissive mode, the site
> > works fine. But if I put it into enforcing mode, the site goes down with
> > this error:
> >
> > Warning: require_once(/McFrazier/PhpBinaryCql/CqlClient.php): fa...
2012 Mar 23
1
Dovecot and scalable database storage
I saw some interesting mails from TImo back in 2009 talking about the idea
of using something like Cassandra db or similar as a storage platform for
both email and index/logs. I was wondering if this has been discussed
since then, and if there are any plans to support something like this in
the future? I have been playing with Cassandra and found that their
RackAwareStrategy gives you the ability to rep...
2010 Mar 12
1
nosql (it was mogilefs)
...ell, actually I?m trying to figure out if one of those nosql systems can store and scale email systems (ie, mailboxes - instead of maildir). I know mysql is always quoted as an option and discussed sometimes in the list. I think it?s an unnecessary overhead and bottleneck.
As brainstorm. How about Cassandra, Tokyo-Tirant, Redis, and so on. Have you ever worked or tested one of them at production or even testing environment ?
What do you think ?
Best Regards,
Fernando
>---- Original Message ----
>From: Robert Schetterer <robert at schetterer.org>
>To: dovecot at dovecot.org
>Sent:...
2017 Feb 02
6
Compiling Dovecot on Solaris 10
...c passwd passwd-file shadow pam checkpassword
dcrypt ..........: yes
: -bsdauth -sia -ldap -sql -vpopmail
userdbs ........ : static prefetch passwd passwd-file checkpassword
: -ldap -sql -vpopmail -nss
SQL drivers .... :
: -pgsql -mysql -sqlite -cassandra
Full text search : squat
: -lucene -solr
Last version that I have compiled was 2.2.24, version 2.2.25 failed
with error:
In file included from guid.c:6:
sha1.h:80: error: static or type qualifiers in abstract declarator
Is there anyone who can help me?
--
Pagarbiai
Mantas Ge...
2011 May 07
7
kswapd taking 100% cpu with no swap on system
Hi All
I have xeon server with 16 Gb Ram and no Swap memory.I am running
cassandra server on two node in cluster.When there is high load on
server kswapd0 kicks inn and take 100% cpu and make machine very slow
and we need to restart out cassandra server.I have latest kernel
2.6.18-238.9.1.el5.Please let me know how can i fix this issue .Its
hurting us badly this our producti...
2015 Jan 16
5
favorite cheap VPS services
Hey all,
I'm trying to learn how to use some of the big data stores. Specifically I
want to learn how to use CassandraDB and Hadoop. Originally I'd had the
idea of trying to setup a cassandra ring on the Amazon AWS free tier.
However it seems that neither will run on a t2.micro instance.
So I was wondering.. what are some really cheap VPS services that you like
to use for one off projects like this and why. I&...
2018 Nov 23
3
v2.3.4 released
...-migration: POP3 UIDLs weren't added to
>> dovecot.index.cache while mails were saved.
>> - dict clients may have been using 100% CPU while waiting for dict
>> server to finish commands.
>> - doveadm user: Fixed user listing via HTTP API
>> - All levels of Cassandra log messages were logged as Dovecot errors.
>> - http/smtp client may have crashed after SSL handshake
>> - Lua auth converted strings that looked like numbers into numbers.
> The release does not build. Here is a patch to fix the build.
>
>
>
> test-event-stats.c:101:8...