久久久久久久av_日韩在线中文_看一级毛片视频_日本精品二区_成人深夜福利视频_武道仙尊动漫在线观看

  • <tfoot id='xBViN'></tfoot>

      <legend id='xBViN'><style id='xBViN'><dir id='xBViN'><q id='xBViN'></q></dir></style></legend>

        <i id='xBViN'><tr id='xBViN'><dt id='xBViN'><q id='xBViN'><span id='xBViN'><b id='xBViN'><form id='xBViN'><ins id='xBViN'></ins><ul id='xBViN'></ul><sub id='xBViN'></sub></form><legend id='xBViN'></legend><bdo id='xBViN'><pre id='xBViN'><center id='xBViN'></center></pre></bdo></b><th id='xBViN'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='xBViN'><tfoot id='xBViN'></tfoot><dl id='xBViN'><fieldset id='xBViN'></fieldset></dl></div>

          <bdo id='xBViN'></bdo><ul id='xBViN'></ul>

        <small id='xBViN'></small><noframes id='xBViN'>

      1. Debezium:數(shù)據(jù)庫中沒有記錄最大LSN;請確保 SQL Se

        Debezium: No maximum LSN recorded in the database; please ensure that the SQL Server Agent is running(Debezium:數(shù)據(jù)庫中沒有記錄最大LSN;請確保 SQL Server 代理正在運行)

          • <i id='eZ9Bj'><tr id='eZ9Bj'><dt id='eZ9Bj'><q id='eZ9Bj'><span id='eZ9Bj'><b id='eZ9Bj'><form id='eZ9Bj'><ins id='eZ9Bj'></ins><ul id='eZ9Bj'></ul><sub id='eZ9Bj'></sub></form><legend id='eZ9Bj'></legend><bdo id='eZ9Bj'><pre id='eZ9Bj'><center id='eZ9Bj'></center></pre></bdo></b><th id='eZ9Bj'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='eZ9Bj'><tfoot id='eZ9Bj'></tfoot><dl id='eZ9Bj'><fieldset id='eZ9Bj'></fieldset></dl></div>

              <small id='eZ9Bj'></small><noframes id='eZ9Bj'>

              <tfoot id='eZ9Bj'></tfoot>

                <legend id='eZ9Bj'><style id='eZ9Bj'><dir id='eZ9Bj'><q id='eZ9Bj'></q></dir></style></legend>
                  <tbody id='eZ9Bj'></tbody>

                  <bdo id='eZ9Bj'></bdo><ul id='eZ9Bj'></ul>
                  本文介紹了Debezium:數(shù)據(jù)庫中沒有記錄最大LSN;請確保 SQL Server 代理正在運行的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  這個問題與:Debezium 如何使用 Kafka Connect 正確注冊 SqlServer 連接器 - 連接被拒絕

                  在 Windows 10 中,我在 Docker 容器外部的 Microsoft SQL Server 實例上運行 Debezium.我每 390 毫秒收到以下警告:

                  In Windows 10, I have Debezium running on an instance of Microsoft SQL Server that is outside of a Docker container. I am getting the following warning every 390 milliseconds:

                  數(shù)據(jù)庫中沒有記錄最大LSN;請確保 SQL服務器代理正在運行
                  [io.debezium.connector.sqlserver.SqlServerStreamingChangeEventSource]

                  No maximum LSN recorded in the database; please ensure that the SQL Server Agent is running
                  [io.debezium.connector.sqlserver.SqlServerStreamingChangeEventSource]

                  我在 Github 上檢查了 Debezium 的代碼,唯一能找到此警告的地方在代碼注釋中指出,只有在 Agent 未運行時才應拋出此警告.我已確認 SQL Server 代理正在運行.

                  I checked Debezium's code on Github and the only place that I can find this warning states in the code comments that this warning should only be thrown if the Agent is not running. I have confirmed that the SQL Server Agent is running.

                  為什么會出現(xiàn)此警告,我該如何解決?

                  Why is this warning showing up and how do I fix it?

                  注意:

                  我當前的解決方案似乎只適用于非生產(chǎn)環(huán)境 - 根據(jù) Docker 的文檔.

                  My current solution appears to only work in a non-production environment - per Docker's documentation.

                  推薦答案

                  LSN 是與 SQL Server 更改相關的片段"信息.如果您沒有 LSN,則可能是您的 CDC 未運行或未正確配置.Debezium 使用 LSN 進行復制,因此您的 SQL Server 需要生成它.

                  LSN is the "pieces" of information related about your SQL Server changes. If you don't have LSN, is possible that your CDC is not running or not configured properly. Debezium consumes LSNs to replicate so, your SQL Server need to generate this.

                  一些方法:

                  1. 您是否檢查過您的表是否啟用了 CDC?這將列出啟用 CDC 的表:

                  SELECT s.name AS Schema_Name, tb.name AS Table_Name
                  , tb.object_id, tb.type, tb.type_desc, tb.is_tracked_by_cdc
                  FROM sys.tables tb
                  INNER JOIN sys.schemas s on s.schema_id = tb.schema_id
                  WHERE tb.is_tracked_by_cdc = 1
                  

                  1. 您的 CDC 數(shù)據(jù)庫已啟用并運行?(參見 這里)

                  檢查是否啟用:

                  SELECT * 
                  FROM sys.change_tracking_databases 
                  WHERE database_id=DB_ID('MyDatabase')
                  

                  并檢查是否正在運行:

                  EXECUTE sys.sp_cdc_enable_db;  
                  GO  
                  

                  1. 您的 CDC 服務是否在 SQL Server 上運行?請參閱 在文檔中

                  EXEC sys.sp_cdc_start_job;  
                  GO  
                  

                  1. 在 CDC 中啟用表時,我在使用角色名稱時遇到了一些問題.就我而言,在 null 處配置解決了我的問題(更多詳細信息 此處)
                  1. On enabling table in CDC, I had some issues with rolename. For my case, configuring at null solved my problem (more details here)

                      EXEC sys.sp_cdc_enable_table
                          @source_schema=N'dbo',
                          @source_name=N'AD6010',
                          @capture_instance=N'ZZZZ_AD6010',
                          @role_name = NULL,
                          @filegroup_name=N'CDC_DATA',
                          @supports_net_changes=1
                       GO
                  

                  這篇關于Debezium:數(shù)據(jù)庫中沒有記錄最大LSN;請確保 SQL Server 代理正在運行的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

                  【網(wǎng)站聲明】本站部分內(nèi)容來源于互聯(lián)網(wǎng),旨在幫助大家更快的解決問題,如果有圖片或者內(nèi)容侵犯了您的權益,請聯(lián)系我們刪除處理,感謝您的支持!

                  相關文檔推薦

                  How to use windowing functions efficiently to decide next N number of rows based on N number of previous values(如何有效地使用窗口函數(shù)根據(jù) N 個先前值來決定接下來的 N 個行)
                  reuse the result of a select expression in the quot;GROUP BYquot; clause?(在“GROUP BY中重用選擇表達式的結果;條款?)
                  Does ignore option of Pyspark DataFrameWriter jdbc function ignore entire transaction or just offending rows?(Pyspark DataFrameWriter jdbc 函數(shù)的 ignore 選項是忽略整個事務還是只是有問題的行?) - IT屋-程序員軟件開發(fā)技
                  How to integrate Apache Spark with MySQL for reading database tables as a spark dataframe?(如何將 Apache Spark 與 MySQL 集成以將數(shù)據(jù)庫表作為 Spark 數(shù)據(jù)幀讀取?)
                  In Apache Spark 2.0.0, is it possible to fetch a query from an external database (rather than grab the whole table)?(在 Apache Spark 2.0.0 中,是否可以從外部數(shù)據(jù)庫獲取查詢(而不是獲取整個表)?) - IT屋-程序員軟件開
                  Break down a table to pivot in columns (SQL,PYSPARK)(分解表以按列進行透視(SQL、PYSPARK))

                  <tfoot id='Ga68i'></tfoot>

                        <bdo id='Ga68i'></bdo><ul id='Ga68i'></ul>
                        <legend id='Ga68i'><style id='Ga68i'><dir id='Ga68i'><q id='Ga68i'></q></dir></style></legend>

                      • <small id='Ga68i'></small><noframes id='Ga68i'>

                          <tbody id='Ga68i'></tbody>

                        • <i id='Ga68i'><tr id='Ga68i'><dt id='Ga68i'><q id='Ga68i'><span id='Ga68i'><b id='Ga68i'><form id='Ga68i'><ins id='Ga68i'></ins><ul id='Ga68i'></ul><sub id='Ga68i'></sub></form><legend id='Ga68i'></legend><bdo id='Ga68i'><pre id='Ga68i'><center id='Ga68i'></center></pre></bdo></b><th id='Ga68i'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='Ga68i'><tfoot id='Ga68i'></tfoot><dl id='Ga68i'><fieldset id='Ga68i'></fieldset></dl></div>
                            主站蜘蛛池模板: 视频一区在线观看 | 亚洲欧美日韩国产精品 | 在线视频亚洲 | 日韩精品免费视频 | 91美女片黄在线观看91美女 | 精品国产伦一区二区三区 | 国产一级特黄 | 丰满少妇在线观看网站 | av免费看网站 | 免费网站观看www在线观 | 久久精品久久久久久久 | 黄色a一级 | 欧美色图在线观看 | 国产精品一区二区在线播放 | 欧美在线免费观看 | 亚洲欧美一区二区三区在线 | 天天天干| 国产精品一区三区 | 91最新网站 | 波多野结衣视频一区 | 五月激情丁香 | 在线观看av的网站 | 久久激情综合 | 日韩一区中文字幕 | 色黄视频在线观看 | 黄色激情视频网站 | 亚洲精品91天天久久人人 | 欧美色图一区二区 | 福利网站在线观看 | 欧美性精品 | 欧美精品在线免费观看 | 亚洲久久久久久 | 4438成人网 | 成年人视频在线免费观看 | 日韩在线视频网站 | 免费在线观看www | 黄色三级av | 奇米av| 久久久久久国产精品 | 国产天堂网| 久久艳片www.17c.com |