@@ -73,10 +73,9 @@ The default setup of the configuration is to apply autoscaling to all tables,
73
73
allowing for a no touch quick setup.
74
74
75
75
dynamodb-lambda-autoscale takes a different approach to autoscaling
76
- configuration compared to other community projects. Rather than making changes
77
- to a config file dynamodb-lambda-autoscale provides a function 'getTableUpdate'
78
- which must be implemented.
79
-
76
+ configuration compared to other community projects. Rather than making well
77
+ defined changes to a config file this provides a callback function called
78
+ 'getTableUpdate' which must be implemented.
80
79
81
80
``` javascript
82
81
{
@@ -103,7 +102,8 @@ provisioned throughput and the consumed throughput for the past minute.
103
102
Table updates will only be sent to AWS if the values are different for the
104
103
current, this approach follows the popular code first pattern used in React.
105
104
106
- In most cases the default 'ConfigurableProvisioner' supplied will provide
105
+ In most cases the default [ Config.js] ( ./src/Config.js ) which uses the supplied
106
+ [ ConfigurableProvisioner.js] ( ./src/ConfigurableProvisioner.js ) will provide
107
107
enough functionality out of box such that additional coding is not required.
108
108
The default provisioner provides the following features.
109
109
@@ -133,7 +133,7 @@ implementation.
133
133
134
134
## Dependencies
135
135
136
- dynamodb-lambda-autoscale has the following main dependencies:
136
+ This project has the following main dependencies:
137
137
+ aws-sdk - Access to AWS services
138
138
+ winston - Logging
139
139
+ dotenv - Environment variable configuration useful for lambda
0 commit comments