-
Notifications
You must be signed in to change notification settings - Fork 25k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cache of clients by name which can be cleared when secure settings get updated.
- Loading branch information
1 parent
54eb461
commit 3db5ae0
Showing
20 changed files
with
821 additions
and
439 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
63 changes: 63 additions & 0 deletions
63
plugins/repository-s3/src/main/java/org/elasticsearch/repositories/s3/AmazonS3Reference.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,63 @@ | ||
/* | ||
* Licensed to Elasticsearch under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch 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.elasticsearch.repositories.s3; | ||
|
||
import org.elasticsearch.common.util.concurrent.AbstractRefCounted; | ||
|
||
import com.amazonaws.services.s3.AmazonS3; | ||
import com.amazonaws.services.s3.AmazonS3Client; | ||
|
||
import org.elasticsearch.common.lease.Releasable; | ||
|
||
/** | ||
* Handles the shutdown of the wrapped {@link AmazonS3Client} using reference | ||
* counting. | ||
*/ | ||
public class AmazonS3Reference extends AbstractRefCounted implements Releasable { | ||
|
||
private final AmazonS3 client; | ||
|
||
AmazonS3Reference(AmazonS3 client) { | ||
super("AWS_S3_CLIENT"); | ||
this.client = client; | ||
} | ||
|
||
/** | ||
* Call when the client is not needed anymore. | ||
*/ | ||
@Override | ||
public void close() { | ||
decRef(); | ||
} | ||
|
||
/** | ||
* Returns the underlying `AmazonS3` client. All method calls are permitted BUT | ||
* NOT shutdown. Shutdown is called when reference count reaches 0. | ||
*/ | ||
public AmazonS3 client() { | ||
return client; | ||
} | ||
|
||
@Override | ||
protected void closeInternal() { | ||
client.shutdown(); | ||
} | ||
|
||
} |
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
Oops, something went wrong.