ecto_adapters_dynamodb icon indicating copy to clipboard operation
ecto_adapters_dynamodb copied to clipboard

DynamoDB adapter for Elixir's Ecto Database layer.

Results 23 ecto_adapters_dynamodb issues
Sort by recently updated
recently updated
newest added
trafficstars

As of December, 2018, Dynamo supports transactions - we'd like to support these in the adapter as well.

to-do

At the moment, using a query to search for more than 100 records on a composite primary key will fail, when using an 'all/in/and... in...' queries, such as ``` from...

to-do

We currently support modifications to the provisioned throughput of a global secondary index via the following migration syntax: ``` alter table(:cat) do modify :name, :string, provisioned_throughput: [3,2] end ``` however,...

to-do

Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.28.5 to 0.29.0. Changelog Sourced from ex_doc's changelog. v0.29.0 (2022-10-19) Enhancements Support cheatsheets as .cheatmd files Bug fix Collapse sidebar when resizing page even if stored in...

dependencies

Bumps [ecto_sql](https://github.com/elixir-ecto/ecto_sql) from 3.8.3 to 3.9.0. Changelog Sourced from ecto_sql's changelog. v3.9.0 (2022-09-27) Enhancements [migrations] Support primary_key configuration options in table [migrations] Add :nulls_distinct option for unique indexes [postgres] Support...

dependencies

Bumps [ex_doc](https://github.com/elixir-lang/ex_doc) from 0.30.7 to 0.31.1. Changelog Sourced from ex_doc's changelog. v0.31.1 (2024-01-11) Enhancements Make the sidebar horizontally resizable Show the sidebar button and search bar on scroll up on...

dependencies

Bumps [dialyxir](https://github.com/jeremyjh/dialyxir) from 1.3.0 to 1.4.3. Release notes Sourced from dialyxir's releases. 1.4.3 Fixed Warnings with line & column. Formatting of :record_match warning. 1.4.1 Bump minimal Elixir version to 1.12....

dependencies

Bumps [ecto_sql](https://github.com/elixir-ecto/ecto_sql) from 3.8.3 to 3.11.1. Changelog Sourced from ecto_sql's changelog. v3.11.1 (2023-12-07) Enhancements [Ecto.Migration] Add :generated option to columns [Ecto.Migration] Add index storage parameters (via :options) for Postgres Bug...

dependencies

`ecto_adapters_dynamodb 3.3.3` specifies a dependency on `ecto_sql ~> 3.6` but I could not get it to work with `ecto_sql 3.9.2` and `ecto 3.9.4`. On `ecto.migrate` it would fail with this...

I was wondering if there's any configuration that I can use in Ecto or the adapter itself that can allow me to change the name of a DynamoDB table at...