public static int Main() { // var es = @"c:\Data\elasticsearch-5.4.1\bin\elasticsearch.bat"; // using (var elasticsearch = new ElasticsearchNode(es)) // { // elasticsearch.Start(); // Console.ReadKey(); // } // using (var p = new ObservableProcess("ipconfig", "/all")) // { // p.Subscribe(c => Console.Write(c.Characters)); // // p.WaitForCompletion(TimeSpan.FromSeconds(2)); // } // var handle = new ManualResetEvent(false); // // var process = new Process() // { // StartInfo = new ProcessStartInfo // { // Arguments = "/all", // FileName = "ipconfig", // RedirectStandardError = true, // RedirectStandardOutput = true, // CreateNoWindow = true, // UseShellExecute = false // }, // EnableRaisingEvents = true // }; // process.OutputDataReceived += (e,s) => Console.WriteLine(s.Data); // process.ErrorDataReceived += (e, s) => Console.Error.WriteLine(s.Data); // process.Exited += (e, s) => // { // process.WaitForExit(5000); // process.WaitForExit(); // process.Dispose(); // handle.Set(); // }; // process.Start(); // process.BeginOutputReadLine(); // process.BeginErrorReadLine(); // // handle.WaitOne(); using (var cluster = new ElasticsearchCluster("5.5.1", instanceCount: 3)) { cluster.Start(); Console.ReadKey(); } return(0); }
public static void Main(string[] args) { var version = "6.3.0"; var esHome = Environment.ExpandEnvironmentVariables( $@"%LOCALAPPDATA%\ElasticManaged\{version}\elasticsearch-{version}"); var clusterConfiguration = new ClusterConfiguration(version, esHome, 2); using (var cluster = new ElasticsearchCluster(clusterConfiguration)) cluster.Start(new ConsoleLineWriter(), TimeSpan.FromMinutes(2)); Console.WriteLine("Program ended"); }
static void Main(string[] args) { var version = "6.3.0"; var esHome = Environment.ExpandEnvironmentVariables($@"%LOCALAPPDATA%\ElasticManaged\{version}\elasticsearch-{version}"); // var clusterConfiguration = new ClusterConfiguration(version, esHome); // var nodeConfiguration = new NodeConfiguration(clusterConfiguration, 9200) // { // ShowElasticsearchOutputAfterStarted = false, // Settings = // { // "node.attr.x", "y" // } // }; // using (var node = new ElasticsearchNode(version, esHome)) // { // node.Start(); // } // using (var node = new ElasticsearchNode(version, esHome)) // { // node.SubscribeLines(new LineHighlightWriter()); // if (!node.WaitForStarted(TimeSpan.FromMinutes(2))) throw new Exception(); // } // using (var node = new ElasticsearchNode(nodeConfiguration)) // { // node.Start(); // } var clusterConfiguration = new ClusterConfiguration(version, esHome, numberOfNodes: 2); using (var cluster = new ElasticsearchCluster(clusterConfiguration)) { cluster.Start(); } Console.WriteLine("Program ended"); }