You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Start the emulator with gcloud emulators firestore start --host-port=127.0.0.1:10901 --database-mode=datastore-mode
Install the python deps: pip install google-cloud-datastore==2.19.0
Run the above python script
[REQUIRED] Expected behavior
Runs successfully, without errors, every time
[REQUIRED] Actual behavior
Command fails with
[Aborted('Transaction lock timeout.'), Aborted('Transaction lock timeout.'), Aborted('Transaction lock timeout.'), Aborted('Transaction lock timeout.'), Aborted('Transaction lock timeout.'), Aborted('Transaction lock timeout.'), Aborted('Transaction lock timeout.'), Aborted('Transaction lock timeout.'), Aborted('Transaction lock timeout.'), Aborted('Transaction lock timeout.')]
Traceback (most recent call last):
File "/Users/artoale/dev/gcloudc/./example.py", line 69, in <module>
main()
File "/Users/artoale/dev/gcloudc/./example.py", line 64, in main
run_test()
File "/Users/artoale/dev/gcloudc/./example.py", line 58, in run_test
assert number_successful_writes != 0
I've tested the same script against two real firestore in datastore mode instances (one configured with pessimistic concurrency, one with optimistic) - running the script multiple time.
Transaction failing because of lock timeout make complete sense, but I would expect at least one transaction (typically the first to acquire the lock with a pessimistic model) to pass - but the test shows that they do not
The text was updated successfully, but these errors were encountered:
Hey @artoale, thanks for creating a detailed report. I really appreciate it! I’ll also raise this to our engineering so they can take a look. Sharing the mcve here.
[REQUIRED] Environment info
firebase-tools: Using the gcloud cli version 511.0.0, firestore emulator: 1.19.9
Platform: macOS (arm), python client library
[REQUIRED] Test case
[REQUIRED] Steps to reproduce
[REQUIRED] Expected behavior
Runs successfully, without errors, every time
[REQUIRED] Actual behavior
Command fails with
I've tested the same script against two real firestore in datastore mode instances (one configured with pessimistic concurrency, one with optimistic) - running the script multiple time.
Transaction failing because of lock timeout make complete sense, but I would expect at least one transaction (typically the first to acquire the lock with a pessimistic model) to pass - but the test shows that they do not
The text was updated successfully, but these errors were encountered: