Hi Guys,

I 'd like to have isolated caches/tables for multiple tenants. In mysql I
can do it by creating databases per tenant. Is it possible to do something
like this in Ignite?
I can create unique tables per tenant (for example
<table-name>-<tenant-name>) but it's very uncomfortable in use.

Also I'm trying to understand how Ignite caches maps to Ignite SQL tables.
For example I create simple cache with the following configuration

<bean id="cacheConfiguration"
class="org.apache.ignite.configuration.CacheConfiguration">
    <property name="cacheMode" value="PARTITIONED"/>
    <property name="name" value="mycache"/>
</bean>

Is it possible to query this cache via SQL? What table name should be in
query?

Thanks,
Maxim

Reply via email to