Example #1
0
        private static void Main(string[] args)
        {
            using (SqlConnection conn = new SqlConnection("Data Source=192.168.30.128;Initial Catalog=SmartBusExtension;User Id=sa;Password=1qaz2wsx123_@;Connect Timeout=120"))
            {
                SqlCommand cmd = new SqlCommand(@"
                    SELECT * FROM MQUser"
                                                , conn);

                List <SyncArrayConfiguration> arrayConfig = new List <SyncArrayConfiguration>()
                {
                    new SyncArrayConfiguration
                    {
                        SqlCommand = new SqlCommand(@"
                            SELECT id, userid, login,username,avatar
                            FROM MQUser
                            where UserName='******'"
                                                    , conn),
                        AttributeName = "tags"
                    },

                    /**
                     * new SyncArrayConfiguration
                     * {
                     *  SqlCommand = new SqlCommand(@"
                     *      SELECT id_object AS '_id', id, description, xmlData, languageId
                     *      FROM dbo.Categories
                     *      WHERE languageId = 'es'"
                     *      , conn),
                     *  AttributeName = "categories",
                     *  XmlFields = new string[] { "xmlData" }
                     * }
                     **/
                };

                SyncDeleteConfiguration deleteCmd = new SyncDeleteConfiguration
                {
                    SqlCommand = new SqlCommand(@"
                        SELECT id_object AS '_id', createdOn
                        FROM dbo.DeleteLog
                        WHERE id_language = 'es'"
                                                , conn),
                    ColumnsToCompareWithLastSyncDate = new string[] { "[createdOn]" },
                };

                var nodes =
                    new Uri[] {
                    new Uri("http://192.168.30.135:9200"),
                    //new Uri("http://localhost:9201")
                };
                var connectionPool = new SniffingConnectionPool(nodes);
                var esConfig       = new ConnectionConfiguration(connectionPool).UsePrettyResponses();

                var syncConfig = new SyncConfiguration()
                {
                    SqlConnection       = conn,
                    SqlCommand          = cmd,
                    ArraysConfiguration = arrayConfig,
                    ColumnsToCompareWithLastSyncDate = new string[] { "[id]" },
                    //DeleteConfiguration = deleteCmd,
                    ElasticSearchConfiguration = esConfig,
                    BulkSize = 500,
                    _Index   = new Index("mssql_30.128"),
                    _Type    = "notes"
                };

                var sync = new Sync(syncConfig);

                try
                {
                    var response = sync.Exec();
                    if (response.BulkResponses.Any())
                    {
                        foreach (var bulkResponse in response.BulkResponses)
                        {
                            Console.WriteLine("success: " + bulkResponse.Success);
                            Console.WriteLine("http status code: " + bulkResponse.HttpStatusCode);
                            Console.WriteLine("affected documents: " + bulkResponse.AffectedDocuments);
                            Console.WriteLine("started on: " + bulkResponse.StartedOn);
                            Console.WriteLine("bulk duration: " + bulkResponse.Duration + "ms");
                            if (!response.Success)
                            {
                                Console.WriteLine("es original exception: " + bulkResponse.ESexception);
                            }
                            Console.WriteLine("\n");
                        }
                        Console.WriteLine("\nbulk avg duration: " + response.BulkResponses.Average(x => x.Duration) + "ms");
                        Console.WriteLine("\n");
                    }
                }
                catch (Exception ex)
                {
                    Console.WriteLine("an error has occurred: " + ex.Message);
                }
                finally
                {
                    Console.WriteLine("Execution has completed. Press any key to continue...");
                    Console.ReadKey();
                }
            }
        }