You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2020/09/23 19:43:38 UTC

[incubator-streampipes] branch rel/0.67.0 updated (c114524 -> 64512b9)

This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a change to branch rel/0.67.0
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git.


    from c114524  [STREAMPIPES-243] Configuration of And Processor is broken
     new e9f73b5  [STREAMPIPES-230] Large images are not transmitted
     new 64512b9  [STREAMPIPES-231] Images are not shown in Data Explorer

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 docker-compose.yml | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)


[incubator-streampipes] 01/02: [STREAMPIPES-230] Large images are not transmitted

Posted by ze...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch rel/0.67.0
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit e9f73b51e3d0efaee7a039be5053d9f96eae0bd7
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Wed Sep 23 21:34:30 2020 +0200

    [STREAMPIPES-230] Large images are not transmitted
---
 docker-compose.yml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/docker-compose.yml b/docker-compose.yml
index 72808d2..326cb6a 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -133,6 +133,9 @@ services:
       KAFKA_INTER_BROKER_LISTENER_NAME: PLAINTEXT
       KAFKA_ADVERTISED_HOST_NAME: kafka
       KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181
+      KAFKA_MESSAGE_MAX_BYTES: 5000012
+      KAFKA_FETCH_MESSAGE_MAX_BYTES: 5000012
+      KAFKA_REPLICA_FETCH_MAX_BYTES: 10000000
     volumes:
       - /var/run/docker.sock:/var/run/docker.sock
     logging: *default-logging


[incubator-streampipes] 02/02: [STREAMPIPES-231] Images are not shown in Data Explorer

Posted by ze...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

zehnder pushed a commit to branch rel/0.67.0
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit 64512b93dc2efb469976ef04321c116ca0a3da18
Author: Philipp Zehnder <ze...@fzi.de>
AuthorDate: Wed Sep 23 21:43:02 2020 +0200

    [STREAMPIPES-231] Images are not shown in Data Explorer
---
 docker-compose.yml | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/docker-compose.yml b/docker-compose.yml
index 326cb6a..e72bb01 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -44,6 +44,9 @@ services:
     depends_on:
       - consul
       - couchdb
+    volumes:
+      - backend:/root/.streampipes
+      - files:/spImages
     logging: *default-logging
     networks:
       spnet:
@@ -110,6 +113,8 @@ services:
       - -enable-script-checks=true
       - -ui
     logging: *default-logging
+    volumes:
+      - consul:/consul/data
     networks:
       spnet:
         ipv4_address: 172.31.0.9
@@ -117,6 +122,8 @@ services:
   couchdb:
     image: fogsyio/couchdb:2.3.1
     logging: *default-logging
+    volumes:
+      - couchdb:/opt/couchdb/data
     networks:
       spnet:
 
@@ -137,6 +144,7 @@ services:
       KAFKA_FETCH_MESSAGE_MAX_BYTES: 5000012
       KAFKA_REPLICA_FETCH_MAX_BYTES: 10000000
     volumes:
+      - kafka:/kafka
       - /var/run/docker.sock:/var/run/docker.sock
     logging: *default-logging
     networks:
@@ -145,6 +153,8 @@ services:
   zookeeper:
     image: fogsyio/zookeeper:3.4.13
     logging: *default-logging
+    volumes:
+      - zookeeper:/opt/zookeeper-3.4.13
     networks:
       spnet:
 
@@ -154,10 +164,21 @@ services:
       - INFLUXDB_DATA_ENGINE=tsm1
       - INFLUXDB_REPORTING_DISABLED=false
       - INFLUXDB_ADMIN_ENABLED=true
+    volumes:
+      - influxdb:/var/lib/influxdb
     logging: *default-logging
     networks:
       spnet:
 
+volumes:
+  kafka:
+  files:
+  consul:
+  couchdb:
+  zookeeper:
+  influxdb:
+  backend:
+
 networks:
   spnet:
     name: spnet