-
Notifications
You must be signed in to change notification settings - Fork 79
Coding Standard
TODO ideas: https://opensource.zalando.com/restful-api-guidelines/#100
TODO: maybe https://google.github.io/styleguide/javaguide.html
The coding standard is the Python regular PEP 8. It's enforced by pre-commit hooks like black
Python uses _ symbol to determine the access control for a specific data member or a member function of a class
- Public methods have not
_prefix - Protected methods or attributes have single underscore '_' as prefix (for example
_execute_protected() - Private methods or attributes have double underscore '__' as prefix (for example
__execute_private())
Any backwards compatibility guarantees apply only to public interfaces. Public interfaces are modules and packages defined or imported in vdk.api.*. unless the documentation explicitly declares them to be provisional or internal interfaces. Anything else is considered internal. All public interfaces (classes or methods) must have documentation.
SDK - Develop Data Jobs
SDK Key Concepts
Control Service - Deploy Data Jobs
Control Service Key Concepts
- Scheduling a Data Job for automatic execution
- Deployment
- Execution
- Production
- Properties and Secrets
Operations UI
Community
Contacts