forked from apache/jackrabbit-oak
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OAK-6087: Avoid reads from MongoDB primary
Automatically use client sessions when running on MongoDB 3.6, otherwise fall back to the previous behaviour. The feature can be disabled with a system property: -Doak.mongo.clientSession=false Travis runs an additional build for oak-store-document on a MongoDB replica-set and a readPreference of secondaryPreferred git-svn-id: https://svn.apache.org/repos/asf/jackrabbit/oak/trunk@1832110 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
Showing
31 changed files
with
1,018 additions
and
193 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
...java/org/apache/jackrabbit/oak/plugins/document/mongo/CompositeServerMonitorListener.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
/* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. | ||
* The ASF licenses this file to You 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 org.apache.jackrabbit.oak.plugins.document.mongo; | ||
|
||
import java.util.List; | ||
import java.util.concurrent.CopyOnWriteArrayList; | ||
|
||
import com.mongodb.event.ServerHeartbeatFailedEvent; | ||
import com.mongodb.event.ServerHeartbeatStartedEvent; | ||
import com.mongodb.event.ServerHeartbeatSucceededEvent; | ||
import com.mongodb.event.ServerMonitorListener; | ||
|
||
/** | ||
* A composite {@link ServerMonitorListener}. | ||
*/ | ||
class CompositeServerMonitorListener implements ServerMonitorListener { | ||
|
||
private final List<ServerMonitorListener> listeners = new CopyOnWriteArrayList<>(); | ||
|
||
void addListener(ServerMonitorListener listener) { | ||
listeners.add(listener); | ||
} | ||
|
||
void removeListener(ServerMonitorListener listener) { | ||
listeners.remove(listener); | ||
} | ||
|
||
@Override | ||
public void serverHearbeatStarted(ServerHeartbeatStartedEvent event) { | ||
listeners.forEach(l -> l.serverHearbeatStarted(event)); | ||
} | ||
|
||
@Override | ||
public void serverHeartbeatSucceeded(ServerHeartbeatSucceededEvent event) { | ||
listeners.forEach(l -> l.serverHeartbeatSucceeded(event)); | ||
} | ||
|
||
@Override | ||
public void serverHeartbeatFailed(ServerHeartbeatFailedEvent event) { | ||
listeners.forEach(l -> l.serverHeartbeatFailed(event)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
43 changes: 0 additions & 43 deletions
43
.../src/main/java/org/apache/jackrabbit/oak/plugins/document/mongo/MongoClusterListener.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.