-
-
Notifications
You must be signed in to change notification settings - Fork 109
Support additional attributes and secondary indexes #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
| Only define attributes on the table object that are going to be used as: | ||
|
|
||
| * Table hash key or range key | ||
| * LSI or GSI hash key or range key |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add new line after bullets
README.md
Outdated
| | `global_secondary_index_map` | `[]` | List of maps, that describes additional secondary index properties | No | | ||
|
|
||
|
|
||
| ## A note about dynamodb attributes |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use proper capitalization for DynamoDB
README.md
Outdated
| | `autoscale_min_write_capacity` | `5` | DynamoDB autoscaling min write capacity | No | | ||
| | `autoscale_max_write_capacity` | `20` | DynamoDB autoscaling max write capacity | No | | ||
| | `enable_autoscaler` | `true` | Flag to enable/disable DynamoDB autoscaling | No | | ||
| | `dynamodb_attributes` | `[]` | List of maps, that describe extra dynamodb attributes | No | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
...extra DynamoDB attributes...
|
Will address. |
aknysh
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Jamie-BitFlight
I tested your changes without the new attributes/indexes (for compatibility) and with the new attributes/indexes.
Everything worked.
Thanks for your contribution.
(I'll try to review all other PRs this weekend).
|
Great :) |
|
Thanks @ankysh! |
what