Настройки Kafka
Bases: BaseModel
Data.Rentgen consumer Kafka-specific settings.
These options are passed directly to
AIOKafkaConsumer <https://aiokafka.readthedocs.io/en/stable/api.html#aiokafka.AIOKafkaConsumer>_.
Examples
.. code-block:: bash
DATA_RENTGEN__KAFKA__BOOTSTRAP_SERVERS="localhost:9092"
DATA_RENTGEN__KAFKA__SECURITY__TYPE=SCRAM-SHA-256
DATA_RENTGEN__KAFKA__REQUEST_TIMEOUT_MS=5000
DATA_RENTGEN__KAFKA__CONNECTIONS_MAX_IDLE_MS=540000
Source code in data_rentgen/consumer/settings/kafka.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 | |
Bases: KafkaSecurityBaseSettings
Kafka SCRAM-SHA-256 auth settings.
Examples
.. code-block:: bash
DATA_RENTGEN__KAFKA__SECURITY__TYPE=SCRAM-SHA-256
DATA_RENTGEN__KAFKA__SECURITY__USER=dummy
DATA_RENTGEN__KAFKA__SECURITY__PASSWORD=changeme
Source code in data_rentgen/consumer/settings/security/scram.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | |
Bases: KafkaSecurityBaseSettings
Kafka SCRAM-SHA-512 auth settings.
Examples
.. code-block:: bash
DATA_RENTGEN__KAFKA__SECURITY__TYPE=SCRAM-SHA-512
DATA_RENTGEN__KAFKA__SECURITY__USER=dummy
DATA_RENTGEN__KAFKA__SECURITY__PASSWORD=changeme
Source code in data_rentgen/consumer/settings/security/scram.py
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 | |
Bases: KafkaSecurityBaseSettings
Kafka PLAINTEXT auth settings.
Examples
.. code-block:: bash
DATA_RENTGEN__KAFKA__SECURITY__TYPE=PLAINTEXT
DATA_RENTGEN__KAFKA__SECURITY__USER=dummy
DATA_RENTGEN__KAFKA__SECURITY__PASSWORD=changeme
Source code in data_rentgen/consumer/settings/security/plain.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | |
Bases: KafkaSecurityBaseSettings
Kafka GSSAPI auth settings.
This auth method requires installing data-rentgen[gssapi] extra,
and relies on presence of kinit and kdestroy binaries in your operating system.
Examples
Using principal + password for calling kinit:
.. code-block:: bash
DATA_RENTGEN__KAFKA__SECURITY__TYPE=GSSAPI
DATA_RENTGEN__KAFKA__SECURITY__PRINCIPAL=dummy
DATA_RENTGEN__KAFKA__SECURITY__PASSWORD=changeme
DATA_RENTGEN__KAFKA__SECURITY__REALM=MY.REALM.COM
Using principal + keytab for calling kinit:
.. code-block:: bash
DATA_RENTGEN__KAFKA__SECURITY__TYPE=GSSAPI
DATA_RENTGEN__KAFKA__SECURITY__PRINCIPAL=dummy
DATA_RENTGEN__KAFKA__SECURITY__KEYTAB=/etc/security/dummy.keytab
DATA_RENTGEN__KAFKA__SECURITY__REALM=MY.REALM.COM
Source code in data_rentgen/consumer/settings/security/gssapi.py
21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 | |
Bases: KafkaSecurityBaseSettings
Kafka anonymous auth settings.
Examples
.. code-block:: bash
DATA_RENTGEN__KAFKA__SECURITY__TYPE=None
Source code in data_rentgen/consumer/settings/security/anonymous.py
8 9 10 11 12 13 14 15 16 17 18 19 | |