taoensso / faraday

Amazon DynamoDB client for Clojure
https://www.taoensso.com/faraday
Eclipse Public License 1.0
238 stars 84 forks source link

Feature: create/delete/update indexes on update-table #80

Closed ricardojmendez closed 8 years ago

ricardojmendez commented 8 years ago

Expand update-table to support modifying indexes. While UpdateTableRequest has a list of global secondary index updates, if I attempt to add more than one I get:

Subscriber limit exceeded: Only 1 online index can be created or deleted simultaneously per table

So I'll likely restrict it to one operation at a time.

ricardojmendez commented 8 years ago

Unclear from the documentation if we can create multiple local secondary indexes at the same time, will need to test.

ricardojmendez commented 8 years ago

Done implementing global index modifications.