diff options
author | 2019-11-01 00:30:30 +0000 | |
---|---|---|
committer | 2019-11-14 14:10:09 +0000 | |
commit | 53c9fab327d1d9a079154b01242cf0930c106989 (patch) | |
tree | 4cc6bc25a290c6ac3e6028122192de1dd9493646 /vnfs/DAaaS/microservices/PythonApps/python-kafkaConsumer-inference-app/src/utils | |
parent | fb9b7baa506e5c92bc243a30364e9f72ecd9c3f1 (diff) |
First working draft of kafka for inference app
Created a python based inference app which can query a given metrics for
a given duration from kafka topic.
Consumer runs on separate thread and doesnt interfere with the main app.
Issue-ID: ONAPARC-528
Signed-off-by: Rajamohan Raj <rajamohan.raj@intel.com>
Change-Id: Ic84ea137b134385246bf11dee2ed6d34b593b956
Diffstat (limited to 'vnfs/DAaaS/microservices/PythonApps/python-kafkaConsumer-inference-app/src/utils')
-rw-r--r-- | vnfs/DAaaS/microservices/PythonApps/python-kafkaConsumer-inference-app/src/utils/utils.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/vnfs/DAaaS/microservices/PythonApps/python-kafkaConsumer-inference-app/src/utils/utils.py b/vnfs/DAaaS/microservices/PythonApps/python-kafkaConsumer-inference-app/src/utils/utils.py new file mode 100644 index 00000000..4ed3b47b --- /dev/null +++ b/vnfs/DAaaS/microservices/PythonApps/python-kafkaConsumer-inference-app/src/utils/utils.py @@ -0,0 +1,8 @@ +class utils: + + def __init__(self): + pass + + def readFile(self, fileName): + pass + |