Exemple #1
0
        protected void Connect(ElasticClient client, ConnectionSettings settings)
        {
            ConnectionStatus indexConnectionStatus;

            if (!client.TryConnect(out indexConnectionStatus))
            {
                Console.Error.WriteLine("Could not connect to {0}:\r\n{1}",
                    settings.Host, indexConnectionStatus.Error.OriginalException.Message);
                Console.Read();
                return;
            }
        }
Exemple #2
0
        public void connect_to_unknown_hostname()
        {
            Assert.DoesNotThrow(() =>
            {
                var settings = new ConnectionSettings("youdontownthis.domain.do.you", 80);
                var client = new ElasticClient(settings);
                ConnectionStatus connectionStatus;
                client.TryConnect(out connectionStatus);

                Assert.False(client.IsValid);
                Assert.True(connectionStatus != null);
                Assert.True(connectionStatus.Error.HttpStatusCode == System.Net.HttpStatusCode.BadGateway
                    || connectionStatus.Error.ExceptionMessage.StartsWith("The remote name could not be resolved"));
            });
        }
Exemple #3
0
 public void Execute(IJobExecutionContext context)
 {
     ILog log = LogManager.GetLogger(this.GetType());
     JobDataMap data = context.JobDetail.JobDataMap;
     var esUrl = data.GetString("eshost");
     var esIndex = data.GetString("defaultindex");
     var needRebuild = data.ContainsKey("needrebuild") ? data.GetBooleanValue("needrebuild") : false;
     var benchDate = BenchDate(context) ;
     
     var client = new ElasticClient(new ConnectionSettings(new Uri(esUrl))
                             .SetDefaultIndex(esIndex)
                             .SetMaximumAsyncConnections(10));
     ConnectionStatus connectionStatus;
     if (!client.TryConnect(out connectionStatus))
     {
         log.Fatal(string.Format("Could not connect to {0}:\r\n{1}",
             esUrl, connectionStatus.Error.OriginalException.Message));
         return;
     }
     if (needRebuild)
     {
         var response = client.DeleteIndex(esIndex);
         if (response.OK)
         {
             log.Info(string.Format("index:{0} is deleted!", esIndex));
             _isActiveOnly = true;
         }
         else
         {
             log.Info("remove index failed");
         }
     }
     IndexBrand(client, benchDate);
     IndexHotwork(client, benchDate);
     IndexStore(client, benchDate);
     IndexTag(client, benchDate);
     IndexUser(client, benchDate);
     IndexResource(client, benchDate);
     IndexProds(client, benchDate,null);
     IndexPros(client,benchDate,null);
     IndexBanner(client, benchDate);
     IndexSpecialTopic(client, benchDate,null);
     IndexStorePromotion(client, benchDate);
 }
Exemple #4
0
 public void TestConnectSuccessWithUri()
 {
     var settings = new ConnectionSettings(Test.Default.Uri);
     var client = new ElasticClient(settings);
     ConnectionStatus status;
     client.TryConnect(out status);
     Assert.True(client.IsValid);
     Assert.True(status.Success);
     Assert.Null(status.Error);
 }
Exemple #5
0
        /// <summary>
        /// Depends on hn_full_11-07-2010.xml which you can download from: 
        /// http://api.ihackernews.com/torrents/hn_full_11-07-2010.zip.torrent
        /// 
        /// When run from debug make sure to change the default debug arguments.
        /// <param name="args">Full filepath to hn_full_11-07-2010.xml</param>
        static void Main(string[] args)
        {
            var filePath = args.First();
            var elasticSettings = new ConnectionSettings("127.0.0.1.", 9200)
                                        .SetDefaultIndex("mpdreamz")
                                        .SetMaximumAsyncConnections(50);
            var client = new ElasticClient(elasticSettings);
            ConnectionStatus connectionStatus;
            if (!client.TryConnect(out connectionStatus))
            {
                Console.Error.WriteLine("Could not connect to {0}:\r\n{1}",
                    elasticSettings.Host, connectionStatus.Error.OriginalException.Message);
                Console.Read();
                return;
            }

            var reader = new XmlTextReader(filePath);
            Post post = new Post();
            PostMetaData meta = new PostMetaData();

            int processed = 0, dropped = 0;
            Stopwatch sw = new Stopwatch();
            sw.Start();
            var postQueue = new List<Post>();
            try
            {
                while (reader.Read())
                {
                    var name = reader.Name;

                    if (reader.NodeType == XmlNodeType.Element)
                    {
                        if (name == "HackerNews")
                            continue;

                        if (name == "ID")
                            post.Id = reader.ReadElementContentAsInt();

                        else if (name == "ParentID")
                            post.ParentId = reader.ReadElementContentAsInt();
                        else if (name == "Url")
                            post.Url = reader.ReadElementContentAsString();
                        else if (name == "Title")
                            post.Title = reader.ReadElementContentAsString();
                        else if (name == "Text")
                            post.Text = reader.ReadElementContentAsString();
                        else if (name == "Username")
                            meta.Username = reader.ReadElementContentAsString();
                        else if (name == "Points")
                            meta.Points = reader.ReadElementContentAsInt();
                        else if (name == "Type")
                            meta.Type = reader.ReadElementContentAsInt();
                        else if (name == "Timestamp")
                            meta.Created = reader.ReadElementContentAsDateTime();
                        else if (name == "CommentCount")
                            meta.CommentsCount = reader.ReadElementContentAsInt();
                    }

                    if (reader.NodeType == XmlNodeType.EndElement
                        && name == "row")
                    {
                        post.Meta = meta;
                        postQueue.Add(post);
                        if (postQueue.Count() == 1000)
                        {
                            var t = client.IndexManyAsync(postQueue);
                            t.ContinueWith(c =>
                            {
                                var result = c.Result;
                                if (!result.Success)
                                    dropped++;
                            });
                            processed += postQueue.Count();
                            postQueue = new List<Post>();

                        }
                        Console.Write("\rProcessed:{0}, Dropped:{2} in {1}", processed, sw.Elapsed, dropped);

                        post = new Post();
                        meta = new PostMetaData();
                    }
                }
                if (postQueue.Count() > 0)
                {
                    var task = client.IndexManyAsync(postQueue).ContinueWith(t =>
                    {
                        var c = t.Result;
                        if (!c.Success)
                            Interlocked.Increment(ref dropped);
                        return t;
                    });
                    Interlocked.Add(ref processed, postQueue.Count());
                    postQueue = new List<Post>();

                }
                sw.Stop();
                Console.WriteLine("\nDone!", sw.Elapsed);
                Console.WriteLine("{0} docs in {1} => {2} docs/s", processed, sw.Elapsed, processed / sw.Elapsed.TotalSeconds);
            }
            catch (Exception e)
            {
                Console.WriteLine(e.Message);
            }
        }