Questions tagged [cassandra]

Use this tag if a question is about cassandra

4 questions
3
votes
1 answer

Cassandra DB: store binary file record via shell

While the dev team works on a REST service to manage binary data in Cassandra, ops would like to store local blobs directly from shell. Is it actually possible via CQL/bash without a Cassandra driver? I could find so far only an example for Ruby.
Ta Mu
  • 6,792
  • 5
  • 43
  • 83
3
votes
1 answer

Cassandra persistence with Docker - is an example of a comprehensive, up-to-date and facts-based guideline for a deployment architecture available?

Being new to this topic, I have found quite many pros and cons about making data persistent while working with dockerized Cassandra. However, most of it was posted in 2016. Now, I understand that it can depend on the specific case, but already…
Ta Mu
  • 6,792
  • 5
  • 43
  • 83
1
vote
1 answer

Ansible Playbook fails start Apache Cassandra

I have been tried ran a Ansible Playboo, but after change the cassandra.yml when the service tries start I received this error bellow: ● cassandra.service - LSB: distributed storage system for structured data Loaded: loaded…
Vader
  • 466
  • 3
  • 15
0
votes
1 answer

Why are valid directives in my Dockerfile apparently being ignored?

Using the following Dockerfile: FROM ubuntu:latest USER root RUN apt-get -y update \ && apt-get -y upgrade \ && apt-get install -y \ python-pip \ nmap \ vim-tiny FROM python:2.7 USER root RUN pip install…