dynalite icon indicating copy to clipboard operation
dynalite copied to clipboard

Add support for live creating/deleting GlobalSecondaryIndexes

Open mhart opened this issue 9 years ago • 1 comments

http://aws.amazon.com/releasenotes/Amazon-DynamoDB/1151140518858718

mhart avatar Mar 02 '15 23:03 mhart

Hi Michael

Just a +1 on this 👍

I'm building an SQL library on top of aws-sdk and using [email protected] for npm tests and I have

DROP INDEX idx_name ON tbl_name

which translates to aws-sdk .updateTable(...)

{
	"TableName": "tbl_name",
	"GlobalSecondaryIndexUpdates": [
		{
			"Delete": {
				"IndexName": "idx_name"
			}
		}
	]
}

still returns the index in place

would help also just to change theIndexStatus to DELETING and disable further operations on it, even if the index is not deleted 😄

adrianpraja avatar May 25 '18 08:05 adrianpraja