BARNEY
(BARNEY)
December 5, 2011, 5:08am
1
Any java API to copy the data from one index to another index and
delete the copied data from old index as soon as it gets copied?
kimchy
(Shay Banon)
December 5, 2011, 7:23pm
2
No, you need to write it yourself.
On Mon, Dec 5, 2011 at 7:08 AM, BARNEY kalyanc007@gmail.com wrote:
Any java API to copy the data from one index to another index and
delete the copied data from old index as soon as it gets copied?
BARNEY
(BARNEY)
December 6, 2011, 5:04am
3
/*
* Copyright 2011 Peter Karich, peat_hal 'at' users 'dot' sourceforge 'dot' net.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.jetwick.es;
import de.jetwick.data.DbObject;
import de.jetwick.util.AnyExecutor;
import de.jetwick.util.Helper;
This file has been truncated. show original
I am taking the above site as reference.will I get better results with it
if I have large size indices?
On Tue, Dec 6, 2011 at 12:53 AM, Shay Banon kimchy@gmail.com wrote:
No, you need to write it yourself.
On Mon, Dec 5, 2011 at 7:08 AM, BARNEY kalyanc007@gmail.com wrote:
Any java API to copy the data from one index to another index and
delete the copied data from old index as soon as it gets copied?