fee-mendes

Results 23 issues of fee-mendes

We have received an inquiry in field due to [README.md](https://github.com/scylladb/java-driver/blob/scylla-3.x/README.md) mentioning the existence of a `TokenAwareHostPolicy` which is misleading and the driver has no references to that: ```shell java-driver$ grep...

documentation

**TLDR;** it makes no sense to have a recommended feature that is not the default It's been long since Scylla

Seen at: ```shell TASK [ansible-scylla-node : Copy the certificates into their proper locations] ************************************************************************************************************************************ changed: [172.31.23.8] => (item=./ssl/ca/testcluster-ca.crt) changed: [172.31.23.8] => (item=./ssl/172.31.23.8/172.31.23.8.crt) fatal: [172.31.23.8]: FAILED! => {"msg": "an error occurred...

This series addresses two OpenJDK related inconsistencies across Ubuntu/Debian/CentOS: As Debian 10 onward no longer ship with OpenJDK 8, we bump its version to OpenJDK 11. Similarly, we also let...

When the source playbook is executed with `become: True` its relevant TLS certificates will be owned by root. This causes a problem, because later on when trying to copy we...

This series introduces an early check to determine whether Scylla is already installed on the target system. It provides a mechanism to prevent incorrectly (and dangerously) upgrading a system which...

This commit is a rework on the steps to upgrade a cluster. In particular, the previous version didn't upgraded nodes serially, nor would abort the entire process in case of...

As seen in Debian 10: ```shell TASK [ansible-scylla-node : Install Java] ************************************************************************************************************************************************************************* fatal: [181.10.10.125]: FAILED! => {"changed": false, "msg": "No package matching 'openjdk-8-jre-headless' is available"} ``` Details under https://lists.debian.org/debian-java/2019/04/msg00036.html Resolution...

When `preserveTimestamps: true` [determineCopyType](https://github.com/scylladb/scylla-migrator/blob/master/src/main/scala/com/scylladb/migrator/readers/Cassandra.scala#L27:L31) throws when a collection is found within the given source table. This approach - however - prevents one to preserve timestamps and TTLs for regular columns...

Consider that: Source table is: ``` id int PRIMARY KEY, value int, value2 int, value 3 int ``` Target is: ``` id int, value int, value2 int, PRIMARY KEY(id, value)...