Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Uncovertruth feature/support dax #785

Open
wants to merge 35 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
2fbdc0b
add dax client
Feb 26, 2018
cb32fdb
add dax_endpoints params
Feb 27, 2018
d54c2d1
fix connection
opapy Feb 27, 2018
6899e9f
rmeove connection ppling
opapy Feb 27, 2018
a81605b
fix rebase problem
opapy Mar 1, 2018
eb6fe2b
rebase
opapy Mar 1, 2018
c67a34a
keep connection pool
opapy Mar 1, 2018
11ceb25
fix setup.py
opapy Mar 5, 2018
a891206
add write and read endpoints
opapy Mar 6, 2018
b878b50
fix write and read endpoints parameter
opapy Mar 6, 2018
33f08d6
fix TableConnection
opapy Mar 6, 2018
850e8e0
add write and read client
opapy Mar 6, 2018
c72e107
add OP_READ
opapy Mar 6, 2018
da357ca
fix merge dict
opapy Mar 6, 2018
09fd44c
fix get client
opapy Mar 8, 2018
45f6645
remove debug message
opapy Mar 8, 2018
fc4ad4f
performance tunning
opapy Mar 8, 2018
b9aa012
fix operation name map
opapy Mar 8, 2018
7eb7a20
remove session argument
opapy Mar 12, 2018
cc7435d
remove session arguments
opapy Mar 12, 2018
65d672e
move api call method
opapy Mar 22, 2018
52afadf
add docs
opapy Mar 22, 2018
7d72267
add amazon-dax-client for requirements-dev.txt
opapy Mar 22, 2018
fb649df
minor-fix to support fallback to dynamodb
vedavidhbudimuri May 5, 2018
950e0bd
only install amazon-dax-cient when python_version>=2.7 and python_ver…
opapy Jul 10, 2018
ac8e6f1
add amazon-dax-client>=1.0.5
opapy Jul 10, 2018
d8eff6d
amazon-dax-client==1.0.5
opapy Jan 28, 2019
da4aa23
amazon-dax-client==1.0.5
opapy Jan 28, 2019
bfca679
upgrade dynamodb-dax-clioent
opapy Jan 28, 2019
5ed46cc
remove amazon-dax-client when py26 test
opapy Jan 28, 2019
de2e01e
goodbye python2.6
opapy Jan 28, 2019
38cd04c
goodbye python2.6
opapy Jan 28, 2019
51e8ee7
Merge pull request #1 from pynamodb/master
vedavidhbudimuri May 11, 2019
d74b70f
Merge branch 'feature/support-dax' of https://github.com/uncovertruth…
vedavidhbudimuri May 17, 2020
e8c17a9
updated constants.pyi
vedavidhbudimuri May 17, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add docs
opapy committed Jan 28, 2019
commit 52afadf2968130911f7497c78131b497aea67bea
18 changes: 18 additions & 0 deletions docs/settings.rst
Original file line number Diff line number Diff line change
@@ -65,6 +65,24 @@ capacity information in responses. If ``False``, scans will fail
should the server not return consumed capacity information in an
effort to prevent unintentional capacity usage..

dax_write_endpoints
------------------

Default: ``[]``

Connect to DAX endpoints when write operations.

PutItem, DeleteItem, UpdateItem, BatchWriteItem These operations are supported.

dax_read_endpoints
------------------

Default: ``[]``

Connect to DAX endpoints when read operations.

GetItem, Scan, BatchGetItem, Query These operations are supported.

Overriding settings
~~~~~~~~~~~~~~~~~~~