I’m Not able to load data in dynamo DB using C#. we have used Scan and GetRemaining, which makes the process very slow. is there any alternative option to load a list of data faster from?
Table peopleTable = Table.LoadTable(client, "User_Activities_Log");
//get all records
ScanFilter scanFilter = new ScanFilter();
List<Document> allItems = peopleTable.Scan(scanFilter).GetRemaining();
Takes 5-6 mins to load 900 000 records. it is very much slow than SQL