### _Why are the changes needed?_ - to fix typo in dependency reference in doc of custom event handler  ### _How was this patch tested?_ - [ ] Add some test cases that check the changes thoroughly including negative and positive cases if possible - [x] Add screenshots for manual tests if appropriate - [ ] [Run test](https://kyuubi.readthedocs.io/en/master/develop_tools/testing.html#running-tests) locally before make a pull request Closes #4734 from bowenliang123/fix-event-doc. Closes #4734 470c6d1a8 [Bowen Liang] Update docs/extensions/server/events.rst afbe163b3 [liangbowen] use the `release` directive 1a5542f54 [liangbowen] fix doc of custom event handler Lead-authored-by: liangbowen <liangbowen@gf.com.cn> Co-authored-by: Bowen Liang <liangbowen@gf.com.cn> Signed-off-by: liangbowen <liangbowen@gf.com.cn>
82 lines
3.2 KiB
ReStructuredText
82 lines
3.2 KiB
ReStructuredText
.. Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
(the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
|
|
.. http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
.. Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
|
|
Configure Kyuubi to use Custom EventHandler
|
|
=======================================
|
|
|
|
Kyuubi provide event processing mechanism, it can help us to record some events. Beside the builtin ``JsonLoggingEventHandler``,
|
|
Kyuubi supports custom event handler. It is usually used to write Kyuubi events to some external systems.
|
|
For example, Kafka, ElasticSearch, etc. The ``org.apache.kyuubi.events.handler.CustomEventHandlerProvider`` has a zero-arg constructor,
|
|
it can help us to create a custom EventHandler.
|
|
|
|
.. code-block:: scala
|
|
|
|
package org.apache.kyuubi.events.handler
|
|
|
|
import org.apache.kyuubi.config.KyuubiConf
|
|
import org.apache.kyuubi.events.KyuubiEvent
|
|
|
|
/**
|
|
* Custom EventHandler provider. We can implement it to provide a custom EventHandler.
|
|
* The implementation will be loaded by ``Service Provider Interface``.
|
|
*/
|
|
trait CustomEventHandlerProvider {
|
|
|
|
/**
|
|
* The create method is called to create a custom event handler
|
|
* when this implementation is loaded.
|
|
*
|
|
* @param kyuubiConf The conf can be used to read some configs.
|
|
* @return A custom handler to handle KyuubiEvent.
|
|
*/
|
|
def create(kyuubiConf: KyuubiConf): EventHandler[KyuubiEvent]
|
|
}
|
|
|
|
Build A Custom EventHandler
|
|
----------------------------
|
|
|
|
To create custom EventHandlerProvider class derived from the above interface, we need to:
|
|
|
|
- Referencing the library
|
|
|
|
.. parsed-literal::
|
|
|
|
<dependency>
|
|
<groupId>org.apache.kyuubi</groupId>
|
|
<artifactId>kyuubi-events_2.12</artifactId>
|
|
<version>\ |release|\</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
- Implement ``org.apache.kyuubi.events.handler.CustomEventHandlerProvider``
|
|
- Adding a file named ``org.apache.kyuubi.events.handler.CustomEventHandlerProvider`` in the src/main/resources/META-INF/services folder of project, its content is the custom class name.
|
|
|
|
Enable Custom EventHandler
|
|
----------------------------
|
|
|
|
To enable the custom EventHandler, we need to
|
|
|
|
- Put the jar package to ``$KYUUBI_HOME/jars`` directory to make it visible for
|
|
the classpath of the kyuubi server.
|
|
- Configure the following properties to ``$KYUUBI_HOME/conf/kyuubi-defaults.conf``
|
|
on each node where kyuubi server is installed. If you need use other event handler, it can be appended after the ``CUSTOM``.
|
|
|
|
.. code-block:: property
|
|
:margin:
|
|
|
|
kyuubi.backend.server.event.loggers=CUSTOM
|
|
|
|
- Restart all the kyuubi server instances.
|