We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When running cassandra and django in docker swarm, creating an object from a model times out without any errors.
I know the connection works because sync_cassandra successfully creates keyspace and table.
sync_cassandra
# models.py class Temp(DjangoCassandraModel): id = columns.UUID(primary_key=True, default=uuid.uuid4) requested_at = columns.DateTime(default=datetime.datetime.now) # settings.py 'ENGINE': 'django_cassandra_engine', 'NAME': 'rest_api', 'HOST': 'cas', 'OPTIONS': { 'replication': { 'strategy_class': 'SimpleStrategy', 'replication_factor': 1 } } # cqlsh $ cqlsh:rest_api> desc tables; > temp
I have Temp.objects.create() in my view, and that part times out silently
Temp.objects.create()
Any ideas or pointers as to where I should start digging ?
The text was updated successfully, but these errors were encountered:
I'd start with enabling logging
Sorry, something went wrong.
No branches or pull requests
When running cassandra and django in docker swarm, creating an object from a model times out without any errors.
I know the connection works because
sync_cassandra
successfully creates keyspace and table.I have
Temp.objects.create()
in my view, and that part times out silentlyAny ideas or pointers as to where I should start digging ?
The text was updated successfully, but these errors were encountered: