Skip to content

Commit 71875f1

Browse files
OAK-11594 - Converting existing indexes from a type to another leaves the async lane the same (#2173)
Co-authored-by: chibulcu <[email protected]>
1 parent 0a76f3d commit 71875f1

File tree

2 files changed

+67
-0
lines changed

2 files changed

+67
-0
lines changed

oak-core/src/main/java/org/apache/jackrabbit/oak/plugins/index/importer/IndexImporter.java

+21
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
import org.apache.jackrabbit.oak.plugins.index.MetricsUtils;
3737
import org.apache.jackrabbit.oak.plugins.index.importer.AsyncIndexerLock.LockToken;
3838
import org.apache.jackrabbit.oak.plugins.index.upgrade.IndexDisabler;
39+
import org.apache.jackrabbit.oak.plugins.memory.PropertyStates;
3940
import org.apache.jackrabbit.oak.spi.commit.EditorDiff;
4041
import org.apache.jackrabbit.oak.spi.commit.VisibleEditor;
4142
import org.apache.jackrabbit.oak.spi.state.NodeBuilder;
@@ -58,6 +59,8 @@
5859
import static org.apache.jackrabbit.oak.commons.conditions.Validate.checkArgument;
5960
import static java.util.Objects.requireNonNull;
6061
import static org.apache.jackrabbit.oak.plugins.index.IndexConstants.REINDEX_COUNT;
62+
import static org.apache.jackrabbit.oak.plugins.index.IndexConstants.ASYNC_PROPERTY_NAME;
63+
import static org.apache.jackrabbit.oak.plugins.index.IndexConstants.TYPE_PROPERTY_NAME;
6164
import static org.apache.jackrabbit.oak.plugins.index.IndexUtils.INDEXING_PHASE_LOGGER;
6265
import static org.apache.jackrabbit.oak.plugins.index.importer.IndexDefinitionUpdater.INDEX_DEFINITIONS_JSON;
6366
import static org.apache.jackrabbit.oak.plugins.index.importer.NodeStoreUtils.mergeWithConcurrentCheck;
@@ -67,6 +70,10 @@ public class IndexImporter {
6770
* Symbolic name use to indicate sync indexes
6871
*/
6972
static final String ASYNC_LANE_SYNC = "sync";
73+
/**
74+
* Symbolic name use to indicate elasticsearch index type
75+
*/
76+
static final String TYPE_ELASTICSEARCH = "elasticsearch";
7077
/*
7178
* System property name for flag for preserve checkpoint. If this is set to true, then checkpoint cleanup will be skipped.
7279
* Default is set to false.
@@ -200,6 +207,20 @@ void switchLanes() throws CommitFailedException {
200207
if (!indexInfo.newIndex) {
201208
NodeBuilder idxBuilder = NodeStoreUtils.childBuilder(builder, indexInfo.indexPath);
202209
indexPathsToUpdate.add(indexInfo.indexPath);
210+
String idxBuilderType = idxBuilder.getString(TYPE_PROPERTY_NAME);
211+
212+
// check if provided index definitions is of different type than existing one
213+
// also check if one of them is an elasticsearch type
214+
if (idxBuilderType != null &&
215+
!idxBuilderType.equals(indexInfo.type) &&
216+
(idxBuilderType.equals(TYPE_ELASTICSEARCH) || indexInfo.type.equals(TYPE_ELASTICSEARCH))) {
217+
218+
LOG.info("Provided index [{}] has a different type compared to the existing index." +
219+
" Using lane from the index definition provided", indexInfo.indexPath);
220+
221+
PropertyState asyncProperty = PropertyStates.createProperty(ASYNC_PROPERTY_NAME, List.of(indexInfo.asyncLaneName), Type.STRINGS);
222+
idxBuilder.setProperty(asyncProperty);
223+
}
203224
AsyncLaneSwitcher.switchLane(idxBuilder, AsyncLaneSwitcher.getTempLaneName(indexInfo.asyncLaneName));
204225
}
205226
}

oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/index/importer/IndexImporterTest.java

+46
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
import java.nio.file.Files;
2626
import java.nio.file.Path;
2727
import java.text.MessageFormat;
28+
import java.util.List;
2829
import java.util.Properties;
2930
import java.util.Set;
3031

@@ -77,6 +78,7 @@
7778
import static org.apache.jackrabbit.oak.plugins.index.IndexConstants.TYPE_PROPERTY_NAME;
7879
import static org.apache.jackrabbit.oak.plugins.index.IndexUtils.createIndexDefinition;
7980
import static org.apache.jackrabbit.oak.plugins.index.importer.AsyncIndexerLock.NOOP_LOCK;
81+
import static org.apache.jackrabbit.oak.plugins.index.importer.AsyncLaneSwitcher.ASYNC_PREVIOUS;
8082
import static org.apache.jackrabbit.oak.plugins.index.importer.IndexDefinitionUpdater.INDEX_DEFINITIONS_JSON;
8183
import static org.apache.jackrabbit.oak.plugins.memory.EmptyNodeState.EMPTY_NODE;
8284
import static org.junit.Assert.assertEquals;
@@ -142,6 +144,50 @@ public void switchLanes() throws Exception{
142144
assertEquals(AsyncLaneSwitcher.getTempLaneName("async"), idxb.getString(ASYNC_PROPERTY_NAME));
143145
}
144146

147+
@Test
148+
public void switchLanesLuceneToElastic() throws Exception{
149+
NodeBuilder builder = store.getRoot().builder();
150+
builder.child("idx-a").setProperty("type", "elasticsearch");
151+
builder.child("idx-a").setProperty("async", "elastic-async");
152+
153+
store.merge(builder, EmptyHook.INSTANCE, CommitInfo.EMPTY);
154+
createIndexDirs("/idx-a");
155+
156+
builder.child("idx-a").setProperty("type", "lucene");
157+
builder.child("idx-a").setProperty("async", asList("async", "nrt"), Type.STRINGS);
158+
159+
store.merge(builder, EmptyHook.INSTANCE, CommitInfo.EMPTY);
160+
161+
IndexImporter importer = new IndexImporter(store, temporaryFolder.getRoot(), provider, NOOP_LOCK);
162+
importer.switchLanes();
163+
164+
NodeState idxa = NodeStateUtils.getNode(store.getRoot(), "/idx-a");
165+
assertEquals(AsyncLaneSwitcher.getTempLaneName("elastic-async"), idxa.getString(ASYNC_PROPERTY_NAME));
166+
assertEquals(idxa.getStrings(ASYNC_PREVIOUS), List.of("elastic-async"));
167+
}
168+
169+
@Test
170+
public void switchLanesElasticToLucene() throws Exception{
171+
NodeBuilder builder = store.getRoot().builder();
172+
builder.child("idx-a").setProperty("type", "lucene");
173+
builder.child("idx-a").setProperty("async", List.of("async"), Type.STRINGS);
174+
175+
store.merge(builder, EmptyHook.INSTANCE, CommitInfo.EMPTY);
176+
createIndexDirs("/idx-a");
177+
178+
builder.child("idx-a").setProperty("type", "elasticsearch");
179+
builder.child("idx-a").setProperty("async", List.of("elastic-async"), Type.STRINGS);
180+
181+
store.merge(builder, EmptyHook.INSTANCE, CommitInfo.EMPTY);
182+
183+
IndexImporter importer = new IndexImporter(store, temporaryFolder.getRoot(), provider, NOOP_LOCK);
184+
importer.switchLanes();
185+
186+
NodeState idxa = NodeStateUtils.getNode(store.getRoot(), "/idx-a");
187+
assertEquals(AsyncLaneSwitcher.getTempLaneName("async"), idxa.getString(ASYNC_PROPERTY_NAME));
188+
assertEquals(idxa.getStrings(ASYNC_PREVIOUS), List.of("async"));
189+
}
190+
145191
@Test(expected = NullPointerException.class)
146192
public void importData_NoProvider() throws Exception{
147193
NodeBuilder builder = store.getRoot().builder();

0 commit comments

Comments
 (0)