{"id":1719,"date":"2026-02-04T23:10:05","date_gmt":"2026-02-04T23:10:05","guid":{"rendered":"https:\/\/craftcookcode.com\/?p=1719"},"modified":"2026-02-04T23:10:08","modified_gmt":"2026-02-04T23:10:08","slug":"now-qlik-replicate-and-mongodb-are-stuck-inside-containers","status":"publish","type":"post","link":"https:\/\/craftcookcode.com\/?p=1719","title":{"rendered":"Now Qlik Replicate and MongoDB are stuck inside containers"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">That message from my Manager<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">I got a message from my manager unexpectedly.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">\u201cHey. A team is converting a MSSQL database to MongoDB.&nbsp; Can Qlik Replicate capture deletes from the MongoDB?\u201d<\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">I thought this was an abnormal question; why wouldn\u2019t QR support deletes?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Not wanting to make an assumption that may be false and have profound consequences later in a conversion project, I looked up the Qlik documentation.&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Nothing in the documented <a href=\"https:\/\/help.qlik.com\/en-US\/replicate\/November2025\/Content\/Replicate\/Main\/MongoDB_Source\/mongodb_limitations.htm\" target=\"_blank\" rel=\"noopener\" title=\"\">\u201cLimitations and considerations.\u201d<\/a><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Just as a safeguard I also did a google search and a forum search to see if anything else turned up.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Again nothing.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I pinged back to my manager.<\/p>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">\u201cQR should capture deletes simply fine.&nbsp; Where did you hear that QR had problems with MongoDB deletes from?\u201d<\/p>\n<\/blockquote>\n\n\n\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p class=\"wp-block-paragraph\">\u201cOh.&nbsp; The project manager heard from a Mongo guy that Qlik does not work.\u201d<\/p>\n<\/blockquote>\n\n\n\n<p class=\"wp-block-paragraph\">I bit my lip.&nbsp; To me that seemed the same as getting health advice off a random guy at the pub who saw something on Telegram.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">But I realised now that even though I had official Qlik documentation backing me up; the burden of proof was back on me.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Back into the world of containers<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/craftcookcode.com\/?p=1507\" target=\"_blank\" rel=\"noopener\" title=\"\">Qlik Replicate in a docker container<\/a> has been an extremely useful tool on my Linux development machine.\u00a0 It enables me to quickly test various aspects of QR without interrupting the official dev environment; or fighting with the cloud team to get a proof-of-concept source system set up.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">First, I had to set up a MongoDB docker container.\u00a0 Specifically, the MongoDB had to have a \u201creplica\u201d; a standalone wouldn\u2019t work.  Since this was a POC; I didn&#8217;t need a fully fledge &#8211; multi replica &#8211; ultra secure cluster; just something simple and disposable.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">After fumbling around with a number of examples (Gemeni \u2013 how could you fail me!); I came across a page by \u201cGink\u201d titled \u201c<a href=\"https:\/\/ginkcode.com\/post\/how-to-set-up-mongodb-with-replica-set-via-docker-compose\" target=\"_blank\" rel=\"noopener\" title=\"\">How to set up MongoDB with replica set via Docker Compose?<\/a>\u201d<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">It was simple and had exactly what I needed.\u00a0<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Dockerfile:<\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: bash; title: ; notranslate\" title=\"\">\nFROM mongo:7.0\nRUN openssl rand -base64 756 &gt; \/etc\/mongo-keyfile \nRUN chmod 400 \/etc\/mongo-keyfile \nRUN chown mongodb:mongodb \/etc\/mongo-keyfile \n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>docker-compose.yml:<\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: yaml; title: ; notranslate\" title=\"\">\n# From https:\/\/ginkcode.com\/post\/how-to-set-up-mongodb-with-replica-set-via-docker-compose\nversion: &#039;3.8&#039;\n \nservices:\n  mongo:\n    build:\n      context: .\n      dockerfile: Dockerfile\n    container_name: mongodb-replicaset\n    restart: always\n    environment:\n      MONGO_INITDB_ROOT_USERNAME: root\n      MONGO_INITDB_ROOT_PASSWORD: root\n    ports:\n      - 27017:27017\n    command: --replSet rs0 --keyFile \/etc\/mongo-keyfile --bind_ip_all --port 27017\n    healthcheck:\n      test: echo &quot;try { rs.status() } catch (err) { rs.initiate({_id:&#039;rs0&#039;,members:&#x5B;{_id:0,host:&#039;127.0.0.1:27017&#039;}]}) }&quot; | mongosh --port 27017 -u root -p root --authenticationDatabase admin\n      interval: 5s\n      timeout: 15s\n      start_period: 15s\n      retries: 10\n    volumes:\n      - data:\/data\/db\n \nvolumes:\n  data: {}\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\"><strong>Connection string<\/strong><\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: plain; title: ; notranslate\" title=\"\">\nmongodb:\/\/root:root@localhost:27017\/?authSource=admin\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">Please visit Gink&#8217;s page <\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Connecting to Qlik Replicate<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">The great thing is that we don&#8217;t have to mess around installing extra ODBC drivers that can make the Qlik Replicate docker image complex.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">So with the MongoDB and the Qlik Replicate docker containers up and running; we can how create a new endpoint with the following settings:<\/p>\n\n\n\n<figure class=\"wp-block-table\"><table class=\"has-fixed-layout\"><tbody><tr><td><strong>Field<\/strong><\/td><td><strong>Variable<\/strong><\/td><\/tr><tr><td>MongoDB Deployment<\/td><td>Standard<\/td><\/tr><tr><td>Hosts<\/td><td>host.docker.internal<\/td><\/tr><tr><td>Authentication Method<\/td><td>SCRAM-SHA-256<\/td><\/tr><tr><td>Username<\/td><td>root<\/td><\/tr><tr><td>Password<\/td><td>root<\/td><\/tr><tr><td>Authentication database name<\/td><td>admin<\/td><\/tr><\/tbody><\/table><\/figure>\n\n\n\n<figure class=\"wp-block-image size-large\"><img fetchpriority=\"high\" decoding=\"async\" width=\"1024\" height=\"968\" src=\"https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_02-1024x968.png\" alt=\"\" class=\"wp-image-1723\" srcset=\"https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_02-1024x968.png 1024w, https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_02-300x284.png 300w, https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_02-768x726.png 768w, https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_02.png 1248w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">A test connection confirmed that the connection was working as expected.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Proving that deletes are working<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Getting close to resolving the burden of proof.\u00a0 I got our GenAI to create a simple python script to add, update, and delete some data from the Mongo Database and set it running:<\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: python; title: ; notranslate\" title=\"\">\nimport pymongo\nimport random\nimport string\nimport time\n\ndef generate_random_string(length=10):\n    &quot;&quot;&quot;Generate a random string of fixed length.&quot;&quot;&quot;\n    letters = string.ascii_lowercase\n    return &#039;&#039;.join(random.choice(letters) for i in range(length))\n\ndef add_random_data(collection):\n    &quot;&quot;&quot;Adds a new document with random data to the collection.&quot;&quot;&quot;\n    \n    new_document = {\n        &quot;name&quot;: generate_random_string(),\n        &quot;age&quot;: random.randint(18, 99),\n        &quot;email&quot;: f&quot;{generate_random_string(5)}@example.com&quot;\n    }\n    \n    result = collection.insert_one(new_document)\n\n    print(f&quot;Added: {result.inserted_id}&quot;)\n\ndef update_random_data(collection):\n    &quot;&quot;&quot;Updates a random document in the collection.&quot;&quot;&quot;\n    if collection.count_documents({}) &gt; 0:\n        # Get a random document using the $sample aggregation operator\n        try:\n            random_doc_cursor = collection.aggregate(&#x5B;{&quot;$sample&quot;: {&quot;size&quot;: 1}}])\n            random_doc = next(random_doc_cursor)\n            new_age = random.randint(18, 99)\n            \n            collection.update_one(\n                {&quot;_id&quot;: random_doc&#x5B;&quot;_id&quot;]},\n                {&quot;$set&quot;: {&quot;age&quot;: new_age}}\n            )\n\n            print(f&quot;Updated: {random_doc&#x5B;&#039;_id&#039;]} with new age {new_age}&quot;)\n        except StopIteration:\n            print(&quot;Could not find a document to update.&quot;)\n    else:\n        print(&quot;No documents to update.&quot;)\n\ndef delete_random_data(collection):\n    &quot;&quot;&quot;Deletes a random document from the collection.&quot;&quot;&quot;\n    if collection.count_documents({}) &gt; 0:\n        # Get a random document using the $sample aggregation operator\n        try:\n            random_doc_cursor = collection.aggregate(&#x5B;{&quot;$sample&quot;: {&quot;size&quot;: 1}}])\n            random_doc = next(random_doc_cursor)\n\n            collection.delete_one({&quot;_id&quot;: random_doc&#x5B;&quot;_id&quot;]})\n            \n            print(f&quot;Deleted: {random_doc&#x5B;&#039;_id&#039;]}&quot;)\n        except StopIteration:\n            print(&quot;Could not find a document to delete.&quot;)\n    else:\n        print(&quot;No documents to delete.&quot;)\n\n\nif __name__ == &quot;__main__&quot;:\n    print(&quot;Starting script... Press Ctrl+C to stop.&quot;)\n\n    try:\n        client = pymongo.MongoClient(&quot;mongodb:\/\/root:root@localhost:27017\/?authSource=admin&quot;)\n        db = client&#x5B;&quot;random_data_db&quot;]\n        collection = db&#x5B;&quot;my_collection&quot;]\n        # The ismaster command is cheap and does not require auth.\n        client.admin.command(&#039;ismaster&#039;)\n        print(&quot;MongoDB connection successful.&quot;)\n    except pymongo.errors.ConnectionFailure as e:\n        print(f&quot;Could not connect to MongoDB: {e}&quot;)\n        exit()\n\n    while True:\n        try:\n            add_random_data(collection)\n            add_random_data(collection)\n            add_random_data(collection)\n\n            update_random_data(collection)\n            delete_random_data(collection)\n            \n            # Wait for five seconds before the next cycle\n            time.sleep(5)\n\n        except KeyboardInterrupt:\n            print(&quot;\\nScript stopped by user.&quot;)\n            break\n        except Exception as e:\n            print(f&quot;An error occurred: {e}&quot;)\n            break\n\n    # Close the connection\n    client.close()\n    print(&quot;MongoDB connection closed.&quot;)\n\n<\/pre><\/div>\n\n\n<p class=\"wp-block-paragraph\">With the script running and adding, updating and deleting data to the MongoDB; a QR task can be created to read from the database &#8220;random_data_db&#8221; and collection &#8220;my_collection&#8221;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">And voil\u00e0. Data is flowing through Qlik Replicate from the MongoDB.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">And more importantly deletes are getting picked up as expected.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img decoding=\"async\" width=\"1024\" height=\"312\" src=\"https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_03-1024x312.png\" alt=\"\" class=\"wp-image-1727\" srcset=\"https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_03-1024x312.png 1024w, https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_03-300x92.png 300w, https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_03-768x234.png 768w, https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_03-1536x469.png 1536w, https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_03-2048x625.png 2048w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"> <\/p>\n\n\n<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: java; title: ; notranslate\" title=\"\">\n{\n\t&quot;header__change_seq&quot;:&quot;20260204052516000000000000000004085&quot;,\n\t&quot;header__change_oper&quot;:&quot;D&quot;,&quot;header__change_mask&quot;:&quot;80&quot;,\n\t&quot;header__stream_position&quot;:&quot;6982d83c:00000005:00000000&quot;,\n\t&quot;header__operation&quot;:&quot;DELETE&quot;,\n\t&quot;header__transaction_id&quot;:&quot;4155544F434F4D4D4954000000000000&quot;,\n\t&quot;header__timestamp&quot;:&quot;2026-02-04 05:25:16.000000&quot;,\n\t&quot;_id&quot;:&quot;6982d8186b2cc5ee1a161d13&quot;,\n\t&quot;_doc&quot;:&quot;{\\&quot;_id\\&quot;: {\\&quot;$oid\\&quot;: \\&quot;6982d8186b2cc5ee1a161d13\\&quot;}}&quot;\n}\n \n<\/pre><\/div>\n\n\n<h2 class=\"wp-block-heading\">Conclusion <\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">And voil\u00e0. Data is flowing through Qlik Replicate from the MongoDB.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">And more importantly; deletes are getting picked up as expected.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">If you have come to my humble website after googling \u201cCan Qlik Replicate replicate deletes from a MongoDB?\u201d well, the answer is \u201cYes \u2013 Yes it can.\u201d<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">I can only speculate where that rumour came from.&nbsp; Maybe it was from an older version of QR or MongoDB that the person in question was referring to?&nbsp; Or some very abnormal setup of a MongoDB cluster?<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Or some complete misunderstanding.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Anyway, I have meeting in the next hour or two with the project team; let us find out.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>That message from my Manager I got a message from my manager unexpectedly. \u201cHey. A team is converting a MSSQL database to MongoDB.&nbsp; Can Qlik Replicate&#46;&#46;&#46;<\/p>\n","protected":false},"author":1,"featured_media":1720,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[103,16],"tags":[104,36],"class_list":["post-1719","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-mongodb","category-qlik-replicate","tag-mongodb","tag-qlikreplicate"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.8 - aioseo.com -->\n\t<meta name=\"description\" content=\"That message from my Manager I got a message from my manager unexpectedly. \u201cHey. A team is converting a MSSQL database to MongoDB. Can Qlik Replicate capture deletes from the MongoDB?\u201d I thought this was an abnormal question; why wouldn\u2019t QR support deletes? Not wanting to make an assumption that may be false and have\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"jonny.donker@gmail.com\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/craftcookcode.com\/?p=1719\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.8\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Craft Cook Code - c^3?\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Now Qlik Replicate and MongoDB are stuck inside containers - Craft Cook Code\" \/>\n\t\t<meta property=\"og:description\" content=\"That message from my Manager I got a message from my manager unexpectedly. \u201cHey. A team is converting a MSSQL database to MongoDB. Can Qlik Replicate capture deletes from the MongoDB?\u201d I thought this was an abnormal question; why wouldn\u2019t QR support deletes? Not wanting to make an assumption that may be false and have\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/craftcookcode.com\/?p=1719\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2026-02-04T23:10:05+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2026-02-04T23:10:08+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Now Qlik Replicate and MongoDB are stuck inside containers - Craft Cook Code\" \/>\n\t\t<meta name=\"twitter:description\" content=\"That message from my Manager I got a message from my manager unexpectedly. \u201cHey. A team is converting a MSSQL database to MongoDB. Can Qlik Replicate capture deletes from the MongoDB?\u201d I thought this was an abnormal question; why wouldn\u2019t QR support deletes? Not wanting to make an assumption that may be false and have\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719#blogposting\",\"name\":\"Now Qlik Replicate and MongoDB are stuck inside containers - Craft Cook Code\",\"headline\":\"Now Qlik Replicate and MongoDB are stuck inside containers\",\"author\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/code_qr_mongo_01.png\",\"width\":1536,\"height\":1024},\"datePublished\":\"2026-02-04T23:10:05+00:00\",\"dateModified\":\"2026-02-04T23:10:08+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719#webpage\"},\"articleSection\":\"MongoDB, Qlik Replicate, mongodb, qlikreplicate\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/craftcookcode.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"name\":\"Code\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"position\":2,\"name\":\"Code\",\"item\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=16#listItem\",\"name\":\"Qlik Replicate\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=16#listItem\",\"position\":3,\"name\":\"Qlik Replicate\",\"item\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=16\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719#listItem\",\"name\":\"Now Qlik Replicate and MongoDB are stuck inside containers\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=13#listItem\",\"name\":\"Code\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719#listItem\",\"position\":4,\"name\":\"Now Qlik Replicate and MongoDB are stuck inside containers\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?cat=16#listItem\",\"name\":\"Qlik Replicate\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\",\"name\":\"jonny.donker@gmail.com\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"jonny.donker@gmail.com\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1\",\"name\":\"jonny.donker@gmail.com\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"jonny.donker@gmail.com\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719#webpage\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719\",\"name\":\"Now Qlik Replicate and MongoDB are stuck inside containers - Craft Cook Code\",\"description\":\"That message from my Manager I got a message from my manager unexpectedly. \\u201cHey. A team is converting a MSSQL database to MongoDB. Can Qlik Replicate capture deletes from the MongoDB?\\u201d I thought this was an abnormal question; why wouldn\\u2019t QR support deletes? Not wanting to make an assumption that may be false and have\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?author=1#author\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/wp-content\\\/uploads\\\/2026\\\/02\\\/code_qr_mongo_01.png\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719\\\/#mainImage\",\"width\":1536,\"height\":1024},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/?p=1719#mainImage\"},\"datePublished\":\"2026-02-04T23:10:05+00:00\",\"dateModified\":\"2026-02-04T23:10:08+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#website\",\"url\":\"https:\\\/\\\/craftcookcode.com\\\/\",\"name\":\"Craft Cook Code\",\"description\":\"c^3?\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/craftcookcode.com\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Now Qlik Replicate and MongoDB are stuck inside containers - Craft Cook Code","description":"That message from my Manager I got a message from my manager unexpectedly. \u201cHey. A team is converting a MSSQL database to MongoDB. Can Qlik Replicate capture deletes from the MongoDB?\u201d I thought this was an abnormal question; why wouldn\u2019t QR support deletes? Not wanting to make an assumption that may be false and have","canonical_url":"https:\/\/craftcookcode.com\/?p=1719","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/craftcookcode.com\/?p=1719#blogposting","name":"Now Qlik Replicate and MongoDB are stuck inside containers - Craft Cook Code","headline":"Now Qlik Replicate and MongoDB are stuck inside containers","author":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"publisher":{"@id":"https:\/\/craftcookcode.com\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_01.png","width":1536,"height":1024},"datePublished":"2026-02-04T23:10:05+00:00","dateModified":"2026-02-04T23:10:08+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/craftcookcode.com\/?p=1719#webpage"},"isPartOf":{"@id":"https:\/\/craftcookcode.com\/?p=1719#webpage"},"articleSection":"MongoDB, Qlik Replicate, mongodb, qlikreplicate"},{"@type":"BreadcrumbList","@id":"https:\/\/craftcookcode.com\/?p=1719#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/craftcookcode.com#listItem","position":1,"name":"Home","item":"https:\/\/craftcookcode.com","nextItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","name":"Code"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","position":2,"name":"Code","item":"https:\/\/craftcookcode.com\/?cat=13","nextItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=16#listItem","name":"Qlik Replicate"},"previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=16#listItem","position":3,"name":"Qlik Replicate","item":"https:\/\/craftcookcode.com\/?cat=16","nextItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?p=1719#listItem","name":"Now Qlik Replicate and MongoDB are stuck inside containers"},"previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=13#listItem","name":"Code"}},{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?p=1719#listItem","position":4,"name":"Now Qlik Replicate and MongoDB are stuck inside containers","previousItem":{"@type":"ListItem","@id":"https:\/\/craftcookcode.com\/?cat=16#listItem","name":"Qlik Replicate"}}]},{"@type":"Person","@id":"https:\/\/craftcookcode.com\/#person","name":"jonny.donker@gmail.com","image":{"@type":"ImageObject","@id":"https:\/\/craftcookcode.com\/?p=1719#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g","width":96,"height":96,"caption":"jonny.donker@gmail.com"}},{"@type":"Person","@id":"https:\/\/craftcookcode.com\/?author=1#author","url":"https:\/\/craftcookcode.com\/?author=1","name":"jonny.donker@gmail.com","image":{"@type":"ImageObject","@id":"https:\/\/craftcookcode.com\/?p=1719#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/12ea7810156e378894993fa29611c905482263dd05898a50ae5ece294bb6aff0?s=96&d=mm&r=g","width":96,"height":96,"caption":"jonny.donker@gmail.com"}},{"@type":"WebPage","@id":"https:\/\/craftcookcode.com\/?p=1719#webpage","url":"https:\/\/craftcookcode.com\/?p=1719","name":"Now Qlik Replicate and MongoDB are stuck inside containers - Craft Cook Code","description":"That message from my Manager I got a message from my manager unexpectedly. \u201cHey. A team is converting a MSSQL database to MongoDB. Can Qlik Replicate capture deletes from the MongoDB?\u201d I thought this was an abnormal question; why wouldn\u2019t QR support deletes? Not wanting to make an assumption that may be false and have","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/craftcookcode.com\/#website"},"breadcrumb":{"@id":"https:\/\/craftcookcode.com\/?p=1719#breadcrumblist"},"author":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"creator":{"@id":"https:\/\/craftcookcode.com\/?author=1#author"},"image":{"@type":"ImageObject","url":"https:\/\/craftcookcode.com\/wp-content\/uploads\/2026\/02\/code_qr_mongo_01.png","@id":"https:\/\/craftcookcode.com\/?p=1719\/#mainImage","width":1536,"height":1024},"primaryImageOfPage":{"@id":"https:\/\/craftcookcode.com\/?p=1719#mainImage"},"datePublished":"2026-02-04T23:10:05+00:00","dateModified":"2026-02-04T23:10:08+00:00"},{"@type":"WebSite","@id":"https:\/\/craftcookcode.com\/#website","url":"https:\/\/craftcookcode.com\/","name":"Craft Cook Code","description":"c^3?","inLanguage":"en-US","publisher":{"@id":"https:\/\/craftcookcode.com\/#person"}}]},"og:locale":"en_US","og:site_name":"Craft Cook Code - c^3?","og:type":"article","og:title":"Now Qlik Replicate and MongoDB are stuck inside containers - Craft Cook Code","og:description":"That message from my Manager I got a message from my manager unexpectedly. \u201cHey. A team is converting a MSSQL database to MongoDB. Can Qlik Replicate capture deletes from the MongoDB?\u201d I thought this was an abnormal question; why wouldn\u2019t QR support deletes? Not wanting to make an assumption that may be false and have","og:url":"https:\/\/craftcookcode.com\/?p=1719","article:published_time":"2026-02-04T23:10:05+00:00","article:modified_time":"2026-02-04T23:10:08+00:00","twitter:card":"summary_large_image","twitter:title":"Now Qlik Replicate and MongoDB are stuck inside containers - Craft Cook Code","twitter:description":"That message from my Manager I got a message from my manager unexpectedly. \u201cHey. A team is converting a MSSQL database to MongoDB. Can Qlik Replicate capture deletes from the MongoDB?\u201d I thought this was an abnormal question; why wouldn\u2019t QR support deletes? Not wanting to make an assumption that may be false and have"},"aioseo_meta_data":{"post_id":"1719","title":null,"description":null,"keywords":null,"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"BlogPosting","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":{"faqs":[],"keyPoints":[],"titles":[],"descriptions":[],"socialPosts":{"email":[],"linkedin":[],"twitter":[],"facebook":[],"instagram":[]}},"created":"2026-02-04 20:18:21","updated":"2026-02-04 23:18:22","seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/craftcookcode.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/craftcookcode.com\/?cat=13\" title=\"Code\">Code<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/craftcookcode.com\/?cat=16\" title=\"Qlik Replicate\">Qlik Replicate<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tNow Qlik Replicate and MongoDB are stuck inside containers\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/craftcookcode.com"},{"label":"Code","link":"https:\/\/craftcookcode.com\/?cat=13"},{"label":"Qlik Replicate","link":"https:\/\/craftcookcode.com\/?cat=16"},{"label":"Now Qlik Replicate and MongoDB are stuck inside containers","link":"https:\/\/craftcookcode.com\/?p=1719"}],"_links":{"self":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/1719","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1719"}],"version-history":[{"count":7,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/1719\/revisions"}],"predecessor-version":[{"id":1729,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/posts\/1719\/revisions\/1729"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=\/wp\/v2\/media\/1720"}],"wp:attachment":[{"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1719"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1719"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/craftcookcode.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1719"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}