Change Data Capture











up vote
1
down vote

favorite












With the new Change Data Capture tool coming out soon, why would someone use this over Platform Events? My understanding is that CDC utilizes Platform Events under the hood anyways.










share|improve this question


























    up vote
    1
    down vote

    favorite












    With the new Change Data Capture tool coming out soon, why would someone use this over Platform Events? My understanding is that CDC utilizes Platform Events under the hood anyways.










    share|improve this question
























      up vote
      1
      down vote

      favorite









      up vote
      1
      down vote

      favorite











      With the new Change Data Capture tool coming out soon, why would someone use this over Platform Events? My understanding is that CDC utilizes Platform Events under the hood anyways.










      share|improve this question













      With the new Change Data Capture tool coming out soon, why would someone use this over Platform Events? My understanding is that CDC utilizes Platform Events under the hood anyways.







      streaming-api platform-event change-data-capture






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 4 hours ago









      user5428

      5151733




      5151733






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          3
          down vote



          accepted










          CDC and Platform Events are really different use cases.



          Platform Events are a generalized event-driven, publish/subscribe mechanism. You can publish Platform Events to represent record changes (in Apex triggers that you implement), but that's not all it can do, and that use case isn't provided as out-of-the-box Platform Events functionality.



          You can also, for example, use Platform Events to implement logging on incoming requests to your Apex REST services, or any one of a hundred other use cases.



          CDC is something a little different, although it has in common with Platform Events that it's event-driven. It's closer, I think, to being a generalized and deepened replacement for certain use cases of the Streaming API. It's more or less narrowly targeted at specific data replication and synchronization use cases:




          Receive near-real-time changes of Salesforce records, and synchronize corresponding records in an external data store.




          CDC, Platform Events, and the Streaming API all use the same CometD subscription protocol, so they do have a technical underpinning in common.






          share|improve this answer




























            up vote
            2
            down vote













            Change Data Capture : Receive near-real-time changes of Salesforce records, and synchronize corresponding records in an external data store. Change Data Capture publishes data change events, which represent changes to Salesforce records. Changes include creation of a new record, updates to an existing record, deletion of a record, and undeletion of a record.



            Platform Events : Platform events enable you to deliver secure, scalable, and customizable event notifications within Salesforce or from external sources. Platform event fields are defined in Salesforce and determine the data that you send and receive. Apps can publish and subscribe to platform events on the Lightning Platform using Apex or in external systems using CometD.



            When to use Change Data Capture




            • Receive notifications of Salesforce record changes, including create, update, delete,

            • and undelete operations.

            • Capture field changes for all records.

            • Get broad access to all data regardless of sharing rules.

            • Get information about the change in the event header, such as the origin of the change, which allows ignoring changes that your client generates.

            • Perform data updates using transaction boundaries.

            • Use a versioned event schema.

            • Subscribe to mass changes in a scalable way.

            • Get access to retained events for up to three days.



            CDC are specifically used in kind of a replication streaming event
            where as platform events are just an Enterprise level event bus using
            comdetD.




            Below is a comparision between Events:
            Comparision Between Events






            share|improve this answer























              Your Answer








              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "459"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              convertImagesToLinks: false,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: null,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f242216%2fchange-data-capture%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              3
              down vote



              accepted










              CDC and Platform Events are really different use cases.



              Platform Events are a generalized event-driven, publish/subscribe mechanism. You can publish Platform Events to represent record changes (in Apex triggers that you implement), but that's not all it can do, and that use case isn't provided as out-of-the-box Platform Events functionality.



              You can also, for example, use Platform Events to implement logging on incoming requests to your Apex REST services, or any one of a hundred other use cases.



              CDC is something a little different, although it has in common with Platform Events that it's event-driven. It's closer, I think, to being a generalized and deepened replacement for certain use cases of the Streaming API. It's more or less narrowly targeted at specific data replication and synchronization use cases:




              Receive near-real-time changes of Salesforce records, and synchronize corresponding records in an external data store.




              CDC, Platform Events, and the Streaming API all use the same CometD subscription protocol, so they do have a technical underpinning in common.






              share|improve this answer

























                up vote
                3
                down vote



                accepted










                CDC and Platform Events are really different use cases.



                Platform Events are a generalized event-driven, publish/subscribe mechanism. You can publish Platform Events to represent record changes (in Apex triggers that you implement), but that's not all it can do, and that use case isn't provided as out-of-the-box Platform Events functionality.



                You can also, for example, use Platform Events to implement logging on incoming requests to your Apex REST services, or any one of a hundred other use cases.



                CDC is something a little different, although it has in common with Platform Events that it's event-driven. It's closer, I think, to being a generalized and deepened replacement for certain use cases of the Streaming API. It's more or less narrowly targeted at specific data replication and synchronization use cases:




                Receive near-real-time changes of Salesforce records, and synchronize corresponding records in an external data store.




                CDC, Platform Events, and the Streaming API all use the same CometD subscription protocol, so they do have a technical underpinning in common.






                share|improve this answer























                  up vote
                  3
                  down vote



                  accepted







                  up vote
                  3
                  down vote



                  accepted






                  CDC and Platform Events are really different use cases.



                  Platform Events are a generalized event-driven, publish/subscribe mechanism. You can publish Platform Events to represent record changes (in Apex triggers that you implement), but that's not all it can do, and that use case isn't provided as out-of-the-box Platform Events functionality.



                  You can also, for example, use Platform Events to implement logging on incoming requests to your Apex REST services, or any one of a hundred other use cases.



                  CDC is something a little different, although it has in common with Platform Events that it's event-driven. It's closer, I think, to being a generalized and deepened replacement for certain use cases of the Streaming API. It's more or less narrowly targeted at specific data replication and synchronization use cases:




                  Receive near-real-time changes of Salesforce records, and synchronize corresponding records in an external data store.




                  CDC, Platform Events, and the Streaming API all use the same CometD subscription protocol, so they do have a technical underpinning in common.






                  share|improve this answer












                  CDC and Platform Events are really different use cases.



                  Platform Events are a generalized event-driven, publish/subscribe mechanism. You can publish Platform Events to represent record changes (in Apex triggers that you implement), but that's not all it can do, and that use case isn't provided as out-of-the-box Platform Events functionality.



                  You can also, for example, use Platform Events to implement logging on incoming requests to your Apex REST services, or any one of a hundred other use cases.



                  CDC is something a little different, although it has in common with Platform Events that it's event-driven. It's closer, I think, to being a generalized and deepened replacement for certain use cases of the Streaming API. It's more or less narrowly targeted at specific data replication and synchronization use cases:




                  Receive near-real-time changes of Salesforce records, and synchronize corresponding records in an external data store.




                  CDC, Platform Events, and the Streaming API all use the same CometD subscription protocol, so they do have a technical underpinning in common.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 4 hours ago









                  David Reed

                  28k61746




                  28k61746
























                      up vote
                      2
                      down vote













                      Change Data Capture : Receive near-real-time changes of Salesforce records, and synchronize corresponding records in an external data store. Change Data Capture publishes data change events, which represent changes to Salesforce records. Changes include creation of a new record, updates to an existing record, deletion of a record, and undeletion of a record.



                      Platform Events : Platform events enable you to deliver secure, scalable, and customizable event notifications within Salesforce or from external sources. Platform event fields are defined in Salesforce and determine the data that you send and receive. Apps can publish and subscribe to platform events on the Lightning Platform using Apex or in external systems using CometD.



                      When to use Change Data Capture




                      • Receive notifications of Salesforce record changes, including create, update, delete,

                      • and undelete operations.

                      • Capture field changes for all records.

                      • Get broad access to all data regardless of sharing rules.

                      • Get information about the change in the event header, such as the origin of the change, which allows ignoring changes that your client generates.

                      • Perform data updates using transaction boundaries.

                      • Use a versioned event schema.

                      • Subscribe to mass changes in a scalable way.

                      • Get access to retained events for up to three days.



                      CDC are specifically used in kind of a replication streaming event
                      where as platform events are just an Enterprise level event bus using
                      comdetD.




                      Below is a comparision between Events:
                      Comparision Between Events






                      share|improve this answer



























                        up vote
                        2
                        down vote













                        Change Data Capture : Receive near-real-time changes of Salesforce records, and synchronize corresponding records in an external data store. Change Data Capture publishes data change events, which represent changes to Salesforce records. Changes include creation of a new record, updates to an existing record, deletion of a record, and undeletion of a record.



                        Platform Events : Platform events enable you to deliver secure, scalable, and customizable event notifications within Salesforce or from external sources. Platform event fields are defined in Salesforce and determine the data that you send and receive. Apps can publish and subscribe to platform events on the Lightning Platform using Apex or in external systems using CometD.



                        When to use Change Data Capture




                        • Receive notifications of Salesforce record changes, including create, update, delete,

                        • and undelete operations.

                        • Capture field changes for all records.

                        • Get broad access to all data regardless of sharing rules.

                        • Get information about the change in the event header, such as the origin of the change, which allows ignoring changes that your client generates.

                        • Perform data updates using transaction boundaries.

                        • Use a versioned event schema.

                        • Subscribe to mass changes in a scalable way.

                        • Get access to retained events for up to three days.



                        CDC are specifically used in kind of a replication streaming event
                        where as platform events are just an Enterprise level event bus using
                        comdetD.




                        Below is a comparision between Events:
                        Comparision Between Events






                        share|improve this answer

























                          up vote
                          2
                          down vote










                          up vote
                          2
                          down vote









                          Change Data Capture : Receive near-real-time changes of Salesforce records, and synchronize corresponding records in an external data store. Change Data Capture publishes data change events, which represent changes to Salesforce records. Changes include creation of a new record, updates to an existing record, deletion of a record, and undeletion of a record.



                          Platform Events : Platform events enable you to deliver secure, scalable, and customizable event notifications within Salesforce or from external sources. Platform event fields are defined in Salesforce and determine the data that you send and receive. Apps can publish and subscribe to platform events on the Lightning Platform using Apex or in external systems using CometD.



                          When to use Change Data Capture




                          • Receive notifications of Salesforce record changes, including create, update, delete,

                          • and undelete operations.

                          • Capture field changes for all records.

                          • Get broad access to all data regardless of sharing rules.

                          • Get information about the change in the event header, such as the origin of the change, which allows ignoring changes that your client generates.

                          • Perform data updates using transaction boundaries.

                          • Use a versioned event schema.

                          • Subscribe to mass changes in a scalable way.

                          • Get access to retained events for up to three days.



                          CDC are specifically used in kind of a replication streaming event
                          where as platform events are just an Enterprise level event bus using
                          comdetD.




                          Below is a comparision between Events:
                          Comparision Between Events






                          share|improve this answer














                          Change Data Capture : Receive near-real-time changes of Salesforce records, and synchronize corresponding records in an external data store. Change Data Capture publishes data change events, which represent changes to Salesforce records. Changes include creation of a new record, updates to an existing record, deletion of a record, and undeletion of a record.



                          Platform Events : Platform events enable you to deliver secure, scalable, and customizable event notifications within Salesforce or from external sources. Platform event fields are defined in Salesforce and determine the data that you send and receive. Apps can publish and subscribe to platform events on the Lightning Platform using Apex or in external systems using CometD.



                          When to use Change Data Capture




                          • Receive notifications of Salesforce record changes, including create, update, delete,

                          • and undelete operations.

                          • Capture field changes for all records.

                          • Get broad access to all data regardless of sharing rules.

                          • Get information about the change in the event header, such as the origin of the change, which allows ignoring changes that your client generates.

                          • Perform data updates using transaction boundaries.

                          • Use a versioned event schema.

                          • Subscribe to mass changes in a scalable way.

                          • Get access to retained events for up to three days.



                          CDC are specifically used in kind of a replication streaming event
                          where as platform events are just an Enterprise level event bus using
                          comdetD.




                          Below is a comparision between Events:
                          Comparision Between Events







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited 4 hours ago

























                          answered 4 hours ago









                          codeyinthecloud

                          2,621321




                          2,621321






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Salesforce Stack Exchange!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f242216%2fchange-data-capture%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              What visual should I use to simply compare current year value vs last year in Power BI desktop

                              Alexandru Averescu

                              Trompette piccolo