久久久久久久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的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!

                  問題描述

                  我一直試圖找到在單個 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ù)庫的影響非常小 - 它不需要許可選項,只需打開源上的補充日志記錄(就像所有其他復(fù)制工具一樣)

                  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

                  它完全在內(nèi)存中工作

                  它支持自 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 用戶:請不要刪除此答案.這個問題有很多重復(fù).但這是第一個問題,其他重復(fù)項應(yīng)重定向到此處并標記為重復(fù)項.不是相反.我已從其他問題中刪除了所有其他答案,僅將此答案作為主要答案.

                  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.

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

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

                  相關(guān)文檔推薦

                  Apache Nifi How to load JSON with nested array JSON and Call Oracle Stored Procedure(Apache Nifi 如何使用嵌套數(shù)組 JSON 加載 JSON 并調(diào)用 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:僅在使用分布式模式時沒有合適的驅(qū)動程序)
                  kafka-connect-jdbc : SQLException: No suitable driver only when using distributed mode(kafka-connect-jdbc:SQLException:僅在使用分布式模式時沒有合適的驅(qū)動程序)
                  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>
                          • 主站蜘蛛池模板: 视频一区二区在线观看 | 91久久国产精品 | 国产精品久久久久无码av | 亚洲精品久久久久久首妖 | 精品国产一区二区三区在线观看 | 色婷婷精品久久二区二区蜜臂av | 免费在线观看一区二区三区 | www国产成人免费观看视频,深夜成人网 | 久久之精品 | 久久伊 | 欧美日韩国产精品一区二区 | 一道本视频 | 欧美高清成人 | 青青草视频免费观看 | a亚洲精品 | 国产精品久久精品 | 亚洲欧美在线观看 | 欧美一二三 | 日韩在线免费视频 | 一区二区三区国产在线观看 | 2021天天躁夜夜看 | www.jizzjizz| 国产精品免费播放 | 国产极品粉嫩美女呻吟在线看人 | 天天影视亚洲综合网 | 久久高清 | 亚洲一区视频 | 天天干夜夜操 | 久久国产精品色av免费观看 | 欧美一区视频在线 | 亚洲精品日韩在线 | 久久综合入口 | 亚洲欧美男人天堂 | 国产高清久久久 | 国产精品久久久久久吹潮日韩动画 | 九一国产精品 | 国产一区二区三区免费 | 久久久久久久一区 | 欧美精| 精品一区二区在线观看 | 成人在线观看网址 |