From be3acb0dd7b712c45955f707ee40992286e13102 Mon Sep 17 00:00:00 2001 From: marcogx Date: Mon, 20 Aug 2018 10:58:30 -0700 Subject: [PATCH] add mongodb had issue --- .idea/workspace.xml | 670 ++++++++---------- data-consumer/pom.xml | 4 + .../iotmicroservices/Constants.java | 13 + .../DataConsumerApplication.java | 52 ++ .../DataConsumerConfiguration.java | 30 - .../controller/DataConsumerController.java | 43 +- .../iotmicroservices/{ => model}/AirData.java | 21 +- .../repository/AirDataRepository.java | 10 + .../src/main/resources/application.yml | 16 +- data-consumer/target/classes/application.yml | 16 +- .../iotmicroservices/Constants.java | 13 + .../DataIngestApplication.java | 9 + .../DataIngestConfiguration.java | 18 - .../controller/DataIngestController.java | 6 +- .../src/main/resources/application.yml | 1 - data-ingest/target/classes/application.yml | 1 - .../DataSimulatorApplication.java | 19 +- .../{AirData.java => model/AirRawData.java} | 6 +- docker-compose.yml | 5 - docker-mongodb/data/db/WiredTiger | 2 + docker-mongodb/data/db/WiredTiger.lock | 1 + docker-mongodb/data/db/WiredTiger.turtle | 6 + docker-mongodb/data/db/WiredTiger.wt | Bin 0 -> 77824 bytes docker-mongodb/data/db/WiredTigerLAS.wt | Bin 0 -> 4096 bytes docker-mongodb/data/db/_mdb_catalog.wt | Bin 0 -> 36864 bytes .../db/collection-0--8088163348535167796.wt | Bin 0 -> 4096 bytes .../db/collection-0--984580125546635896.wt | Bin 0 -> 16384 bytes .../db/collection-2--8088163348535167796.wt | Bin 0 -> 4096 bytes .../db/collection-2--984580125546635896.wt | Bin 0 -> 36864 bytes .../db/collection-4--8088163348535167796.wt | Bin 0 -> 36864 bytes .../db/collection-4--984580125546635896.wt | Bin 0 -> 32768 bytes .../metrics.2018-08-19T13-33-01Z-00000 | Bin 0 -> 163292 bytes .../metrics.2018-08-19T14-25-15Z-00000 | Bin 0 -> 11912 bytes .../metrics.2018-08-19T14-25-42Z-00000 | Bin 0 -> 168342 bytes .../metrics.2018-08-19T17-41-08Z-00000 | Bin 0 -> 633103 bytes .../data/db/diagnostic.data/metrics.interim | Bin 0 -> 14370 bytes .../data/db/index-1--8088163348535167796.wt | Bin 0 -> 4096 bytes .../data/db/index-1--984580125546635896.wt | Bin 0 -> 16384 bytes .../data/db/index-3--8088163348535167796.wt | Bin 0 -> 4096 bytes .../data/db/index-3--984580125546635896.wt | Bin 0 -> 36864 bytes .../data/db/index-5--8088163348535167796.wt | Bin 0 -> 32768 bytes .../data/db/index-5--984580125546635896.wt | Bin 0 -> 32768 bytes .../data/db/index-6--8088163348535167796.wt | Bin 0 -> 32768 bytes .../data/db/index-6--984580125546635896.wt | Bin 0 -> 32768 bytes .../data/db/journal/WiredTigerLog.0000000004 | Bin 0 -> 104857600 bytes .../db/journal/WiredTigerPreplog.0000000001 | Bin 0 -> 104857600 bytes .../db/journal/WiredTigerPreplog.0000000002 | Bin 0 -> 104857600 bytes docker-mongodb/data/db/mongod.lock | 1 + docker-mongodb/data/db/sizeStorer.wt | Bin 0 -> 36864 bytes docker-mongodb/data/db/storage.bson | Bin 0 -> 114 bytes docker-mongodb/docker-compose.yml | 15 + docker-rabbitmq/docker-compose.yml | 6 + etc-hosts-need-modify.txt | 2 - cloudsetup.txt => setup.txt | 6 +- .../artgeektech/iotmicroservices/Common.java | 7 - 55 files changed, 493 insertions(+), 506 deletions(-) create mode 100644 data-consumer/src/main/java/com/artgeektech/iotmicroservices/Constants.java delete mode 100644 data-consumer/src/main/java/com/artgeektech/iotmicroservices/configuration/DataConsumerConfiguration.java rename data-consumer/src/main/java/com/artgeektech/iotmicroservices/{ => model}/AirData.java (53%) create mode 100644 data-consumer/src/main/java/com/artgeektech/iotmicroservices/repository/AirDataRepository.java create mode 100644 data-ingest/src/main/java/com/artgeektech/iotmicroservices/Constants.java delete mode 100644 data-ingest/src/main/java/com/artgeektech/iotmicroservices/configuration/DataIngestConfiguration.java rename data-simulator/src/main/java/com/artgeektech/iotmicroservices/{AirData.java => model/AirRawData.java} (65%) delete mode 100644 docker-compose.yml create mode 100644 docker-mongodb/data/db/WiredTiger create mode 100644 docker-mongodb/data/db/WiredTiger.lock create mode 100644 docker-mongodb/data/db/WiredTiger.turtle create mode 100644 docker-mongodb/data/db/WiredTiger.wt create mode 100644 docker-mongodb/data/db/WiredTigerLAS.wt create mode 100644 docker-mongodb/data/db/_mdb_catalog.wt create mode 100644 docker-mongodb/data/db/collection-0--8088163348535167796.wt create mode 100644 docker-mongodb/data/db/collection-0--984580125546635896.wt create mode 100644 docker-mongodb/data/db/collection-2--8088163348535167796.wt create mode 100644 docker-mongodb/data/db/collection-2--984580125546635896.wt create mode 100644 docker-mongodb/data/db/collection-4--8088163348535167796.wt create mode 100644 docker-mongodb/data/db/collection-4--984580125546635896.wt create mode 100644 docker-mongodb/data/db/diagnostic.data/metrics.2018-08-19T13-33-01Z-00000 create mode 100644 docker-mongodb/data/db/diagnostic.data/metrics.2018-08-19T14-25-15Z-00000 create mode 100644 docker-mongodb/data/db/diagnostic.data/metrics.2018-08-19T14-25-42Z-00000 create mode 100644 docker-mongodb/data/db/diagnostic.data/metrics.2018-08-19T17-41-08Z-00000 create mode 100644 docker-mongodb/data/db/diagnostic.data/metrics.interim create mode 100644 docker-mongodb/data/db/index-1--8088163348535167796.wt create mode 100644 docker-mongodb/data/db/index-1--984580125546635896.wt create mode 100644 docker-mongodb/data/db/index-3--8088163348535167796.wt create mode 100644 docker-mongodb/data/db/index-3--984580125546635896.wt create mode 100644 docker-mongodb/data/db/index-5--8088163348535167796.wt create mode 100644 docker-mongodb/data/db/index-5--984580125546635896.wt create mode 100644 docker-mongodb/data/db/index-6--8088163348535167796.wt create mode 100644 docker-mongodb/data/db/index-6--984580125546635896.wt create mode 100644 docker-mongodb/data/db/journal/WiredTigerLog.0000000004 create mode 100644 docker-mongodb/data/db/journal/WiredTigerPreplog.0000000001 create mode 100644 docker-mongodb/data/db/journal/WiredTigerPreplog.0000000002 create mode 100644 docker-mongodb/data/db/mongod.lock create mode 100644 docker-mongodb/data/db/sizeStorer.wt create mode 100644 docker-mongodb/data/db/storage.bson create mode 100644 docker-mongodb/docker-compose.yml create mode 100644 docker-rabbitmq/docker-compose.yml delete mode 100644 etc-hosts-need-modify.txt rename cloudsetup.txt => setup.txt (82%) delete mode 100644 src/main/java/com/artgeektech/iotmicroservices/Common.java diff --git a/.idea/workspace.xml b/.idea/workspace.xml index ff1189f..243a6ae 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -2,17 +2,29 @@ - - - - - - + + + + + + + + + + + + - + + + + + + + @@ -33,126 +45,151 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -217,11 +262,11 @@ - -