Re: Can you create a cache using Ignite Visor CLI?

2020-05-20 Thread akorensh
you can use the sqlline: https://apacheignite-sql.readme.io/docs/sqlline run some sql: CREATE TABLE Person(ID INTEGER PRIMARY KEY, NAME VARCHAR(100)); INSERT INTO Person(ID, NAME) VALUES (1, 'Ed'), (2, 'Ann'), (3, 'Emma'); You will see a cache created: SQL_PUBLIC_PERSON -- Sent from:

Re: Can you create a cache using Ignite Visor CLI?

2020-05-20 Thread Andrew Munn
It looks like control.sh won't create caches either. How can they be created by a utility in the shell? On Tue, May 19, 2020 at 3:58 PM akorensh wrote: > yes. That is correct: > https://apacheignite-tools.readme.io/docs/command-line-interface > > use the "help cache" command inside the visor

Re: Can you create a cache using Ignite Visor CLI?

2020-05-19 Thread akorensh
yes. That is correct: https://apacheignite-tools.readme.io/docs/command-line-interface use the "help cache" command inside the visor to see all of the capabilities. -- Sent from: http://apache-ignite-users.70518.x6.nabble.com/

Can you create a cache using Ignite Visor CLI?

2020-05-19 Thread Andrew Munn
It looks like the Visor CLI can only operate on existing caches, not create new ones. Is that correct?