Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Status

Current state: Under Discussion Released in 3.6.0

Discussion thread: here

Voting Discussion thread: here

JIRA: here

Please keep the discussion on the mailing list rather than commenting on the wiki (wiki discussions get unwieldy fast).

...

This change will require connector developers to add service declarations to their plugins. This can be done in one of two ways:

  • Add one or more ServiceLoader manifest files.
  • Add a module-info.java  containing one or more provides … with  directives.
    • See Section 7.7.4 of the Java Language Specification 9 for details
    • Connectors using module-info files without also providing a ServiceLoader manifest will not be accessible in Java 8 environments.

Both of these are well-established Java interfaces for which public documentation should be readily available. Once a service declaration is added, plugins can be released and distributed normally.

This includes plugins built and published by the Kafka project itself, which will be migrated at have ServiceLoader manifest files added as part of implementing this KIP.

...

The Connect Worker will have a new configuration: plugin.path.discovery  which can take one of multiple values with the following meanings:

  • ONLY_SCAN  : Corresponding to the legacy behavior, in which every class on the plugin.path is scanned on startup for plugins. In addition, a warning will be printed to suggest reconfiguring the worker to HYBRID_WARN. This is intended to silence warnings, and to disable the new code paths if a bug is present.
  • HYBRID_WARN : In addition to the legacy scanning behavior, use the new mechanism and print a warning if a class is present via scanning but not via ServiceLoader. If there are no discrepancies, a warning will be printed to suggest reconfiguring the worker with SERVICE_LOAD . This is intended to inform operators that they are depending on out-of-date plugins that need to be updated.
  • HYBRID_FAIL : Same as HYBRID_WARN , except a discrepancy between the old and new mechanisms will cause a worker to fail to start up, instead of appearing at runtime as a missing plugin. This is intended for use in downstream unit and packaging tests to assert that all plugins have been updated.
  • SERVICE_LOAD : Only use the new ServiceLoader mechanism to load plugins. This is intended for production usage after all plugins have been updated, and will be the only mode with performance benefits.

...

The default value for this configuration when used in the EmbeddedConnectCluster  test utility will be HYBRID_FAIL .

...

Plugin Path Management Script

In addition, a new script bin/connect-scan-plugin-path.sh  will be developed to execute the manage the worker plugin path. For the purposes of this migration, this script will execute plugin path scanning and generate shim JARs which include ServiceLoader  manifests. This can be run ahead-of-time during CI, and will allow a connect instance to use non-updated plugins with SERVICE_LOAD .

The script would take the following arguments, with the following meanings:

  • A positional argument sub-command  which takes exactly one of the following values:
    • sync-
    plugin-location <single-plugin-jar-zip-dir>
    • manifests 
      • For each concrete plugin implementation which is missing a ServiceLoader manifest, add a manifest file and/or entry.
        • For
     
        • a single jar  or zip  file, for which a new resource file may be added to the existing archive.
        • For a directory with an arbitrary hierarchy of jar  or zip  files, for which additional directories and/or files may be added to the existing directory.
        • For a directory with an arbitrary hierarchy of class  files, for which additional directories and/or files may be added to the existing directory.
      • The path and all subdirectories and files specified in other options must be writable.
    • list
      • Print a human-readable summary of a plugin path and the plugins contained within.
      • For each plugin, include:
        • The fully qualified class name
        • Plugin aliases (if available)
        • The version (if available)
        • Whether the class is discoverable via scanning
        • Whether the class is discoverable via ServiceLoader
      • The path and all subdirectories and files specified in other options must be readable.
  • --plugin-location <single-plugin-jar-zip-dir> 
    • The value of this argument will be a single plugin, which can be any of the following:
      • a single jar  or zip  file
      • a directory with an arbitrary hierarchy of jar  or zip  files
      • a directory with an arbitrary hierarchy of class  files
    • This can be specified zero or more times.
  • The path and all subdirectories and files specified must be writable.
  • --plugin-path <list-of-paths> 
    • The value of this argument will follow the same semantics of the worker properties plugin.path  configuration.
    • This will be equivalent to specifying multiple --plugin-location  arguments, one for each top-level archive, and for each immediate sub-folder of each top-level directory.
    • This can be specified zero or more times.
  • The paths and all subdirectories and files specified must be writable.
  • --worker-config <worker-properties-file> 
    • From this worker properties file, the plugin.path contents on-disk will be mutated.
    • This will be equivalent to extracting the plugin.path  configuration from the worker properties and specifying --plugin-path .
    • This can be specified zero or more times.
  • The paths and all subdirectories and files specified in plugin.path configuration must be writable
  • --dry-run 
    • Can only be specified in combination with sync-manifests.
    • If specified, execute all of the steps needed for the normal script execution except the final writing the changes to disk.
    • If not specified, the prescribed changes to the plugin path are written to disk.
    • If a condition which would prevent the script from completing normally is detected, the exit code of the script will be non-zero, and details will be printed via stderr in a human-readable format.
  • --keep-not-found 
    • Can only be specified in combination with sync-manifests.
    • If specified, ServiceLoader manifests for classes which cannot be found will not be removed
    • If not specified, ServiceLoader manifests for classes which cannot be found will be removed
    • If not specified, any manifest files or JARs which become empty due to class name removal will be removed

