-
Notifications
You must be signed in to change notification settings - Fork 49
/
ClusterBase.cs
227 lines (186 loc) · 6.99 KB
/
ClusterBase.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
/* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*/
/*
* Modifications Copyright OpenSearch Contributors. See
* GitHub history for details.
*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. 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.
*/
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Threading;
using OpenSearch.OpenSearch.Managed.Configuration;
using OpenSearch.OpenSearch.Managed.ConsoleWriters;
using OpenSearch.OpenSearch.Managed.FileSystem;
using OpenSearch.Stack.ArtifactsApi;
using ProcNet.Std;
namespace OpenSearch.OpenSearch.Managed
{
public interface ICluster<out TConfiguration> : IDisposable
where TConfiguration : IClusterConfiguration<NodeFileSystem>
{
string ClusterMoniker { get; }
TConfiguration ClusterConfiguration { get; }
INodeFileSystem FileSystem { get; }
bool Started { get; }
ReadOnlyCollection<OpenSearchNode> Nodes { get; }
IConsoleLineHandler Writer { get; }
IDisposable Start();
IDisposable Start(TimeSpan waitForStarted);
IDisposable Start(IConsoleLineHandler writer, TimeSpan waitForStarted);
}
public abstract class ClusterBase : ClusterBase<ClusterConfiguration>
{
protected ClusterBase(ClusterConfiguration clusterConfiguration) : base(clusterConfiguration)
{
}
}
public abstract class ClusterBase<TConfiguration> : ICluster<TConfiguration>
where TConfiguration : IClusterConfiguration<NodeFileSystem>
{
private Action<NodeConfiguration, int> _defaultConfigSelector = (n, i) => { };
protected ClusterBase(TConfiguration clusterConfiguration)
{
ClusterConfiguration = clusterConfiguration;
ClusterMoniker = GetType().Name.Replace("Cluster", "");
var nodeConfigs = Enumerable.Range(ClusterConfiguration.StartingPortNumber, ClusterConfiguration.NumberOfNodes)
.Select(port => new NodeConfiguration(ClusterConfiguration, port, ClusterMoniker)
{
ShowOpenSearchOutputAfterStarted = ClusterConfiguration.ShowOpenSearchOutputAfterStarted
})
.ToArray();
var initialClusterManagerNodes = string.Join(",", nodeConfigs.Select(n => n.DesiredNodeName));
var nodes = nodeConfigs
.Select(config =>
{
if (nodeConfigs.Length > 1)
{
var otherNodes = nodeConfigs
.Where(n => n != config)
.Select(n => $"localhost:{(n.DesiredPort ?? 9200) + 100}");
config.SeedHosts(string.Join(",", otherNodes));
}
config.InitialClusterManagerNodes(initialClusterManagerNodes);
ModifyNodeConfiguration(config, config.DesiredPort ?? 9200);
return new OpenSearchNode(config) { AssumeStartedOnNotEnoughClusterManagerPing = ClusterConfiguration.NumberOfNodes > 1 };
})
.ToArray();
Nodes = new ReadOnlyCollection<OpenSearchNode>(nodes);
}
/// <summary>
/// A short name to identify the cluster defaults to the <see cref="ClusterBase" /> subclass name with Cluster
/// removed
/// </summary>
public virtual string ClusterMoniker { get; }
public TConfiguration ClusterConfiguration { get; }
public INodeFileSystem FileSystem => ClusterConfiguration.FileSystem;
public ReadOnlyCollection<OpenSearchNode> Nodes { get; }
public bool Started { get; private set; }
public IConsoleLineHandler Writer { get; private set; } = NoopConsoleLineWriter.Instance;
public IDisposable Start() => Start(TimeSpan.FromMinutes(2));
public IDisposable Start(TimeSpan waitForStarted)
{
var nodes = Nodes.Select(n => n.NodeConfiguration.DesiredNodeName).ToArray();
var lineHighlightWriter = new LineHighlightWriter(nodes, LineOutParser.OpenSearch);
return Start(lineHighlightWriter, waitForStarted);
}
public IDisposable Start(IConsoleLineHandler writer, TimeSpan waitForStarted)
{
Writer = writer ?? NoopConsoleLineWriter.Instance;
OnBeforeStart();
var subscriptions = new Subscriptions();
foreach (var node in Nodes)
{
subscriptions.Add(node.SubscribeLines(writer));
if (node.WaitForStarted(waitForStarted)) continue;
var nodeExceptions = Nodes.Select(n => n.LastSeenException).Where(e => e != null).ToList();
writer?.WriteError(
$"{{{GetType().Name}.{nameof(Start)}}} cluster did not start after {waitForStarted}");
throw new AggregateException($"Not all nodes started after waiting {waitForStarted}", nodeExceptions);
}
Started = Nodes.All(n => n.NodeStarted);
if (!Started)
{
var nodeExceptions = Nodes.Select(n => n.LastSeenException).Where(e => e != null).ToList();
var message = $"{{{GetType().Name}.{nameof(Start)}}} cluster did not start successfully";
var seeLogsMessage = SeeLogsMessage(message);
writer?.WriteError(seeLogsMessage);
throw new AggregateException(seeLogsMessage, nodeExceptions);
}
try
{
OnAfterStarted();
SeedCluster();
}
catch (Exception e)
{
writer?.WriteError(e.ToString());
throw;
}
return subscriptions;
}
public void Dispose()
{
Started = false;
foreach (var node in Nodes)
node?.Dispose();
OnDispose();
}
protected virtual void ModifyNodeConfiguration(NodeConfiguration nodeConfiguration, int port)
{
}
protected virtual void SeedCluster()
{
}
protected virtual string SeeLogsMessage(string message)
{
var log = Path.Combine(FileSystem.LogsPath, $"{ClusterConfiguration.ClusterName}.log");
return $"{message} see {log} to diagnose the issue";
}
public void WaitForExit(TimeSpan waitForCompletion)
{
foreach (var node in Nodes)
node.WaitForCompletion(waitForCompletion);
}
protected virtual void OnAfterStarted()
{
}
protected virtual void OnBeforeStart()
{
}
protected virtual void OnDispose()
{
}
private class Subscriptions : IDisposable
{
private List<IDisposable> Disposables { get; } = new List<IDisposable>();
public void Dispose()
{
foreach (var d in Disposables) d.Dispose();
}
internal void Add(IDisposable disposable) => Disposables.Add(disposable);
}
}
}