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

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

    1. <legend id='gg1sZ'><style id='gg1sZ'><dir id='gg1sZ'><q id='gg1sZ'></q></dir></style></legend>

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

        如何集成 Oracle 和 Kafka

        How to integrate Oracle and Kafka(如何集成 Oracle 和 Kafka)

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

            <tbody id='bmWte'></tbody>
          <i id='bmWte'><tr id='bmWte'><dt id='bmWte'><q id='bmWte'><span id='bmWte'><b id='bmWte'><form id='bmWte'><ins id='bmWte'></ins><ul id='bmWte'></ul><sub id='bmWte'></sub></form><legend id='bmWte'></legend><bdo id='bmWte'><pre id='bmWte'><center id='bmWte'></center></pre></bdo></b><th id='bmWte'></th></span></q></dt></tr></i><div class="qwawimqqmiuu" id='bmWte'><tfoot id='bmWte'></tfoot><dl id='bmWte'><fieldset id='bmWte'></fieldset></dl></div>
            • <legend id='bmWte'><style id='bmWte'><dir id='bmWte'><q id='bmWte'></q></dir></style></legend>
                <bdo id='bmWte'></bdo><ul id='bmWte'></ul>
                  <tfoot id='bmWte'></tfoot>
                • 本文介紹了如何集成 Oracle 和 Kafka的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!

                  問題描述

                  我一直試圖找到在單個 Oracle 11g R2 實例中捕獲更改通知的最高效/最有效的方法,并將這些事件傳送到 Apache Kafka 隊列,但我找不到任何簡單的示例或教程沿著這些路線.

                  I've been trying to find the most efficient/effective way capture change notifications in a single Oracle 11g R2 instance and deliver those events to an Apache Kafka queue, but I haven't been able to find any simple examples or tutorials along these lines.

                  我在 Oracle 方面看到了一些可能性(Streams,更改數(shù)據(jù)捕獲、觸發(fā)器(糟糕)等等),但我仍然不確定哪個是最好的追求.

                  I've seen some possibilities on the Oracle side (Streams, Change Data Capture,triggers (yuck), etc..), but I'm still not sure which would be best to pursue.

                  這是一個在 GitHub 上使用 MySQL 和 Kafka 的項目,名為 mypipe,我只是沒有看到任何東西與 Oracle 類似.我不確定是否最好專注于為此編寫 Oracle 包,或者類似于 mypipe 項目等的層.

                  Here is a project utilizing MySQL and Kafka on GitHub called mypipe, I just haven't seen anything similar for Oracle. I'm not sure if it would be best to focus writing an Oracle package for this, or a layer similar to the mypipe project, etc. etc..

                  任何建議、建議或示例將不勝感激.謝謝.

                  Any recommendations, suggestions or examples would be greatly appreciated. Thank you.

                  推薦答案

                  目前只有一種工具是開源的,對數(shù)據(jù)庫的影響很小.這是OpenLogReplicator.

                  There is currently just one tool which is open source and has minimal impact on the database. This is OpenLogReplicator.

                  • 許可證是 GPL - 它是完全開源的

                  • license is GPL - it is fully open source

                  它對源數(shù)據(jù)庫的影響非常小 - 它不需要許可選項,只需打開源上的補充日志記錄(就像所有其他復制工具一樣)

                  it has very low impact on the source database - it requires no licensing options and just turning on supplemental logging on the source (like all other replication tools)

                  它完全用 C++ 編寫 - 因此它具有非常低的延遲和高吞吐量

                  it is written completely in C++ - so it has very low latency and high throughput

                  它完全在內存中工作

                  它支持自 11.2.0.1(11.2、12.1、12.2、18、19)以來的所有 Oracle 數(shù)據(jù)庫版本

                  it supports all Oracle database versions since 11.2.0.1 (11.2, 12.1, 12.2, 18, 19)

                  它讀取二進制格式的 Oracle Redo 日志并將它們發(fā)送到 Kafka.它可以在數(shù)據(jù)庫主機上工作,但您也可以將其配置為使用 sshfs 從另一臺主機讀取重做日志 - 以最小的數(shù)據(jù)庫負載.

                  It reads binary format of Oracle Redo logs and sends them to Kafka. It can work on the database host, but you can also configure it to read the redo logs using sshfs from another host - with minimal load of the database.

                  免責聲明 #1:我是此解決方案的作者

                  disclaimer #1: I am the author of this solution

                  免責聲明 #2:致其他 StackOverflow 用戶:請不要刪除此答案.這個問題有很多重復.但這是第一個問題,其他重復項應重定向到此處并標記為重復項.不是相反.我已從其他問題中刪除了所有其他答案,僅將此答案作為主要答案.

                  disclaimer #2: to other StackOverflow users: please do not delete this answer. This question has a lot of duplicates. But this is the first question and other duplicates should be redirected here and marked as duplicates. Not the other way. I have deleted all other answers from other questions and just leaving this answer as the primary answer.

                  這篇關于如何集成 Oracle 和 Kafka的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,也希望大家多多支持html5模板網(wǎng)!

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

                  相關文檔推薦

                  Apache Nifi How to load JSON with nested array JSON and Call Oracle Stored Procedure(Apache Nifi 如何使用嵌套數(shù)組 JSON 加載 JSON 并調用 Oracle 存儲過程)
                  Issue with Confluent JDBC Source connector(Confluent JDBC Source 連接器的問題)
                  Why Kafka jdbc connect insert data as BLOB instead of varchar(為什么 Kafka jdbc 將插入數(shù)據(jù)作為 BLOB 而不是 varchar 連接)
                  kafka-connect-jdbc : SQLException: No suitable driver only when using distributed mode(kafka-connect-jdbc:SQLException:僅在使用分布式模式時沒有合適的驅動程序)
                  kafka-connect-jdbc : SQLException: No suitable driver only when using distributed mode(kafka-connect-jdbc:SQLException:僅在使用分布式模式時沒有合適的驅動程序)
                  Efficient ways for whitelisting more tables in Debezium Mysql Connector(在 Debezium Mysql Connector 中將更多表列入白名單的有效方法)

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

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

                        <tfoot id='JnpAk'></tfoot>
                          • 主站蜘蛛池模板: 日本激情视频在线播放 | 国产美女黄色片 | 欧美综合一区 | 99亚洲综合 | 欧美日一区 | 欧美视频成人 | 久久精品国产一区二区三区不卡 | 成人在线看片 | 99久久婷婷国产综合精品首页 | 中文字幕在线精品 | 激情毛片 | 久久亚洲一区二区 | 精品国产乱码久久久久久蜜柚 | 欧美一区成人 | 久久久久久久久国产成人免费 | 伊人久久伊人 | 精品国产乱码久久久久久果冻传媒 | 国产精品免费一区二区三区 | 国产一区二区三区久久久久久久久 | 国产福利视频 | 国产亚洲一级 | 中文字幕高清在线 | 日韩中文欧美 | 一级看片免费视频囗交动图 | 国产精品一区二区三区久久 | 一区二区三区国产好 | 色又黄又爽网站www久久 | 99精品久久久国产一区二区三 | 国产亚洲精品久久久久久牛牛 | 日韩精品在线播放 | 91免费高清视频 | 国产精品日韩欧美一区二区三区 | 日韩a | 日韩在线欧美 | 麻豆精品久久 | 欧美99| 久久精品成人 | 国产精品成人一区二区 | 国产成人a亚洲精品 | 久久精品国产免费 | 亚洲高清在线 |