The list command is meant for inspecting the plugin.path before and after a migration takes place, and should expose the information that the sync-manifests command is using to perform the migration.

This script would migrate the specified paths in-place, and require the input files to be writable. The arguments which do not require a worker config are intended to provide smaller subunits of the migration for callers which want to divide the migration for error handling, modular CI builds, or reusable tooling.

If the script fails at any point with sync-manifests but without --dry-run  specified, the plugin path may be left in an indeterminate state and should not be relied upon for correctness. After a script failure, it is recommended to clear the disk contents and restore it to a known-good state. If used in CI, a script failure can be made to cause the build to fail and be retried from the beginning.

If the script succeeds, subsequent runs on the same script directory should be idempotent. Subsequent runs on a partially changed directory should be idempotent for the unchanged parts, and should re-migrate the changed parts.

If a plugin class is removed from the path, the corresponding shim manifest should also be removeddeclares an implementation via a module-info.java file, a duplicate shim manifest will not be generated. If a plugin declares an implementation via a module-info.java which is not loadable, the module-info.java will not be modified.

This script will only list and migrate plugins which are on the plugin.path of a Connect worker, and are loaded in isolation. This script will not list or migrate plugins which are included on the classpath, and will assume that classpath plugins have manifests added through some other method.

Compatibility, Deprecation, and Migration Plan

...

Once a connect operator updates their environment to a version with this feature, they will receive log warnings. If they notice these warnings, they will be able to upgrade plugins to versions which alleviate the warning, or contact their vendors/plugin developers to encourage them to update their plugins.  They will be able to see the progress of this update in the startup logs, and via bin/connect-plugin-path.sh list.

While waiting for plugins to update, they can use the bin/connect-scan-plugin-path.sh   script sync-manifests to migrate plugins at the point of use in their CI, and use SERVICE_LOAD  mode in their environment configuration.

After a connect operator has updated all of the plugins, they can remove bin/connect-scan-plugin-path.sh sync-manifests  from their CI, and change the CI test configuration to HYBRID_FAIL  to catch any regressions.

...

The new interfaces will ideally be released in a 3.x version of Kafka. All modes other than SERVICE_LOAD  should be marked deprecated. The shim script should be marked deprecated. The configuration default could be changed to SERVICE_LOAD  as early as 4.0None of the existing or new interfaces will be deprecated immediately.

In a follow-up KIP as early as 4.0, we should propose changing the configuration default to SERVICE_LOAD, given the ease of applying the workarounds. That KIP should also decide on a deprecation schedule for the plugin path scanning behavior, and deprecate the necessary configuration values.

In the futurea second follow-up KIP as early as 5.0, we should schedule the removal of the scanning behavior as early as Kafka 5.0. This would mean that connector plugins built for Kafka <3.x will not work for Kafka 5.0, or whatever version the removal takes place. Plugins with manifests will work for versions of Kafka <4.0 without issue.

The bin/connect-scan-plugin-path.sh script may be kept for longer than the runtime scanning behavior to aid migration, without imposing a significant burden on future Connect feature development.

Test Plan

Existing system tests will be configured to start workers with SERVICE_LOAD immediately for performance reasons, and as this is now the recommended running mode.

...

New non-migrated, systems-test-only plugins will be added to the system test build to verify that a non-migrated plugin will have the intended effect in each mode. These plugins will be used to test the bin/connect-scan-plugin-path.sh  migration script script. As part of this, existing system-test-only plugins will be refactored out of the publicly distributed build, and special cases for them removed from production code-paths.

...

  • Using OSGi. In addition to the reasons noted in KIP-146, OSGi represents a much more invasive change to the Connect framework than this KIP is targeting, and with much less clear benefit. There are also existing plugins using the ServiceLoader paradigm which would require extra migrations.
  • Have the migration script copy-on-write and not mutate the on-disk worker config or plugin.path. This adds a lot of complexity to the script, and complexity in specifying the output locations. This is easily avoided by the user copying their plugins to a writable scratch space before running the migration script.
  • Discarding ClassLoaders to enable garbage collection of scanned classes after scanning is complete. This solves the ongoing memory overhead of the scanned classes, but does not remove the initial CPU overhead of the scanning operation itself.
  • Adding module-info.java files for Apache plugins, in addition to, or in lieu of, ServiceLoader manifests. Because Kafka supports Java 8, we cannot rely on Java 9+ features. And adding modules for Kafka is outside the scope of this improvement, and deserves attention in a separate KIP.