dynalite icon indicating copy to clipboard operation
dynalite copied to clipboard

An implementation of Amazon's DynamoDB built on LevelDB

Results 59 dynalite issues
Sort by recently updated
recently updated
newest added

Closes #103 - Run background "scanner" job: using `setInterval` to support legacy Node.js not having Worker threads - The job scans items with the TTL attribute. Then, it delete the...

Started implementing transactWriteItem by mimicking batchWrite function with few modifications. At the moment it is a very crude start. I mainly wanted to get this out to see if this...

I'm using the AWS Java SDK to create a query: ```java new QueryFilter("field_a").eq(true) ``` This works against DynamoDB but fails when using Dynalite with ``` One or more parameter values...

Bumps [async](https://github.com/caolan/async) from 2.6.3 to 2.6.4. Changelog Sourced from async's changelog. v2.6.4 Fix potential prototype pollution exploit (#1828) Commits c6bdaca Version 2.6.4 8870da9 Update built files 4df6754 update changelog 8f7f903...

dependencies

While installing dynalite on an Apple M1 machine I get build error in the package leveldown. dynalite is currently using leveldown@^5.6.0 and upgrading to leveldown@^6.0.3 should prevent the build error....

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

dependencies

An expansion on [this PR from mid-2020](https://github.com/mhart/dynalite/pull/129), this PR implements TransactWriteItems. related to #98

It looks like DynamoDB's transactional operations are not supported? When I attempt to call TransactWriteItems, the AWS SDK throws `UnknownOperationException`. Is this a known issue? Any plan to implement? Related...

When I create multiple tables and one of them has a SortKey, that table does not exist when the test runs. With the following Table Configuration: ```ts export const tableConfigurations:...

Change allows `'SORT'` to be specified as a valid value for `KeyType` when creating a table. None of the current table creation _behavior_ is altered however, `'SORT'` is simply internally...