This file contains hidden or 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
| [2012-01-25 09:26:35,733][WARN ][bootstrap ] jvm uses the client vm, make sure to run `java` with the server vm for best performance by adding `-server` to the command line | |
| [2012-01-25 09:26:35,735][INFO ][node ] [Aardwolf] {0.18.7}[6784]: initializing ... | |
| [2012-01-25 09:26:35,738][INFO ][plugins ] [Aardwolf] loaded [], sites [] | |
| [2012-01-25 09:26:36,940][INFO ][node ] [Aardwolf] {0.18.7}[6784]: initialized | |
| [2012-01-25 09:26:36,940][INFO ][node ] [Aardwolf] {0.18.7}[6784]: starting ... | |
| [2012-01-25 09:26:36,998][INFO ][transport ] [Aardwolf] bound_address {inet[/10.0.0.5:9300]}, publish_address {inet[/10.0.0.5:9300]} | |
| [2012-01-25 09:26:40,080][INFO ][cluster.service ] [Aardwolf] new_master [Aardwolf][FEuGnJuuScirVXqmtZ8NwA][inet[/10.0.0.5:9300]], reason: zen-disco-join (elected_as_master) | |
| [2012-01-25 09:26:40,190][INFO ][discovery ] [Aardwolf] mycluster/FEuGnJuuScirVXqmtZ8NwA | |
| [2012-0 |
This file contains hidden or 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
| Map<String,String> settings = new HashMap<String,String>(); | |
| settings.put("node.client","true"); | |
| settings.put("cluster.name","mycluster"); | |
| final NodeBuilder nodeBuilder = NodeBuilder.nodeBuilder(); | |
| nodeBuilder.getSettings().put(settings); | |
| node = nodeBuilder.node(); |
This file contains hidden or 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
| public class DocProperty { | |
| private String undesiredProperty; | |
| private long otherUndesiredProperty; | |
| private String name; | |
| } |
This file contains hidden or 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
| package com.mycompany.elasticsearch.problem; | |
| public class MyType { | |
| private String oneProperty; | |
| private long otherProperty; | |
| public String getOneProperty() { | |
| return oneProperty; | |
| } | |
| public void setOneProperty(String oneProperty) { | |
| this.oneProperty = oneProperty; |
This file contains hidden or 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
| 10:01:21.838 [main] INFO org.elasticsearch.node - [Connors, Curtis] {0.18.7}[4304]: initializing ... | |
| 10:01:21.847 [main] INFO org.elasticsearch.plugins - [Connors, Curtis] loaded [], sites [] | |
| 10:01:22.405 [main] DEBUG org.elasticsearch.threadpool - [Connors, Curtis] creating thread_pool [cached], type [cached], keep_alive [30s] | |
| 10:01:22.406 [main] DEBUG org.elasticsearch.threadpool - [Connors, Curtis] creating thread_pool [index], type [cached], keep_alive [5m] | |
| 10:01:22.406 [main] DEBUG org.elasticsearch.threadpool - [Connors, Curtis] creating thread_pool [search], type [cached], keep_alive [5m] | |
| 10:01:22.406 [main] DEBUG org.elasticsearch.threadpool - [Connors, Curtis] creating thread_pool [percolate], type [cached], keep_alive [5m] | |
| 10:01:22.406 [main] DEBUG org.elasticsearch.threadpool - [Connors, Curtis] creating thread_pool [management], type [scaling], min [1], size [20], keep_alive [5m] | |
| 10:01:22.407 [main] DEBUG org.elasticsearch.threadpool - [Connors, Curtis] creating thread_pool [merge], type [scalin |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <beans xmlns="http://www.springframework.org/schema/beans" | |
| xmlns:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" | |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:rabbit="http://www.springframework.org/schema/rabbit" | |
| xsi:schemaLocation="http://www.springframework.org/schema/rabbit http://www.springframework.org/schema/rabbit/spring-rabbit-1.1.xsd | |
| http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.1.xsd | |
| http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.1.xsd | |
| http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd"> | |
| <util:properties id="queueProperties" location="classpath:/queueProperties.properties" /> |
This file contains hidden or 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
| package com.wixpress.springVersionBug; | |
| import org.junit.*; | |
| import org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory; | |
| import org.springframework.core.GenericTypeResolver; | |
| import java.security.CodeSource; | |
| import static org.hamcrest.Matchers.endsWith; | |
| /** |
This file contains hidden or 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
| <dependency> | |
| <groupId>org.springframework.data</groupId> | |
| <artifactId>spring-data-mongodb</artifactId> | |
| <version>1.0.1.RELEASE</version> | |
| <exclusions> | |
| <exclusion> | |
| <groupId>org.springframework</groupId> | |
| <artifactId>spring-beans</artifactId> | |
| </exclusion> | |
| </exclusions> |
This file contains hidden or 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
| >mvn dependency:tree -Dverbose -Dincludes=org.springframework | |
| ... | |
| (omitted for clarity) | |
| ... | |
| [INFO] --- maven-dependency-plugin:2.1:tree (default-cli) @ wix-feature-toggle-administration --- | |
| [INFO] artifact org.springframework:spring-beans: checking for updates from central | |
| [INFO] artifact org.springframework:spring-beans: checking for updates from snapshots | |
| [INFO] artifact org.springframework:spring-expression: checking for updates from central | |
| [INFO] artifact org.springframework:spring-expression: checking for updates from snapshots | |
| [INFO] artifact org.springframework:spring-tx: checking for updates from central |
This file contains hidden or 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
| mvn org.apache.maven.plugins:maven-dependency-plugin:2.7:tree |
OlderNewer