Skip to content

Commit

Permalink
Merge pull request elastic#330 from Tom-Artale/no-client-node
Browse files Browse the repository at this point in the history
Separated the ES node and client; added builders for all
  • Loading branch information
Tom Artale authored and Tom Artale committed May 8, 2015
2 parents 70547ec + 7125522 commit bd8d010
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions protofiles/ElasticSearchClientConfig.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ option java_outer_classname = "ElasticSearchClientConfigMsg";


message ElasticSearchClientConfig {
optional string elasticsearchClusterName = 1;
optional string elasticsearchNodeIp = 2;
message SettingsEntry {
optional string key = 1;
optional string value = 2;
}

optional string OBSOLETE_elasticsearchClusterName = 1;
optional string OBSOLETE_elasticsearchNodeIp = 2;
optional string elasticsearchServerConfigPath = 3;
repeated string elasticsearchClientTransportAddress = 4;
repeated SettingsEntry elasticsearchClientSettings = 5;
}

0 comments on commit bd8d010

Please sign in to comment.