opened Pull Request #3151 on apache/cassandra
#3151 CASSANDRA-19185 Use glove vectors instead of random vectors in vector tests
Pull Request #3118 on apache/cassandra merged by belliottsmith
#3118 Refactor CommandsForKey to simplify and reduce size
Pull Request #82 on apache/cassandra-accord merged by belliottsmith
#82 Refactor CommandsForKey to simplify and reduce size
Pull Request #3077 on apache/cassandra merged by belliottsmith
#3077 CASSANDRA-19305: Ephemeral reads
Pull Request #80 on apache/cassandra-accord merged by belliottsmith
#80 CASSANDRA-19305: Ephemeral reads
Mentioned @cassandra
We are having Cassandra 3.10 in the onprem. We need to perform a live migration, it will be a cluster can you share the documentation of how it needs to be done. Is it more like adding the VM servers as part of the existing onprem cluster ? And...
We are having Cassandra 3.10 in the onprem. We need to perform a live migration, it will be a cluster can you share the documentation of how it needs to be done. Is it more like adding the VM servers as part of the existing onprem cluster ? And then finally do the cutover ? Does an Different Cassandra version be used in Onprem or should we need to go with the same version have any one faced issue while trying replication with two different major / minor version please share your experiences.
Thanks in advance.
Steps for Live migrations, issues faced while performing and cross version replication is possible ?
Mentioned @cassandra
opened Pull Request #3150 on apache/cassandra
#3150 CASSANDRA-19362 3.11 Fix broken include in Storage Engine docs
opened Pull Request #3149 on apache/cassandra
#3149 CASSANDRA-19362 4.0 Fix broken include in Storage Engine docs
opened Pull Request #3148 on apache/cassandra
#3148 CASSANDRA-19362 4.1 Fix broken include in Storage Engine docs
opened Pull Request #3147 on apache/cassandra
#3147 CASSANDRA-19447 Register the measurements of the bootstrap as Dropwizard metrics
commented Pull Request #3121 on apache/cassandra
I believe this is the right CI link: https://app.circleci.com/pipelines/github/bereng/cassandra/1175/workflows/c10ae06a-6d8f-4cfa-8738-46f2534df952 Still green though :-)
opened Pull Request #3146 on apache/cassandra
#3146 Add column for password set date in Auth keyspace
opened Pull Request #3145 on apache/cassandra
#3145 (cassandra-5.0) CASSANDRA-19427
opened Pull Request #3144 on apache/cassandra
#3144 (cassandra-4.1) CASSANDRA-19427
opened Pull Request #3143 on apache/cassandra
#3143 (cassandra-4.0) CASSANDRA-19427
opened Pull Request #3142 on apache/cassandra
#3142 (cassandra-3.11) CASSANDRA-19427
opened Pull Request #3141 on apache/cassandra
#3141 CASSANDRA-19255 Fixing getRangeTo* operations of StorageService mbea running into NPE for local strategy keyspaces.
I have the following service:
const searchByQuery = {
channelId: channelId,
id: models.timeuuidFromString(messageId),
}
const deleteMessage =...I have the following service:
const searchByQuery = {
channelId: channelId,
id: models.timeuuidFromString(messageId),
}
const deleteMessage = util.promisify(models.instance.MessageStore.delete).bind(models.instance.MessageStore);
const deletedMessage = await deleteMessage(searchByQuery);
console.log(deletedMessage)
return "Message Deleted"
}
I want to check if deletion was successful. But deletedMessage always returns the following:
ResultSet {
info: {
queriedHost: '127.0.0.1:9042',
triedHosts: { '127.0.0.1:9042': null },
speculativeExecutions: 0,
achievedConsistency: 1,
traceId: undefined,
warnings: undefined,
customPayload: undefined,
isSchemaInAgreement: true
},
rows: undefined,
rowLength: undefined,
columns: null,
pageState: null,
nextPage: undefined,
nextPageAsync: undefined
}
This is returned even if the data doesnot exist (i.e. deletion did not happen).
I have tried searching for it in docs as well and also tried after_delete hook but to no avail.
Forked a repository apache/cassandra