Strange,
could you paste here output of:
$ grep -n exec ./bin/cassandra
On Mon, Mar 31, 2014 at 8:05 PM, Tim Dunphy wrote:
> Is SELinux enabled?
>
>
> Nope! It's disabled.
>
>
> On Mon, Mar 31, 2014 at 2:50 PM, Michael Shuler wrote:
>
>> Is SELinux enabled?
>>
>
>
>
> --
> GPG me!!
>
> gpg --
> /bin/bash
> [root@beta:~] #exec
>
>
> Why it suddenly looses that understanding when it runs the cassandra start
> script, I have no clue.
>
> I even tried changing the script from sh to bash (!#/bin/sh to
> !#/bin/bash). No luck.
>
> Thanks
> Tim
>
Hi Clint,
I'm guessing you are using vagrant. The thing is cassandra-chef-cookbook
use template cassandra.yaml.erb, where you can find:
"broadcast_address: <%= node[:cassandra][:broadcast_address] %>" which in
turn is equal to "node[:ipaddress]".
Value of node[:ipaddress] depends on how do you con
Hi Tim,
exec is a shell builtin command, what kind of shell do you use?
Please run:
$ echo $SHELL
$ exec
On Sat, Mar 29, 2014 at 11:10 PM, Tim Dunphy wrote:
> hey all..
>
> love using the cassandra database. however I've just installed 2.0.6 onto
> a new host running CentOS 6.5 and when I
oop/lib/commons-cli-1.2.jar:/usr/share/dse/hadoop/lib/commons-codec-1.4.jar:/usr/share/dse/hadoop/lib/commons-collections-3.2.1.jar:/usr/share/dse/hadoop/lib/commons-configuration-1.6.jar:/usr/share/dse/hadoop/lib/commons-digester-1.8.jar:/usr/share/dse/hadoop/lib/commons-el-1.0.jar:/usr/share/ds
Hi,
RSS or VIRT?
Could you paste output of:
$ ps -p `jps | awk '/CassandraDaemon/ {print $1}'` uww
please?
On Wed, Mar 26, 2014 at 5:20 PM, prem yadav wrote:
> Hi,
> in another thread, I has mentioned that we had issue with Cassandra
> getting killed by kernel due to OOM. Downgrading to jdk6_
ParNew GC (used by default in cassandra) uses 'stop-the-world' algorithm,
which means your application has to be stopped to do gc.
You can run jstat command to monitor gc activity and check if your write
performance is related to GC, eg:
$ jstat -gc 1s
But it shouldn't drop throughtput to 0 ops/s.
Hi,
you should set 'listen_address' to ip address of eth4.
'listen_address' is for communication between cassandra nodes (not clients).
Btw I hope you don't use NFS for commit log directory.
--
cheers
mc
On Wed, Mar 19, 2014 at 5:14 AM, Le Xu wrote:
> I'm currently using Cassandra 1.23 and