File tree Expand file tree Collapse file tree 7 files changed +21
-12
lines changed
Expand file tree Collapse file tree 7 files changed +21
-12
lines changed Original file line number Diff line number Diff line change 11# Changelog
22All notable changes to rae-helm will be documented in this file.
33
4+ ## 2019-04-18
5+ - Logging now is set from ` settings ` and not from ENV variable
6+
7+
8+ ## 2019-04-17
9+ - Settings implemented with simple-settings package.
10+ - Faust version updated to 1.5.4
11+
12+ ## 2019-04-04
13+ - Integration with Schema registry finished
14+ - Custom Codec and Serializer added
15+ - Schema Registry client added
16+ - New faust application called Users added.
17+
418## 2019-03-17
519- First release
620- ` docker-compose ` finished with ` zookeeper ` , ` kafka ` and ` schema-registry `
7- - ` Page views ` and ` Leader Election ` packages added.
21+ - ` Page views ` and ` Leader Election ` packages added.
Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ Useful ENVIRONMENT variables that you may change:
4040| --------| --------------| ---------|
4141| WORKER | Entrypoint in setup.py | ` example ` |
4242| WORKER_PORT | Worker port | ` 6066 ` |
43- | WORKER_LOGLEVEL | Log level for the worker | ` info ` . |
4443| KAFKA_BOOSTRAP_SERVER | Kafka servers | ` kafka://kafka:9092 ` |
4544| KAFKA_BOOSTRAP_SERVER_NAME | Kafka server name| ` kafka ` |
4645| KAFKA_BOOSTRAP_SERVER_PORT | Kafka server port | ` 9092 ` |
Original file line number Diff line number Diff line change @@ -11,7 +11,6 @@ services:
1111 environment :
1212 - WORKER=example
1313 - WORKER_PORT=6066
14- - WORKER_LOGLEVEL=info
1514 - KAFKA_BOOTSTRAP_SERVER=kafka://kafka:9092
1615 - KAFKA_BOOSTRAP_SERVER_NAME=kafka
1716 - KAFKA_BOOSTRAP_SERVER_PORT=9092
Original file line number Diff line number Diff line change 55
66from simple_settings import settings
77
8-
9- SCHEMA_REGISTRY_URL = settings .SCHEMA_REGISTRY_URL
10-
118# Initialize Schema Registry Client
12- client = CachedSchemaRegistryClient (url = SCHEMA_REGISTRY_URL )
9+ client = CachedSchemaRegistryClient (url = settings . SCHEMA_REGISTRY_URL )
1310
1411avro_user_schema = SchemaFromJSONData ({
1512 "type" : "record" ,
Original file line number Diff line number Diff line change 33
44export SIMPLE_SETTINGS=settings
55
6- $WORKER worker -l $WORKER_LOGLEVEL - -web-port=$WORKER_PORT
6+ $WORKER worker --web-port=$WORKER_PORT
Original file line number Diff line number Diff line change 1818 },
1919 'handlers' : {
2020 'console' : {
21- 'level' : 'DEBUG ' ,
21+ 'level' : 'INFO ' ,
2222 'class' : 'logging.StreamHandler' ,
2323 'formatter' : 'default' ,
2424 },
2525 },
2626 'loggers' : {
27- '' : {
27+ 'example ' : {
2828 'handlers' : ['console' ],
29- 'level' : 'DEBUG ' ,
29+ 'level' : 'INFO ' ,
3030 },
3131 },
3232}
Original file line number Diff line number Diff line change 1212
1313setup (
1414 name = 'faust-example' ,
15- version = '0.0 .1' ,
15+ version = '1.1 .1' ,
1616 description = 'Faust example with Docker Compose' ,
1717 long_description = '''
1818 Example running Faust with Docker Compose (zookeeper, kafka and schema-registry)
You can’t perform that action at this time.
0 commit comments