I am trying to acquire a lock on a KV pair on consul while updating it, so no one else can update it.
Initially I have
curl -XGET http://localhost:8500/v1/kv/hosts?raw
{"k1":"v1"}
Now I get a session
curl -XPUT http://localhost:8500/v1/session/create
{"ID":"9ed55585-ddda-4605-a926-d1e0b57a9919"}
I then acquire a lock on KV
curl -XPUT http://localhost:8500/v1/kv/hosts?acquire=9ed55585-ddda-4605-a926-d1e0b57a9919
Now when I release and do a GET, my values are empty
curl -XPUT http://localhost:8500/v1/kv/hosts?release=9ed55585-ddda-4605-a926-d1e0b57a9919
curl -XGET http://localhost:8500/v1/kv/hosts?raw => This returns empty
Am I doing something wrong here.
You get nothing back because you did not send any data to write in your
PUT
request to the kv store.Here is the same commands, with some pretty printing.
Create a session
Write a value
Using a Linux "here file", I will write the value "Hello, World" under the
host
key. Remeber to use the session ID you got back from the previous command. Copy/Paste the 3 lines as a single unit.Read the value back
Reading is just a GET, that I piped to a pretty printer.
That base64 blob is the data we wrote the first time
Try to write the value whithout the lock
This does not work like you think. The K/V documentation says this
Delete the session
You could set a TTL to your session and wait for it to expire, but let's delete it.
The value is still there, but not associated with a session anymore:
If you want keys to be deleted when the session expires or is deleted, specify
"Behavior": "delete"
when you create the session