Re: Upgradesstables - PerSSTableIndexWriter.java:211 - Rejecting value

2020-03-09 Thread Surbhi Gupta
Just to add further , I could get the code reference as below: https://github.com/xedin/sasi/blob/master/src/java/org/apache/cassandra/db/index/sasi/disk/PerSSTableIndexWriter.java while (analyzer.hasNext()) { ByteBuffer token = analyzer.next(); int size = token.remaining(); if (token.remaining()

Re: Upgradesstables - PerSSTableIndexWriter.java:211 - Rejecting value

2020-03-09 Thread Surbhi Gupta
https://javadoc.io/static/org.apache.cassandra/cassandra-all/3.11.4/constant-values.html#org.apache.cassandra.index.sasi.disk.OnDiskIndexBuilder.MAX_TERM_SIZE The MAX_TERM_SIZE value is 1024 Can we change it ? The messages below is INFO but because it is saying "Rejecting value" , I would like t

slurm for cluster job scheduling and coordination

2020-03-09 Thread Carl Mueller
Between repairs, rolling restarts, scheduled maintenance bounces, backups, upgrades, etc there are lots of cluster-wide tasks that would be nice to be scheduled and viewed. Slurm appears to have some features that support this but might be heavyweight considering its primary application is superco

Re: Upgradesstables - PerSSTableIndexWriter.java:211 - Rejecting value

2020-03-09 Thread Surbhi Gupta
We have SASI index . Any solution ? On Thu, 5 Mar 2020 at 15:20, Surbhi Gupta wrote: > Hi, > > We are in process of upgrading from 3.11.0 to 3.115 . > While upgrading SSTables we are noticing messages like below in system.log. > What are the significance of these messages? > > INFO [CompactionE

Re: Data not persisted in Cassandra docker

2020-03-09 Thread Cedrick Lunven
Hi, here is a sample docker-compose.yaml for what you need. version: '2' services: cassandra: image: cassandra:3.11.5 ports: - 7000:7000 - 7001:7001 - 7199:7199 - 9042:9042 - 9160:9160 ulimits: memlock: -1 volumes: - ~/cassandra/:/var/li

Re: Data not persisted in Cassandra docker

2020-03-09 Thread Hannu Kröger
You need to mount volumes from the host system or docker volumes to container to have data persisted. See section "Where to Store Data” in https://hub.docker.com/_/cassandra Hannu > On 9. Mar 2020, at 11.25, Valentina Ivanova wrote: > > Hello! > > I am u

Data not persisted in Cassandra docker

2020-03-09 Thread Valentina Ivanova
Hello! I am using Cassandra 3.11.5 from docker. I created a keyspace and a table in it and inserted some data into the table. Before stopping the container I executed nodetool flush to persist the data. However, upon starting the container after the weekend, the keyspace, table and data were no