freemandealer commented on issue #18092: URL: https://github.com/apache/doris/issues/18092#issuecomment-1484405531
@AdarshRawat1 Sure. Before we actually start anything, let's do some preparations: First of all, you need to set up a dev&test environment. Check the links below: [compile](https://doris.apache.org/docs/dev/install/source-install/compilation-with-ldb-toolchain) [deploy](https://doris.apache.org/docs/dev/install/install-deploy) For what we are enhancing is the Load process, we first need to know how to load as a user. Check the user manual: [streamload manual](https://doris.apache.org/docs/dev/data-operate/import/import-way/stream-load-manual/) Finally, familiarize yourself with the code base concerning Load (especially the Sink operation): ``` vtablet_sink.{h,cpp} internal_service.{h,cpp} load_channel_mgr.{h,cpp} load_channel.{h,cpp} tablets_channal.{h,cpp} ... ``` After finishing these preparations, we can further discuss the proposal of how to implement the lazy-open mechanism for Sink. BTW, Do you have Skype or Lark or any other IM that can share screen? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
