ngordon17

Results 10 comments of ngordon17

It does not retry calls. What is your use case for doing this? You'd probably only want to retry if you are receiving a ConditionalCheckFailedException.

When you configure Dynamoid, you need to set the adapter configuration option to 'aws_sdk' rather than the default 'aws-sdk' option, which is incorrect. This pulls in the correct adapter for...

Just add this wherever you do the initialization for your site or in spec_helper.rb if you just want to run tests. Dynamoid.configure do |config| config.adapter = 'aws_sdk' end

I think it's because you made created at an index which converted that field to be a string instead of a diatomite. Hence your datetime is no longer "greater_than" the...

Did you check to make sure that the table you created in the AWS console wasn't still provisioning?

.size and .bytesize on a string are the same thing since a character is a byte and .size returns the number of characters. Also, the size limit applies to the...

No. You'd need to use another framework to do transactions or implement them yourself. Transactions are also really inefficient in Dynamo, you probably don't want to use them unless you...

There's one provided byAWS for Java, but to my knowledge none for Ruby. You'd have to create your own.

@jasoncox the issue has nothing to do with partitioning. @wagaboy you are getting this behavior because you are saving the field and Dynamoid is automatically filling in the 'id' field...