Questions tagged [vitess.io]

3 questions
2
votes
1 answer

TRIGGERS in VITESS -> Distributed MySQL

I'm trying to create TRIGGERS in vitess.io Database. (Distributed MySQL) I got the following errors : CREATE TRIGGER insert_guid BEFORE INSERT ON trx FOR EACH ROW SET NEW.sign = UUID(); MySQL a retourné : vtgate: http:/xxxxxx:15000/: syntax error at…
aorfevre
  • 5,034
  • 3
  • 21
  • 51
1
vote
0 answers

Vitess vtctl cannot connect to zookeeper topo server

I am trying to setup a vitess cluster on my local. I chose zookeeper as my topology server and I have used docker-compose to set it up. version: '3.9' services: zoo1: container_name: zks1 image: zookeeper restart: always hostname:…
0
votes
1 answer

Vitess v8 PlanetScale MySQL db constraint error

Using Vitess v8 (PlanetScale DB) Table: CREATE TABLE `Channel` ( `id` INTEGER UNSIGNED NOT NULL AUTO_INCREMENT, `guildId` INTEGER UNSIGNED NOT NULL, `name` VARCHAR(64) NOT NULL, `description` TEXT NULL, `createdAt` DATETIME(3)…