That is right - you cannot use SHMEM connection type if you have no local
Ignite. SHMEM means "shared memory" and requires local Ignite.
Change IGFS endpoint type to TCP (below replace __HOST__ and __PORT__ with
IP and port of any host running Ignite):
<property name="ipcEndpointConfiguration">
<bean class="org.apache.ignite.igfs.IgfsIpcEndpointConfiguration">
<property name="type" value="TCP" />
<property name="host" value="__HOST__" />
<property name="port" value="__PORT__" />
</bean>
</property>