You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@accumulo.apache.org by "Terry P." <te...@gmail.com> on 2013/06/06 20:35:10 UTC

Okay to purge trace table?

Greetings all,
We have a million entries in the trace table in one of our Accumulo
clusters and a million and a half in another.  We haven't manually enabled
any tracing activities, and in looking at the entries, they seem to be
generated by Accumulo does on its own (compact, wal, getFileStatus,
minorCompactionStarted, minorCompaction, prep, commit, etc).

Does Accumulo maintain this table or do I / should I manually purge it from
time to time?  If it's on us to maintain it, are there any guidelines or a
procedure for doing so?

Thanks in advance,
Terry

Re: Okay to purge trace table?

Posted by Sean Busbey <bu...@cloudera.com>.
On Thu, Jun 6, 2013 at 9:00 PM, David Medinets <da...@gmail.com>wrote:

> Does it make sense to create a JIRA ticket asking for an age-off iterator
> to be the default on the trace table? Maybe set for something like two
> weeks? If we don't add a default age-off iterator, where should the
> documentation be changed to talk about this topic? Does the user manual
> talk about the trace table?
>
>
I added a ticket for it not being in the user manual under the 1.6
documentation umbrella ticket.

https://issues.apache.org/jira/browse/ACCUMULO-1502


-- 
Sean

Re: Okay to purge trace table?

Posted by Mike Drob <md...@mdrob.com>.
David,

I already created a ticket for it -
https://issues.apache.org/jira/browse/ACCUMULO-1501

-Mike


On Thu, Jun 6, 2013 at 9:00 PM, David Medinets <da...@gmail.com>wrote:

> Does it make sense to create a JIRA ticket asking for an age-off iterator
> to be the default on the trace table? Maybe set for something like two
> weeks? If we don't add a default age-off iterator, where should the
> documentation be changed to talk about this topic? Does the user manual
> talk about the trace table?
>
>
> On Thu, Jun 6, 2013 at 3:54 PM, Eric Newton <er...@gmail.com> wrote:
>
>> You could put an age-off iterator on it, or just purge it from
>> time-to-time.
>>
>> I probably should have configured the trace table with an age-off filter
>> by default.  But for now, you need to manually manage the data.
>>
>> You can use delete rows to wipe the table efficiently:
>>
>>  shell > deleterows -f -t trace
>>
>> -Eric
>>
>>
>> On Thu, Jun 6, 2013 at 2:35 PM, Terry P. <te...@gmail.com> wrote:
>>
>>> Greetings all,
>>> We have a million entries in the trace table in one of our Accumulo
>>> clusters and a million and a half in another.  We haven't manually enabled
>>> any tracing activities, and in looking at the entries, they seem to be
>>> generated by Accumulo does on its own (compact, wal, getFileStatus,
>>> minorCompactionStarted, minorCompaction, prep, commit, etc).
>>>
>>> Does Accumulo maintain this table or do I / should I manually purge it
>>> from time to time?  If it's on us to maintain it, are there any guidelines
>>> or a procedure for doing so?
>>>
>>> Thanks in advance,
>>> Terry
>>>
>>
>>
>

Re: Okay to purge trace table?

Posted by Luke Brassard <lu...@sqrrl.com>.
For what it's worth, you can disable the tracing altogether by leaving the 'tracers' file blank. 

Sent from mobile.

On Jun 6, 2013, at 21:00, David Medinets <da...@gmail.com> wrote:

> Does it make sense to create a JIRA ticket asking for an age-off iterator to be the default on the trace table? Maybe set for something like two weeks? If we don't add a default age-off iterator, where should the documentation be changed to talk about this topic? Does the user manual talk about the trace table?
> 
> 
> On Thu, Jun 6, 2013 at 3:54 PM, Eric Newton <er...@gmail.com> wrote:
>> You could put an age-off iterator on it, or just purge it from time-to-time.
>> 
>> I probably should have configured the trace table with an age-off filter by default.  But for now, you need to manually manage the data.
>> 
>> You can use delete rows to wipe the table efficiently:
>> 
>>  shell > deleterows -f -t trace
>> 
>> -Eric
>> 
>> 
>> On Thu, Jun 6, 2013 at 2:35 PM, Terry P. <te...@gmail.com> wrote:
>>> Greetings all,
>>> We have a million entries in the trace table in one of our Accumulo clusters and a million and a half in another.  We haven't manually enabled any tracing activities, and in looking at the entries, they seem to be generated by Accumulo does on its own (compact, wal, getFileStatus, minorCompactionStarted, minorCompaction, prep, commit, etc).
>>> 
>>> Does Accumulo maintain this table or do I / should I manually purge it from time to time?  If it's on us to maintain it, are there any guidelines or a procedure for doing so?
>>> 
>>> Thanks in advance,
>>> Terry
> 

