Commit 6c16e16f authored by Ignacio's avatar Ignacio
Browse files

Elimina hazelcast

parent 17247423
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -8,7 +8,7 @@ services:
        mode: host
    deploy:
      mode: replicated
      replicas: 1
      replicas: 2
      labels:
        traefik.port: "${GEOSERVER_PORT}"
        traefik.docker.network: traefik-net

scripts/hazelcast.template

deleted100644 → 0
+0 −34
Original line number Diff line number Diff line
<?xml version="1.0" encoding="UTF-8"?>
<hazelcast xsi:schemaLocation="http://www.hazelcast.com/schema/config hazelcast-config-2.3.xsd"
           xmlns="http://www.hazelcast.com/schema/config"
           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <group>
    <name>${CLUSTER_NAME}</name>
    <password>${CLUSTER_PASSWORD}</password>
  </group>

  <instanceName>${HOSTNAME}</instanceName>

  <properties>
    <property name="hazelcast.logging.type">log4j</property>
  </properties>

  <network>
    <port auto-increment="false">${HAZELCAST_PORT}</port>
    <join>
      <multicast enabled="false"></multicast>
      <tcp-ip enabled="true">
        <hostname>${CLUSTER_DISCOVERY_URL}</hostname>
      </tcp-ip>
    </join>
  </network>

  <!-- The WPS status map -->
  <map name="wpsExecutionStatusMap">
    <indexes>
      <!-- Add indexes to support the two most common queries -->
      <index ordered="false">executionId</index>
      <index ordered="true">completionTime</index>
    </indexes>
  </map>
</hazelcast>
 No newline at end of file