|
|
Bob.Thorman@... 2012-09-10, 21:56
Anyone have a snippet on how to apply a ColumnQualifierFilter to a BatchScanner that has a VersioningIterator (any iterator for that matter)?
Bob Thorman Engineering Fellow L-3 Communications, ComCept 1700 Science Place Rockwall, TX 75032 (972) 772-7501 work [EMAIL PROTECTED] [EMAIL PROTECTED]
+
Bob.Thorman@... 2012-09-10, 21:56
-
Re: ColumnQualifierFilter
Billie Rinaldi 2012-09-10, 22:13
On Mon, Sep 10, 2012 at 2:56 PM, <[EMAIL PROTECTED]> wrote:
> Anyone have a snippet on how to apply a ColumnQualifierFilter to a > BatchScanner that has a VersioningIterator (any iterator for that > matter)? >
You don't have to apply the ColumnQualifierFilter yourself. Just use the fetchColumn(Text colFam, Text colQual) method of the BatchScanner.
Billie
> > Bob Thorman > Engineering Fellow > L-3 Communications, ComCept > 1700 Science Place > Rockwall, TX 75032 > (972) 772-7501 work > [EMAIL PROTECTED] > [EMAIL PROTECTED] > > >
+
Billie Rinaldi 2012-09-10, 22:13
-
RE: ColumnQualifierFilter
Bob.Thorman@... 2012-09-10, 22:21
Billie
That's what I'm doing at the moment, but I'd like to give the iterator a collection of CF/CQ to filter on. Is that possible?
From: Billie Rinaldi [mailto:[EMAIL PROTECTED]] Sent: Monday, September 10, 2012 17:14 To: [EMAIL PROTECTED] Subject: Re: ColumnQualifierFilter
On Mon, Sep 10, 2012 at 2:56 PM, <[EMAIL PROTECTED]> wrote:
Anyone have a snippet on how to apply a ColumnQualifierFilter to a
BatchScanner that has a VersioningIterator (any iterator for that matter)? You don't have to apply the ColumnQualifierFilter yourself. Just use the fetchColumn(Text colFam, Text colQual) method of the BatchScanner.
Billie
Bob Thorman Engineering Fellow L-3 Communications, ComCept 1700 Science Place Rockwall, TX 75032 (972) 772-7501 <tel:%28972%29%20772-7501> work [EMAIL PROTECTED] [EMAIL PROTECTED]
+
Bob.Thorman@... 2012-09-10, 22:21
-
RE: ColumnQualifierFilter
Adam Fuchs 2012-09-10, 23:02
fetchColumn is agglomerative, so if you call it multiple times it will fetch multiple columns.
Adam On Sep 10, 2012 6:25 PM, <[EMAIL PROTECTED]> wrote:
> Billie**** > > ** ** > > That’s what I’m doing at the moment, but I’d like to give the iterator a > collection of CF/CQ to filter on. Is that possible?**** > > ** ** > > *From:* Billie Rinaldi [mailto:[EMAIL PROTECTED]] > *Sent:* Monday, September 10, 2012 17:14 > *To:* [EMAIL PROTECTED] > *Subject:* Re: ColumnQualifierFilter**** > > ** ** > > On Mon, Sep 10, 2012 at 2:56 PM, <[EMAIL PROTECTED]> wrote:**** > > Anyone have a snippet on how to apply a ColumnQualifierFilter to a**** > > BatchScanner that has a VersioningIterator (any iterator for that > matter)?**** > > > You don't have to apply the ColumnQualifierFilter yourself. Just use the > fetchColumn(Text colFam, Text colQual) method of the BatchScanner. > > Billie > > **** > > > Bob Thorman > Engineering Fellow > L-3 Communications, ComCept > 1700 Science Place > Rockwall, TX 75032 > (972) 772-7501 work > [EMAIL PROTECTED] > [EMAIL PROTECTED] > > **** > > ** ** >
+
Adam Fuchs 2012-09-10, 23:02
-
Re: ColumnQualifierFilter
Eric Newton 2012-09-11, 01:45
+1 for using the word "agglomerative"
On Mon, Sep 10, 2012 at 7:02 PM, Adam Fuchs <[EMAIL PROTECTED]> wrote:
> fetchColumn is agglomerative, so if you call it multiple times it will > fetch multiple columns. > > Adam > On Sep 10, 2012 6:25 PM, <[EMAIL PROTECTED]> wrote: > >> Billie**** >> >> ** ** >> >> That’s what I’m doing at the moment, but I’d like to give the iterator a >> collection of CF/CQ to filter on. Is that possible?**** >> >> ** ** >> >> *From:* Billie Rinaldi [mailto:[EMAIL PROTECTED]] >> *Sent:* Monday, September 10, 2012 17:14 >> *To:* [EMAIL PROTECTED] >> *Subject:* Re: ColumnQualifierFilter**** >> >> ** ** >> >> On Mon, Sep 10, 2012 at 2:56 PM, <[EMAIL PROTECTED]> wrote:**** >> >> Anyone have a snippet on how to apply a ColumnQualifierFilter to a**** >> >> BatchScanner that has a VersioningIterator (any iterator for that >> matter)?**** >> >> >> You don't have to apply the ColumnQualifierFilter yourself. Just use the >> fetchColumn(Text colFam, Text colQual) method of the BatchScanner. >> >> Billie >> >> **** >> >> >> Bob Thorman >> Engineering Fellow >> L-3 Communications, ComCept >> 1700 Science Place >> Rockwall, TX 75032 >> (972) 772-7501 work >> [EMAIL PROTECTED] >> [EMAIL PROTECTED] >> >> **** >> >> ** ** >> >
+
Eric Newton 2012-09-11, 01:45
|
|