Re: Okay to purge trace table?

Posted by David Medinets <da...@gmail.com>.
Does it make sense to create a JIRA ticket asking for an age-off iterator
to be the default on the trace table? Maybe set for something like two
weeks? If we don't add a default age-off iterator, where should the
documentation be changed to talk about this topic? Does the user manual
talk about the trace table?


On Thu, Jun 6, 2013 at 3:54 PM, Eric Newton <er...@gmail.com> wrote:

> You could put an age-off iterator on it, or just purge it from
> time-to-time.
>
> I probably should have configured the trace table with an age-off filter
> by default.  But for now, you need to manually manage the data.
>
> You can use delete rows to wipe the table efficiently:
>
>  shell > deleterows -f -t trace
>
> -Eric
>
>
> On Thu, Jun 6, 2013 at 2:35 PM, Terry P. <te...@gmail.com> wrote:
>
>> Greetings all,
>> We have a million entries in the trace table in one of our Accumulo
>> clusters and a million and a half in another.  We haven't manually enabled
>> any tracing activities, and in looking at the entries, they seem to be
>> generated by Accumulo does on its own (compact, wal, getFileStatus,
>> minorCompactionStarted, minorCompaction, prep, commit, etc).
>>
>> Does Accumulo maintain this table or do I / should I manually purge it
>> from time to time?  If it's on us to maintain it, are there any guidelines
>> or a procedure for doing so?
>>
>> Thanks in advance,
>> Terry
>>
>
>

Re: Okay to purge trace table?

Posted by "Terry P." <te...@gmail.com>.
Thanks Eric.  Given my newness to Accumulo I just wanted to ensure I didn't
break anything by purging it.

I'll look at setting an age-off filter on it to avoid having to manage it
manually.

Thanks!


On Thu, Jun 6, 2013 at 2:54 PM, Eric Newton <er...@gmail.com> wrote:

> You could put an age-off iterator on it, or just purge it from
> time-to-time.
>
> I probably should have configured the trace table with an age-off filter
> by default.  But for now, you need to manually manage the data.
>
> You can use delete rows to wipe the table efficiently:
>
>  shell > deleterows -f -t trace
>
> -Eric
>
>
> On Thu, Jun 6, 2013 at 2:35 PM, Terry P. <te...@gmail.com> wrote:
>
>> Greetings all,
>> We have a million entries in the trace table in one of our Accumulo
>> clusters and a million and a half in another.  We haven't manually enabled
>> any tracing activities, and in looking at the entries, they seem to be
>> generated by Accumulo does on its own (compact, wal, getFileStatus,
>> minorCompactionStarted, minorCompaction, prep, commit, etc).
>>
>> Does Accumulo maintain this table or do I / should I manually purge it
>> from time to time?  If it's on us to maintain it, are there any guidelines
>> or a procedure for doing so?
>>
>> Thanks in advance,
>> Terry
>>
>
>

Re: Okay to purge trace table?

Posted by Eric Newton <er...@gmail.com>.
You could put an age-off iterator on it, or just purge it from time-to-time.

I probably should have configured the trace table with an age-off filter by
default.  But for now, you need to manually manage the data.

You can use delete rows to wipe the table efficiently:

 shell > deleterows -f -t trace

-Eric


On Thu, Jun 6, 2013 at 2:35 PM, Terry P. <te...@gmail.com> wrote:

> Greetings all,
> We have a million entries in the trace table in one of our Accumulo
> clusters and a million and a half in another.  We haven't manually enabled
> any tracing activities, and in looking at the entries, they seem to be
> generated by Accumulo does on its own (compact, wal, getFileStatus,
> minorCompactionStarted, minorCompaction, prep, commit, etc).
>
> Does Accumulo maintain this table or do I / should I manually purge it
> from time to time?  If it's on us to maintain it, are there any guidelines
> or a procedure for doing so?
>
> Thanks in advance,
> Terry
>