Eric Newton created ACCUMULO-1800:
-------------------------------------
Summary: delete mutations not working through the Proxy
Key: ACCUMULO-1800
URL: https://issues.apache.org/jira/browse/ACCUMULO-1800
Project: Accumulo
Issue Type: Bug
Components: proxy
Affects Versions: 1.5.0, 1.4.4
Reporter: Eric Newton
Assignee: Eric Newton
Priority: Critical
Fix For: 1.4.5, 1.5.1
Aru Sahni writes:
{quote}
I'm new to Accumulo and am still trying to wrap my head around its ways. To
further that challenge, I'm using Pyaccumulo, which doesn't present much in
terms of available reference material.
Right now I'm trying to understand how Accumulo manages record (key-value pair)
deletions.
conn = Accumulo(host, port, user, password)
table = 'test_table'
conn.create_table(table)
writer = conn.create_batch_writer(table)
mut = Mutation('mut_01')
mut.put(cf='item', cq='name', value='car')
writer.add_mutation(mut)
writer.close()
conn.close()
Will generate a record (found via a shell scan):
mut_01 item:name [] car
However the subsequent mutation...
writer = conn.create_batch_writer(table)
mut = Mutation('mut_01')
mut.put(cf='item', cq='name', is_delete=True)
writer.add_mutation(mut)
writer.close()
Results in:
mut_01 item:name []
How should one expect the deleted row to be represented? That record sticks
around even after I force a compaction of the table. I was expecting it to not
show up in any iterators, or at least provide an easy way to see if the cell
has been deleted.
{quote}
[~ecn] has confirmed the problem.
--
This message was sent by Atlassian JIRA
(v6.1#6144)