ему подсунуть?
А Kubernetes Operator CE?
Operator CE tarantool: config: schema: spaces: ....
https://github.com/tarantool/ansible-cartridge/blob/1.12.0/doc/app_config.md судя по всему cartridge_app_config: schema: body: spaces:
Добрый день! Что-то странное. Пишет вот такую ошибку: TASK [tarantool.cartridge : Configure application config via router-1] ****************************************************************************************************************************** fatal: [router-1 -> 172.29.9.125]: FAILED! => {"changed": false, "msg": "Config patch failed: '\"172.29.9.125:3303\": Incompatible schema: spaces[\"user_info\"] //sharding_key (expected nil, got table)'"} Схема такая: --- spaces: user_info: engine: memtx is_local: false temporary: false format: - { name: 'bucket_id', type: 'unsigned', is_nullable: false } - { name: 'user_id', type: 'unsigned', is_nullable: false } - { name: 'subject_id', type: 'unsigned', is_nullable: false } - { name: 'login', type: 'string', is_nullable: false } - { name: 'created', type: 'unsigned', is_nullable: false } - { name: 'deleted_at', type: 'unsigned', is_nullable: false } - { name: 'json', type: 'string', is_nullable: false } indexes: - name: primary type: TREE unique: true parts: - { path: 'user_id', is_nullable: false, type: 'unsigned' } - { path: 'subject_id', is_nullable: false, type: 'unsigned' } - name: bucket_id type: TREE unique: false parts: - { path: 'bucket_id', is_nullable: false, type: 'unsigned' } sharding_key: - user_id При этом в интеграционном тесте все проходит: local coordinator = cluster.main_server.net_box local f, err = fio.open('../../schema.yaml',{'O_RDONLY'}) t.assert_equals(err, nil) local schema = f:read() f:close() local _, err = coordinator:call('cartridge_set_schema', {schema}) t.assert_equals(err, nil) local sch = coordinator:call('cartridge_get_schema', {}) t.assert_equals(sch, schema) local _, err = coordinator:call('crud.insert_many',{'user_info', {{nil, 1, 1, 'admin', 0, 0, '{}'}}}) t.assert_equals(err, nil) local data, err = coordinator:call('crud.select',{'user_info',{{'=','user_id',1}}}) t.assert_equals(err, nil) t.assert_equals(#(data.rows), 1) t.assert_equals(data.rows[1][4], 'admin')
А можно увидеть конфигурацию кластера?
Обсуждают сегодня