Changes
Page history
Create GCZ IBM Working Config
authored
May 24, 2023
by
Anuj Gupta
Show whitespace changes
Inline
Side-by-side
GCZ-IBM-Working-Config.md
0 → 100644
View page @
954fe510
Transformer Image: Source Code to Image
Working Details for IBM
Image: gridgain/community:8.8.11
OPTION_LIBS: ignite-kubernetes,ignite-rest-http,ignite-geospatial
CONFIG_URI: file:///ignite/config/node-configuration.xml
JVM_OPTS: -DIGNITE_WAL_MMAP=false
Node-Configuration:
```
<?xml version="1.0" encoding="UTF-8"?>
<beans
xmlns=
"http://www.springframework.org/schema/beans"
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation=
"http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd"
>
<bean
class=
"org.apache.ignite.configuration.IgniteConfiguration"
>
<property
name=
"workDirectory"
value=
"/ignite/work"
/>
<!-- Enable peer class loading. -->
<property
name=
"peerClassLoadingEnabled"
value=
"true"
/>
<property
name=
"dataStorageConfiguration"
>
<bean
class=
"org.apache.ignite.configuration.DataStorageConfiguration"
>
<property
name=
"defaultDataRegionConfiguration"
>
<bean
class=
"org.apache.ignite.configuration.DataRegionConfiguration"
>
<property
name=
"persistenceEnabled"
value=
"true"
/>
</bean>
</property>
<property
name=
"walPath"
value=
"/ignite/wal"
/>
<property
name=
"walArchivePath"
value=
"/ignite/walarchive"
/>
</bean>
</property>
<property
name=
"discoverySpi"
>
<bean
class=
"org.apache.ignite.spi.discovery.tcp.TcpDiscoverySpi"
>
<property
name=
"ipFinder"
>
<bean
class=
"org.apache.ignite.spi.discovery.tcp.ipfinder.kubernetes.TcpDiscoveryKubernetesIpFinder"
>
<constructor-arg>
<bean
class=
"org.apache.ignite.kubernetes.configuration.KubernetesConnectionConfiguration"
>
<property
name=
"namespace"
value=
"og-cicd"
/>
<property
name=
"serviceName"
value=
"ignite-service"
/>
</bean>
</constructor-arg>
</bean>
</property>
</bean>
</property>
</bean>
</beans>
```
https://community.opengroup.org/osdu/platform/consumption/geospatial/-/blob/f5eaa22cab3db328eef0bb5de169bfd8459f0ac4/osdu_gcz_transformer/pom.xml
\ No newline at end of file