aniket takarkhede

Results 10 comments of aniket takarkhede

This feature is must, kindly approve pull request.

Two-factor auth support needed

@ystreibel How did u fix this? any solution is helpful. I faced similar issue after upgrade

@viniciuskneves Yes, this issue need to be handled, an record update is important operation as much as create, so we must validate data before update. We should have separate mechanism...

@Ashvin09 Please use Global secondary index on email field, no need of scan operation.

@jasmo2 see the difference ``` // scan all accounts, this time loading all results Account .scan() .loadAll() .exec(callback); ``` and ``` // Load 20 accounts Account .scan() .limit(20) .exec(); ```...

@helloravi If you are using EC2, recommended way is to **use IAM role** to allow DynamoDB access and this will work for Docker apps. Using roles you don't need to...

@ryanfitz Can you please support for this issue, It occurs randomly when have bulk of data. Scenario :- Total records : 5000 so by aws standards we are using batch...

Thanks for quick reply, Yes, I understand size issue so I also tried with passing array of 50 IDs or even less. For your kind info, I have property information...

@RodH257 Yes, I think you have correctly pointed out issue. Alternate solution we did was, chunk records in smaller size and did loop to fetch all records.