Michael McCandless
7aada44da3
Absorb ImmutableSettings into Settings
2015-05-26 09:36:17 -04:00
Robert Muir
3b029b924c
fix license headers
2015-05-22 17:47:19 -04:00
Robert Muir
0d3bd6f5fa
remove logging properties
2015-05-22 09:24:35 -04:00
Robert Muir
8dabf10c26
remove tabs
2015-05-22 00:08:15 -04:00
Robert Muir
0c92e167ae
switch to plugin pom
2015-05-21 22:51:52 -04:00
Robert Muir
9f1333e620
remove duplicate test config
2015-05-21 16:48:40 -04:00
Robert Muir
d0a514e666
engage forbidden apis
2015-05-21 10:34:01 -04:00
David Pilato
e47a4a68f0
update documentation with release 2.5.1
2015-05-20 23:27:51 +02:00
David Pilato
5ff807cb01
update documentation with release 2.4.2
2015-05-20 23:20:21 +02:00
David Pilato
2d4fd39c60
Check MD5 while doing snapshot
...
There is a feature available in S3 that clients can use to ensure data integrity on upload. Whenever an object is PUT to an S3 bucket, the client is able to get back the `MD5` base64 encoded and check that it's the same `MD5` as the local one.
For reference, please see the [S3 PutObject API](http://docs.aws.amazon.com/AmazonS3/latest/API/RESTObjectPUT.html ).
Closes #186 .
2015-05-20 17:26:29 +02:00
David Pilato
9206b0db35
[doc] correct S3 policy for multiparts
...
for multipart to work correctly you need to also include the necessary actions in the policy.
```json
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:ListBucket",
"s3:GetBucketLocation",
"s3:ListBucketMultipartUploads",
"s3:ListBucketVersions"
],
"Resource": [
"arn:aws:s3:::yourbucket"
]
},
{
"Effect": "Allow",
"Action": [
"s3:PutObject",
"s3:GetObject",
"s3:DeleteObject",
"s3:PutObjectAcl",
"s3:AbortMultipartUpload",
"s3:ListMultipartUploadParts"
],
"Resource": [
"arn:aws:s3:::yourbucket/*"
]
}
]
}
```
Closes #214
(cherry picked from commit 62966ad)
(cherry picked from commit 25a37a5)
(cherry picked from commit e72af19)
2015-05-20 17:01:47 +02:00
Robert Muir
551f2da722
Use tests.jvms=1 like the old parallelism of 1
2015-05-13 23:13:59 -04:00
Robert Muir
2f00ebbabc
Use ThirdParty annotation and remove duplicate test config.
...
See https://github.com/elastic/elasticsearch-parent/issues/41
2015-05-13 22:33:38 -04:00
Robert Muir
c1f25b0245
enable security manager in tests
2015-05-13 13:32:01 -04:00
Robert Muir
98b765839f
Mark frequently failing test methods AwaitsFix until #211 is sorted out.
2015-05-12 20:58:07 -04:00
Robert Muir
8ce8527af9
disable security manager until #210 has been addressed.
2015-05-11 21:32:47 -04:00
Robert Muir
963f60f4d4
remove unnecessary prop
2015-05-11 21:26:09 -04:00
Robert Muir
2e7726791d
Remove outdated policy file
2015-05-11 19:44:53 -04:00
Robert Muir
5e672bdd55
enable security manager in tests
2015-05-11 19:39:51 -04:00
Robert Muir
ae323a4742
Merge pull request #208 from rmuir/disable_response_metadata_cache
...
Disable response metadata cache.
2015-05-11 08:54:07 -04:00
Robert Muir
d8283abf08
Disable response metadata cache in this ClientConfiguration as well.
2015-05-08 12:41:43 -04:00
Robert Muir
a36de1b4e3
Disable response metadata cache.
...
This cache is only used for diagnostic purposes, but
can force objects from every response to the old generation.
Fixes #193
2015-05-08 12:32:26 -04:00
Robert Muir
3aab63cfa2
Tests: set path.home in AbstractAwsTest
2015-05-05 14:14:51 -04:00
Robert Muir
8ed09b20cf
Tests: fix compilation error
2015-05-05 14:11:07 -04:00
David Pilato
e00c099f18
Fix non working update dynamic settings
...
Described in https://github.com/elastic/elasticsearch/issues/10614 , it's not possible with cloud discovery plugin to update dynamic settings anymore.
```sh
curl -XPUT localhost:9200/_cluster/settings -d '{
"persistent" : {
"discovery.zen.minimum_master_nodes" : 3
},
"transient" : {
"discovery.zen.minimum_master_nodes" : 3
}
}'
```
gives
```json
{"acknowledged":true,"persistent":{},"transient":{}}
```
This patch makes that working again.
(cherry picked from commit 37d6897)
(cherry picked from commit 7a8c7b0ed5601dc71b8d3376cd197b8e0db2bbbd)
Conflicts:
src/main/java/org/elasticsearch/discovery/ec2/Ec2Discovery.java
2015-04-29 13:51:49 +02:00
David Pilato
16d376e714
[test] Cleanup Directory and Searcher mock code
...
Related to https://github.com/elastic/elasticsearch/pull/10853
Closes #205 .
2015-04-29 11:24:54 +02:00
David Pilato
899e84c01e
Remove `ElasticsearchIllegalArgumentException` and `ElasticsearchIllegalStateException` in favor of the JDK one
...
Related to https://github.com/elastic/elasticsearch/issues/10794
Closes #204 .
2015-04-29 11:22:28 +02:00
David Pilato
39776944d5
Add EC2/S3 Signer API setting
...
If you are using a compatible EC2 or S3 service, they might be using an older API to sign the requests.
You can set your compatible signer API using `cloud.aws.signer` (or `cloud.aws.ec2.signer` and `cloud.aws.s3.signer`) with the right signer to use.
Defaults to `AWS4SignerType`.
Supported today (time when this commit is done):
* `QueryStringSignerType`
* `AWS3SignerType`
* `AWS4SignerType`
* `NoOpSignerType`
Closes #155 .
(cherry picked from commit 33b18b4)
(cherry picked from commit 9809af5)
2015-04-24 12:47:11 +02:00
David Pilato
a723875148
update documentation with release 2.5.0
2015-03-25 10:35:48 +01:00
David Pilato
09993f30bf
Update aws-sdk-java to 1.9.23
...
Release notes:
* [1.9.23](https://aws.amazon.com/releasenotes/Java/0061646886197506 )
* [1.9.22](https://aws.amazon.com/releasenotes/Java/9983269688843537 )
* [1.9.21](https://aws.amazon.com/releasenotes/Java/0068314282259743 )
* [1.9.20.1](https://aws.amazon.com/releasenotes/Java/1468424988909152 )
* [1.9.20](https://aws.amazon.com/releasenotes/Java/4095479451567110 )
* [1.9.19](https://aws.amazon.com/releasenotes/Java/7152067748916749 )
* [1.9.18](https://aws.amazon.com/releasenotes/Java/8255923333358616 )
* [1.9.17](https://aws.amazon.com/releasenotes/Java/7976814583460560 )
* [1.9.16](https://aws.amazon.com/releasenotes/Java/7930704610010512 )
* [1.9.15](https://aws.amazon.com/releasenotes/Java/7196148869312092 )
* [1.9.14](https://aws.amazon.com/releasenotes/Java/5550164873229724 )
* [1.9.13](https://aws.amazon.com/releasenotes/Java/4588838060473154 )
* [1.9.12](https://aws.amazon.com/releasenotes/Java/4184046784243318 )
* [1.9.11](https://aws.amazon.com/releasenotes/Java/4181470878749498 )
* [1.9.10](https://aws.amazon.com/releasenotes/Java/7263787800932935 )
* [1.9.9](https://aws.amazon.com/releasenotes/Java/1369906126177804 )
(cherry picked from commit 16a2f39)
(cherry picked from commit 5e13c68)
(cherry picked from commit 471f755)
2015-03-25 10:06:05 +01:00
David Pilato
6f403f3c73
Move to elastic owner
...
(cherry picked from commit ec9d00f)
(cherry picked from commit 2a4642e)
2015-03-25 09:57:24 +01:00
David Pilato
9f87d180f3
Move parent after artifact coordinates
2015-03-25 09:56:34 +01:00
David Pilato
6f1efd24e4
Create `es-1.5` branch
2015-03-16 12:42:08 -07:00
paul-e-cooley
cb7beec5b2
Separate proxy traffic for ec2 and s3
...
Based on PR #178 by @paul-e-cooley. Thanks Paul!
In addition to:
```yaml
cloud:
aws:
protocol: https
proxy_host: proxy1.company.com
proxy_port: 8083
```
You can also set different proxies for `ec2` and `s3`:
```yaml
cloud:
aws:
s3:
proxy_host: proxy1.company.com
proxy_port: 8083
ec2:
proxy_host: proxy2.company.com
proxy_port: 8083
```
PR rebased on master and lastest changes about component settings removal.
Documentation added.
Changes in tests. If a proxy is provided we run the tests, otherwise we ignore the test.
Closes #177 .
2015-03-09 14:19:11 -07:00
David Pilato
7a7de12538
Remove component settings from AbstractComponent
...
Related to elasticsearch/elasticsearch#9919
Closes #182 .
2015-02-27 16:32:50 +01:00
Igor Motov
20a99919bf
Update settings filter
...
Update settings filter to match elasticsearch/elasticsearch#9748
2015-02-24 13:24:02 -05:00
Jerry
3a4e472752
[doc] secret_key: <access key> should be <secret key>
...
Closes #168 .
2015-02-19 21:34:03 +01:00
David Pilato
de2ab73c8a
Simplify region setting code
2015-02-19 21:26:45 +01:00
Marcin Matlaszek
68fea581a2
Fix region settings for s3 snapshot repository in eu-west-1
...
Closes #169 .
2015-02-19 21:26:38 +01:00
David Pilato
4c02a017b4
Wrong endpoint for `cn-north-1`
...
Commit ea9609c642
does not work as expected.
China is not part of the [S3 regions](http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region ) but part of [Isolated Regions](http://docs.aws.amazon.com/general/latest/gr/isolated_regions.html ).
The patch uses for S3 `s3-cn-north-1.amazonaws.com` which is wrong because in that case the end point is `s3.cn-north-1.amazonaws.com.cn`.
Same goes for EC2 which was `ec2.cn-north-1.amazonaws.com` but should be `ec2.cn-north-1.amazonaws.com.cn`.
Related documentation:
* http://docs.aws.amazon.com/general/latest/gr/rande.html#s3_region
* http://docs.aws.amazon.com/general/latest/gr/rande.html#ec2_region
* http://docs.aws.amazon.com/general/latest/gr/isolated_regions.html
Closing #156
(cherry picked from commit 491a59b)
(cherry picked from commit f12cacc)
2015-02-19 16:50:48 +01:00
Andreas Kohn
c7187f2db5
Remove an excess quote character in an exception message
2015-02-19 16:15:14 +01:00
Serhiy Suprun
e05036f257
Fixed address resolution
2015-02-18 16:50:58 +02:00
David Pilato
e6080e9017
Move AwsEc2UnicastHostsProvider to Ec2DiscoveryModule
...
Related to https://github.com/elasticsearch/elasticsearch/pull/9099
2015-01-30 11:14:40 +01:00
David Pilato
377e7e0c78
Fix typo (azure -> s3)
2015-01-02 23:09:36 +01:00
David Pilato
ea9609c642
Add China region for s3 and ec2
...
China region name is `cn-north-1`.
Closes #156 .
2015-01-02 22:28:50 +01:00
David Pilato
a76e93502f
Implement BlobContainer.move()
...
In elasticsearch master (2.0) a new method `move(String sourceBlobName, String targetBlobName)` has been added to `BlobContainer`.
Closes #152 .
2015-01-02 22:16:59 +01:00
David Pilato
d36e24a626
Add sonatype snapshot repository
2015-01-02 21:10:01 +01:00
David Pilato
2df835008e
Depend on elasticsearch-parent
...
To simplify plugins maintenance and provide more value in the future, we are starting to build an `elasticsearch-parent` project.
This commit is the first step for this plugin to depend on this new `pom` maven project.
2014-12-17 10:18:59 +01:00
Adrien Grand
50e5149485
Upgrade to Lucene 5.0.0-snapshot-1642891
2014-12-02 18:19:35 +01:00
tlrx
849e697385
Update AWS SDK to 1.9.8
...
Closes #148
2014-11-26 16:47:15 +01:00